aboutsummaryrefslogtreecommitdiffstats
path: root/airlift-zstd/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'airlift-zstd/pom.xml')
-rw-r--r--airlift-zstd/pom.xml47
1 files changed, 47 insertions, 0 deletions
diff --git a/airlift-zstd/pom.xml b/airlift-zstd/pom.xml
new file mode 100644
index 00000000000..2d2f83daed9
--- /dev/null
+++ b/airlift-zstd/pom.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0"?>
+<!-- Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
+<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">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>parent</artifactId>
+ <version>8-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>airlift-zstd</artifactId>
+ <packaging>jar</packaging>
+ <version>8-SNAPSHOT</version>
+ <description>
+ Fork of https://github.com/airlift/aircompressor (zstd only).
+ This module is temporary until we get an official release that includes the
+ ZstdInputStream API (which is already implemented by two different people
+ but neither PR shows any progress).
+ </description>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <compilerArgs>
+ <arg>-Xlint:all</arg>
+ <arg>-Xlint:-serial</arg>
+ <arg>-Xlint:-try</arg>
+ <arg>-Xlint:-processing</arg>
+ </compilerArgs>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-install-plugin</artifactId>
+ <configuration>
+ <updateReleaseInfo>true</updateReleaseInfo>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>