LZ4 and xxHash.
Java ports and bindings of the LZ4 compression algorithm and the xxHash hashing algorithm.
Here is the list of declaration for lz4. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.jpountz.lz4</groupId> <artifactId>lz4</artifactId> <version>1.2.0</version> </dependency>
If you think this Maven repository POM file listing for lz4 is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The following table lists the most popular artifacts which are depending on lz4-1.2.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Document Database | cassandra-driver-core 2.0.1 A driver for Apache Cassandra 1.2+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol. | 6 |
Document Database | cassandra-driver-core 2.0.6 A driver for Apache Cassandra 1.2+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol. | 7 |
Document Database | cassandra-all 2.0.4 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 9 |
Document Database | cassandra-driver-core 2.1.2 A driver for Apache Cassandra 1.2+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol. | 13 |
Document Database | cassandra-driver-core 2.1.0 A driver for Apache Cassandra 1.2+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol. | 19 |
Document Database | cassandra-driver-core 2.1.1 A driver for Apache Cassandra 1.2+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol. | 16 |
Document Database | cassandra-driver-core 2.0.2 A driver for Apache Cassandra 1.2+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol. | 6 |
Document Database | cassandra-driver-core 2.1.3 A driver for Apache Cassandra 1.2+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol. | 6 |
Document Database | cassandra-driver-core 2.0.4 A driver for Apache Cassandra 1.2+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's binary protocol. | 21 |
The following packages are defined in the lz4-1.2.0.jar
net.jpountz.lz4 net.jpountz.util net.jpountz.xxhash
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <!-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <name>LZ4 and xxHash</name> <description>Java ports and bindings of the LZ4 compression algorithm and the xxHash hashing algorithm</description> <url>https://github.com/jpountz/lz4-java</url> <modelVersion>4.0.0</modelVersion> <groupId>net.jpountz.lz4</groupId> <artifactId>lz4</artifactId> <packaging>jar</packaging> <version>1.2.0</version> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>git://github.com/jpountz/lz4-java.git</url> <connection>https://github.com/jpountz/lz4-java</connection> </scm> <dependencies> <dependency> <groupId>com.carrotsearch.randomizedtesting</groupId> <artifactId>junit4-ant</artifactId> <version>2.0.9</version> <scope>test</scope> </dependency> </dependencies> </project>