summaryrefslogtreecommitdiffstats
path: root/container-test
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-06-08 13:40:36 +0200
committerGitHub <noreply@github.com>2022-06-08 13:40:36 +0200
commit14ceb2e5596a30d63a0ae3ea6262f2f41bed93e7 (patch)
treeaca4d958553771a589ec9c423f11725460a5d011 /container-test
parentbba749743bc02b396298579fdf4e076bc8f8c196 (diff)
parentc264cd1c50c81a46eaf11c52a144274bf8cc2f95 (diff)
Merge pull request #22993 from vespa-engine/8
8 MERGEOK
Diffstat (limited to 'container-test')
-rw-r--r--container-test/pom.xml23
1 files changed, 21 insertions, 2 deletions
diff --git a/container-test/pom.xml b/container-test/pom.xml
index 961d827a390..91519da6dd3 100644
--- a/container-test/pom.xml
+++ b/container-test/pom.xml
@@ -10,11 +10,11 @@
<parent>
<groupId>com.yahoo.vespa</groupId>
<artifactId>parent</artifactId>
- <version>7-SNAPSHOT</version>
+ <version>8-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>container-test</artifactId>
- <version>7-SNAPSHOT</version>
+ <version>8-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
@@ -97,5 +97,24 @@
<artifactId>commons-compress</artifactId>
<scope>compile</scope>
</dependency>
+ <dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcpkix-jdk15on</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcprov-jdk15on</artifactId>
+ </dependency>
+ <dependency>
+ <!-- required for container-search code using org.json -->
+ <groupId>org.json</groupId>
+ <artifactId>json</artifactId>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <!-- TODO: this, and probably others, could be removed from here if we make the fat jar the default artifact for jdisc_core -->
+ <groupId>org.lz4</groupId>
+ <artifactId>lz4-java</artifactId>
+ </dependency>
</dependencies>
</project>