96 lines
3.2 KiB
XML
96 lines
3.2 KiB
XML
<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>
|
|
|
|
<parent>
|
|
<groupId>tc.oc</groupId>
|
|
<artifactId>api-parent</artifactId>
|
|
<relativePath>../pom.xml</relativePath>
|
|
<version>1.12.2-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>api</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>API</name>
|
|
<description>ProjectAres API layer</description>
|
|
|
|
<dependencies>
|
|
<!-- Our stuff -->
|
|
|
|
<dependency>
|
|
<groupId>tc.oc</groupId>
|
|
<artifactId>util-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- Network stuff -->
|
|
|
|
<dependency>
|
|
<groupId>com.google.http-client</groupId>
|
|
<artifactId>google-http-client</artifactId>
|
|
<version>1.18.0-rc</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.http-client</groupId>
|
|
<artifactId>google-http-client-gson</artifactId>
|
|
<version>1.18.0-rc</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.damnhandy</groupId>
|
|
<artifactId>handy-uri-templates</artifactId>
|
|
<version>2.0.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rabbitmq</groupId>
|
|
<artifactId>amqp-client</artifactId>
|
|
<version>3.3.5</version>
|
|
</dependency>
|
|
|
|
<!-- Testing -->
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<targetPath>.</targetPath>
|
|
<filtering>true</filtering>
|
|
<directory>${basedir}/src/main/resources/</directory>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>2.1</version>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>tc.oc:util-core</include>
|
|
|
|
<include>com.google.http-client:google-http-client</include>
|
|
<include>com.google.http-client:google-http-client-gson</include>
|
|
<include>com.damnhandy:handy-uri-templates</include>
|
|
<include>com.rabbitmq:amqp-client</include>
|
|
</includes>
|
|
</artifactSet>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|