You can download aircompressor-0.3.jar in this page.
Apache License 2.0
aircompressor-0.3.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/io.airlift/aircompressor/pom.properties META-INF/maven/io.airlift/aircompressor/pom.xml io.airlift.compress.Compressor.class io.airlift.compress.Decompressor.class io.airlift.compress.MalformedInputException.class io.airlift.compress.lz4.HadoopLz4InputStream.class io.airlift.compress.lz4.HadoopLz4OutputStream.class io.airlift.compress.lz4.Lz4Codec.class io.airlift.compress.lz4.Lz4Compressor.class io.airlift.compress.lz4.Lz4Constants.class io.airlift.compress.lz4.Lz4Decompressor.class io.airlift.compress.lz4.Lz4RawCompressor.class io.airlift.compress.lz4.Lz4RawDecompressor.class io.airlift.compress.lz4.UnsafeUtil.class io.airlift.compress.lzo.HadoopLzoInputStream.class io.airlift.compress.lzo.HadoopLzoOutputStream.class io.airlift.compress.lzo.LzoCodec.class io.airlift.compress.lzo.LzoCompressor.class io.airlift.compress.lzo.LzoConstants.class io.airlift.compress.lzo.LzoDecompressor.class io.airlift.compress.lzo.LzoRawCompressor.class io.airlift.compress.lzo.LzoRawDecompressor.class io.airlift.compress.lzo.UnsafeUtil.class io.airlift.compress.snappy.Crc32C.class io.airlift.compress.snappy.HadoopSnappyInputStream.class io.airlift.compress.snappy.HadoopSnappyOutputStream.class io.airlift.compress.snappy.SnappyCodec.class io.airlift.compress.snappy.SnappyCompressor.class io.airlift.compress.snappy.SnappyConstants.class io.airlift.compress.snappy.SnappyDecompressor.class io.airlift.compress.snappy.SnappyFramed.class io.airlift.compress.snappy.SnappyFramedInputStream.class io.airlift.compress.snappy.SnappyFramedOutputStream.class io.airlift.compress.snappy.SnappyInternalUtils.class io.airlift.compress.snappy.SnappyRawCompressor.class io.airlift.compress.snappy.SnappyRawDecompressor.class io.airlift.compress.snappy.UnsafeUtil.class
aircompressor-0.3.pom file content.
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.airlift</groupId> <artifactId>aircompressor</artifactId> <version>0.3</version> <packaging>jar</packaging> <name>aircompressor</name> <description>Compression algorithms</description> <url>http://github.com/airlift/aircompressor</url> <parent> <groupId>io.airlift</groupId> <artifactId>airbase</artifactId> <version>49</version> </parent> <inceptionYear>2011</inceptionYear> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/airlift/aircompressor.git</connection> <developerConnection>scm:git:git@github.com:airlift/aircompressor.git</developerConnection> <url>http://github.com/airlift/aircompressor/tree/master</url> <tag>0.3</tag> </scm> <properties> <project.build.targetJdk>1.7</project.build.targetJdk> <air.check.skip-extended>true</air.check.skip-extended> <air.check.skip-license>false</air.check.skip-license> <air.check.fail-checkstyle>true</air.check.fail-checkstyle> <air.check.skip-checkstyle>false</air.check.skip-checkstyle> <air.test.parallel>methods</air.test.parallel> <air.test.thread-count>4</air.test.thread-count> <air.test.jvmsize>2G</air.test.jvmsize> </properties> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.xerial.snappy</groupId> <artifactId>snappy-java</artifactId> <version>1.1.1.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.openjdk.jmh</groupId> <artifactId>jmh-generator-annprocess</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>net.jpountz.lz4</groupId> <artifactId>lz4</artifactId> <version>1.3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.anarres.lzo</groupId> <artifactId>lzo-hadoop</artifactId> <version>1.0.4</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-core</artifactId> </exclusion> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.facebook.presto.hadoop</groupId> <artifactId>hadoop-apache2</artifactId> <version>0.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.iq80.snappy</groupId> <artifactId>snappy</artifactId> <version>0.4</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.15</version> <executions> <execution> <phase>validate</phase> <goals> <goal>check</goal> </goals> <configuration> <skip>${air.check.skip-checkstyle}</skip> <failOnViolation>${air.check.fail-checkstyle}</failOnViolation> <consoleOutput>true</consoleOutput> <includeTestSourceDirectory>true</includeTestSourceDirectory> <configLocation>${air.main.basedir}/src/checkstyle/checks.xml</configLocation> <excludes>**/com/facebook/presto/operator/PagesIndexOrdering.java</excludes> </configuration> </execution> </executions> <dependencies> <!-- The version of checkstyle the plugin depends on doesn't support Java 8, so override it manually until a new version of the plugin is released. This is copied verbatim from the dependency declaration in the checkstyle plugin --> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>6.6</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>
<dependency> <groupId>io.airlift</groupId> <artifactId>aircompressor</artifactId> <version>0.3</version> </dependency>
If you think the following aircompressor-0.3.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download aircompressor-0.3.jar file