summaryrefslogtreecommitdiffstats
path: root/container-disc
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2019-11-26 14:29:33 +0100
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2019-11-26 14:30:56 +0100
commitd6553cd3f5935ce93e324ca77c36279229495a11 (patch)
tree30f65489d71faf872e023e8cdfd7a12c63003d6f /container-disc
parent4b8a65c48af0dd338bed5506a57bec6e002f58f3 (diff)
Don't embed Jackson bundles
Diffstat (limited to 'container-disc')
-rw-r--r--container-disc/pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/container-disc/pom.xml b/container-disc/pom.xml
index e62be0fc637..15b8cd08808 100644
--- a/container-disc/pom.xml
+++ b/container-disc/pom.xml
@@ -138,6 +138,23 @@
<artifactId>jackson-datatype-jdk8</artifactId>
<scope>provided</scope>
</dependency>
+
+ <!-- ensure that transitive Jackson dependencies are not included in compile scope -->
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ <scope>provided</scope>
+ </dependency>
</dependencies>
<build>
<plugins>