aboutsummaryrefslogtreecommitdiffstats
path: root/filedistribution/pom.xml
diff options
context:
space:
mode:
authorHarald Musum <musum@oath.com>2018-01-18 14:10:37 +0100
committerHarald Musum <musum@oath.com>2018-01-18 14:10:37 +0100
commit0cc21a63596b2fcfbf48c39c67c07ab5d4e6dfc5 (patch)
tree6c65ea10cd2e7715a1447fa45a3b5f9520e96895 /filedistribution/pom.xml
parentf1318f3fba415f31874269966a1b13d04c451449 (diff)
Add client for file distribution API
Diffstat (limited to 'filedistribution/pom.xml')
-rw-r--r--filedistribution/pom.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/filedistribution/pom.xml b/filedistribution/pom.xml
index d9699b700d0..6bfa4362f65 100644
--- a/filedistribution/pom.xml
+++ b/filedistribution/pom.xml
@@ -58,6 +58,18 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
</dependency>
+ <dependency>
+ <groupId>io.airlift</groupId>
+ <artifactId>airline</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ </dependency>
</dependencies>
<build>
@@ -67,6 +79,34 @@
<artifactId>bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <compilerArgs>
+ <arg>-Xlint:all</arg>
+ <arg>-Xlint:-serial</arg>
+ <arg>-Werror</arg>
+ </compilerArgs>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>