aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2022-03-26 01:34:47 +0100
committergjoranv <gv@verizonmedia.com>2022-03-26 01:34:47 +0100
commit1bdf88fa7b5d7d24ffeb11ee2c71f81ffc41d91b (patch)
tree0b5832ea461c37aa7ff51cf7dd458ff1cfb6e416
parentcd841adcf321550a016d8cd84ddf41242de559a5 (diff)
Add explicit dep to jackson-jaxrs-json-provider, used here.
-rw-r--r--configserver/pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/configserver/pom.xml b/configserver/pom.xml
index 2ca2cbb4741..c4e643a90cd 100644
--- a/configserver/pom.xml
+++ b/configserver/pom.xml
@@ -211,6 +211,22 @@
<scope>provided</scope>
</dependency>
<dependency>
+ <groupId>com.fasterxml.jackson.jaxrs</groupId>
+ <artifactId>jackson-jaxrs-json-provider</artifactId>
+ <exclusions>
+ <exclusion>
+ <!-- Conflicts with javax.activation:javax.activation-api:1.2.0, which is "exported" via jdisc_core. -->
+ <groupId>jakarta.activation</groupId>
+ <artifactId>jakarta.activation-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <!-- Conflicts with javax.xml.bind:jaxb-api:2.3, which is "exported" via jdisc_core.-->
+ <groupId>jakarta.xml.bind</groupId>
+ <artifactId>jakarta.xml.bind-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
</dependency>