summaryrefslogtreecommitdiffstats
path: root/container-dev
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2022-06-06 11:12:43 +0200
committergjoranv <gv@verizonmedia.com>2022-06-08 11:45:29 +0200
commit360ee9a44d74603b33d22d8a38732c6622af6bc5 (patch)
tree23ef5525ef92e698227c0579ef8eb17f3584a56d /container-dev
parentb2270049df9a03c1c811513fc93ee11f06dd4cf1 (diff)
Add explicit jrt with bouncycastle exclusion to container-dev.
- Ensures bouncycastle not in scope provided for users.
Diffstat (limited to 'container-dev')
-rw-r--r--container-dev/pom.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/container-dev/pom.xml b/container-dev/pom.xml
index f531ba9fece..d292da33ffe 100644
--- a/container-dev/pom.xml
+++ b/container-dev/pom.xml
@@ -205,6 +205,17 @@
<artifactId>hosted-zone-api</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>jrt</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcpkix-jdk15on</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
<!-- NOTE: Dependencies below are added explicitly to exclude transitive deps that are not provided runtime by the container,
and hence make them invisible to user projects' build classpath.