![JAR search and dependency download from the Maven repository](/logo.png)
META-INF.maven.io.airlift.aircompressor.pom.xml Maven / Gradle / Ivy
The newest version!
<?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.21</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>112</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:[email protected]:airlift/aircompressor.git</developerConnection> <url>http://github.com/airlift/aircompressor/tree/master</url> <tag>0.21</tag> </scm> <properties> <air.java.version>1.8</air.java.version> <project.build.targetJdk>1.8</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.7.3</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>org.lz4</groupId> <artifactId>lz4-java</artifactId> <version>1.7.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.luben</groupId> <artifactId>zstd-jni</artifactId> <version>1.4.9-1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.anarres.lzo</groupId> <artifactId>lzo-hadoop</artifactId> <version>1.0.6</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> <exclusion> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.trino.hadoop</groupId> <artifactId>hadoop-apache</artifactId> <version>3.2.0-12</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.iq80.snappy</groupId> <artifactId>snappy</artifactId> <version>0.4</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <target>${project.build.targetJdk}</target> <release combine.self="override" /> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>ci</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <jvm>${test_java_home}/bin/java</jvm> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy