diff options
-rw-r--r-- | dependencies-bom/pom.xml | 9 | ||||
-rw-r--r-- | dependencies-odl-bom/pom.xml | 11 |
2 files changed, 18 insertions, 2 deletions
diff --git a/dependencies-bom/pom.xml b/dependencies-bom/pom.xml index 71595844..2e35c873 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 060345ab..392e4166 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> |