summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSingal, Kapil (ks220y) <ks220y@att.com>2021-06-09 09:54:36 -0400
committerKAPIL SINGAL <ks220y@att.com>2021-06-09 13:55:39 +0000
commit6993e103802e65b9e335a706eec681314304f08f (patch)
tree3d6160e4a63ace662a5a058416e66b8b9b989156
parent930d8da958c43f9c33b41926143ad06858b5aa68 (diff)
Exluding transitive dependencies from jaxb-api and adding jakarta.activation-api explicitly
Issue-ID: CCSDK-3329 Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com> Change-Id: I292daf886b8ee908e29c89141daa05b8119116e0
-rw-r--r--dependencies-bom/pom.xml9
-rw-r--r--dependencies-odl-bom/pom.xml11
2 files changed, 18 insertions, 2 deletions
diff --git a/dependencies-bom/pom.xml b/dependencies-bom/pom.xml
index 0c4a79e3..d833328e 100644
--- a/dependencies-bom/pom.xml
+++ b/dependencies-bom/pom.xml
@@ -156,12 +156,17 @@
<version>2.3.1</version>
<exclusions>
<exclusion>
- <groupId>javax.xml.stream</groupId>
- <artifactId>stax-api</artifactId>
+ <groupId>*</groupId>
+ <artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
+ <groupId>jakarta.activation</groupId>
+ <artifactId>jakarta.activation-api</artifactId>
+ <version>2.0.1</version>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
diff --git a/dependencies-odl-bom/pom.xml b/dependencies-odl-bom/pom.xml
index 703f58c8..15331696 100644
--- a/dependencies-odl-bom/pom.xml
+++ b/dependencies-odl-bom/pom.xml
@@ -115,6 +115,17 @@
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
+ <exclusions>
+ <exclusion>
+ <groupId>*</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>jakarta.activation</groupId>
+ <artifactId>jakarta.activation-api</artifactId>
+ <version>2.0.1</version>
</dependency>
<!-- Below provides javax.jws -->
<dependency>