2014-10-20 16:23:20 +02:00
|
|
|
<?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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>7</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>no.finn.unleash</groupId>
|
|
|
|
<artifactId>unleash-client-java</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<version.log4j2>2.0-rc1</version.log4j2>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2014-10-21 15:45:49 +02:00
|
|
|
|
|
|
|
<!--
|
|
|
|
TODO: we should write our own manual json serialize/deserializer
|
|
|
|
to avvoid this dependency
|
|
|
|
-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.2.4</version>
|
|
|
|
</dependency>
|
|
|
|
|
2014-10-20 16:23:20 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
|
<version>${version.log4j2}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>4.3.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2014-10-21 15:45:49 +02:00
|
|
|
<!-- Test dependencies -->
|
2014-10-20 16:23:20 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
2014-10-21 15:45:49 +02:00
|
|
|
<scope>test</scope>
|
2014-10-20 16:23:20 +02:00
|
|
|
</dependency>
|
|
|
|
|
2014-10-21 15:45:49 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
<version>1.9.5</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2014-10-20 16:23:20 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
2014-10-24 12:08:35 +02:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2014-10-20 16:23:20 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|