aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_http_service
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2018-03-07 15:07:34 +0100
committerBjørn Christian Seime <bjorncs@oath.com>2018-03-07 15:13:31 +0100
commit873c5f66858744e55069f77d6eddadd7f1c83f4e (patch)
tree01115c21ca9e2778d3ca282673347e670ac7b927 /jdisc_http_service
parentf509303b9d51b33382d3c2635cb6e0b1fef4b00a (diff)
Make BouncyCastle a pre-install requirement of jdisc_http_service
Diffstat (limited to 'jdisc_http_service')
-rw-r--r--jdisc_http_service/pom.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/jdisc_http_service/pom.xml b/jdisc_http_service/pom.xml
index a1482669b39..48f5cdd11db 100644
--- a/jdisc_http_service/pom.xml
+++ b/jdisc_http_service/pom.xml
@@ -19,12 +19,12 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
- <scope>compile</scope>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
- <scope>compile</scope>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
@@ -176,6 +176,8 @@
<configuration>
<discPreInstallBundle>
asm-debug-all-${asm-debug-all.version}.jar,
+ bcpkix-jdk15on-${bouncycastle.version}.jar,
+ bcprov-jdk15on-${bouncycastle.version}.jar,
javax.servlet-api-3.1.0.jar,
jetty-continuation-${jetty.version}.jar,
jetty-http-${jetty.version}.jar,