summaryrefslogtreecommitdiffstats
path: root/docker-api/pom.xml
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@yahoo-inc.com>2016-08-31 13:14:13 +0200
committerHåkon Hallingstad <hakon@yahoo-inc.com>2016-09-01 12:48:00 +0200
commitc8d9fb3e150cfdcffd14d96df0040c0c6a616736 (patch)
tree35ffcc06752ba7d47997f368b4e17214853efd9f /docker-api/pom.xml
parentda7a0474414dbb50733180ac0ac52f4b1f9811b5 (diff)
Need to figure out what to do with the tests using DockerOperations
Diffstat (limited to 'docker-api/pom.xml')
-rw-r--r--docker-api/pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/docker-api/pom.xml b/docker-api/pom.xml
index c8aa213d375..6c06481564d 100644
--- a/docker-api/pom.xml
+++ b/docker-api/pom.xml
@@ -24,6 +24,12 @@
<scope>provided</scope>
</dependency>
<dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>application-model</artifactId>
+ <version>${project.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java</artifactId>
<version>3.0.3</version>
@@ -43,6 +49,28 @@
<artifactId>lz4</artifactId>
<scope>compile</scope>
</dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>application</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-core</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-junit</artifactId>
+ <version>2.0.0.0</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
@@ -56,6 +84,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
+ <source>1.8</source>
+ <target>1.8</target>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-Werror</arg>