summaryrefslogtreecommitdiffstats
path: root/container-test
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-06-22 11:49:01 +0200
committerjonmv <venstad@gmail.com>2022-06-22 11:49:01 +0200
commit9593f0d57c716a26fc9911da8db7e0a2bbb84024 (patch)
treece0f5777b9382a673bba033102955f1cb8c8b3be /container-test
parentbb0c86437365a96da450c23044ae6b3f94878c80 (diff)
Ensure bouncycastle is not in provided scope; work around Maven dep.res. bug
Diffstat (limited to 'container-test')
-rw-r--r--container-test/pom.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/container-test/pom.xml b/container-test/pom.xml
index f2079c97d6d..591f8ee829f 100644
--- a/container-test/pom.xml
+++ b/container-test/pom.xml
@@ -30,6 +30,10 @@
<groupId>com.yahoo.vespa</groupId>
<artifactId>vespajlib</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcpkix-jdk15on</artifactId>
+ </exclusion>
</exclusions>
</dependency>
@@ -37,6 +41,10 @@
for user projects must be added in compile scope here. These dependencies are explicitly excluded
(or set to non-compile scope) in the container and/or container-dev modules. -->
<dependency>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcpkix-jdk15on</artifactId>
+ </dependency>
+ <dependency>
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
</dependency>