summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-03-01 14:32:24 +0100
committergjoranv <gv@verizonmedia.com>2021-03-01 14:32:24 +0100
commitbb2e922606f1f3ebaf2e74f2b173e388851e4ebd (patch)
treeb8f19c390ed7f76f01f2f159047f5252156f82aa
parent461b97c7eef4b150e9fa3b767d0d1e554efe13ef (diff)
Move deps used by container-core to provided-dependencies
-rw-r--r--container-disc/pom.xml12
-rwxr-xr-xprovided-dependencies/pom.xml10
2 files changed, 10 insertions, 12 deletions
diff --git a/container-disc/pom.xml b/container-disc/pom.xml
index 857696a14a7..a5f678ad828 100644
--- a/container-disc/pom.xml
+++ b/container-disc/pom.xml
@@ -138,18 +138,6 @@
</dependency>
<!-- end WARNING -->
- <!-- dependencies used by container-core -->
- <dependency>
- <groupId>com.fasterxml.jackson.datatype</groupId>
- <artifactId>jackson-datatype-jsr310</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.datatype</groupId>
- <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>
diff --git a/provided-dependencies/pom.xml b/provided-dependencies/pom.xml
index ca7a9739405..e73d9902ebe 100755
--- a/provided-dependencies/pom.xml
+++ b/provided-dependencies/pom.xml
@@ -66,6 +66,16 @@
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.main</artifactId>
</dependency>
+
+ <!-- Dependencies used by container-core -->
+ <dependency>
+ <groupId>com.fasterxml.jackson.datatype</groupId>
+ <artifactId>jackson-datatype-jsr310</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.datatype</groupId>
+ <artifactId>jackson-datatype-jdk8</artifactId>
+ </dependency>
</dependencies>
<build>
<plugins>