Skip to content

Commit 7392566

Browse files
ramkcursoragent
andcommitted
ATLAS-5336: Add explicit Jersey/JAX-RS deps to webapp for REST after Jackson bump
Pin jackson-jaxrs and jsr311-api in webapp/pom.xml so Atlas REST works in the docker server image after the Kafka upgrade Jackson version change. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent e0783f0 commit 7392566

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

webapp/pom.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,18 @@
5858
<version>${jackson.version}</version>
5959
</dependency>
6060

61+
<dependency>
62+
<groupId>com.fasterxml.jackson.jaxrs</groupId>
63+
<artifactId>jackson-jaxrs-base</artifactId>
64+
<version>2.12.7</version>
65+
</dependency>
66+
67+
<dependency>
68+
<groupId>com.fasterxml.jackson.jaxrs</groupId>
69+
<artifactId>jackson-jaxrs-json-provider</artifactId>
70+
<version>2.12.7</version>
71+
</dependency>
72+
6173
<dependency>
6274
<groupId>com.googlecode.json-simple</groupId>
6375
<artifactId>json-simple</artifactId>
@@ -124,6 +136,12 @@
124136
<artifactId>javax.servlet-api</artifactId>
125137
</dependency>
126138

139+
<dependency>
140+
<groupId>javax.ws.rs</groupId>
141+
<artifactId>jsr311-api</artifactId>
142+
<version>1.1.1</version>
143+
</dependency>
144+
127145
<dependency>
128146
<groupId>joda-time</groupId>
129147
<artifactId>joda-time</artifactId>
@@ -190,6 +208,16 @@
190208
<dependency>
191209
<groupId>org.apache.atlas</groupId>
192210
<artifactId>atlas-intg</artifactId>
211+
<exclusions>
212+
<exclusion>
213+
<groupId>com.fasterxml.jackson.jaxrs</groupId>
214+
<artifactId>jackson-jaxrs-base</artifactId>
215+
</exclusion>
216+
<exclusion>
217+
<groupId>com.fasterxml.jackson.jaxrs</groupId>
218+
<artifactId>jackson-jaxrs-json-provider</artifactId>
219+
</exclusion>
220+
</exclusions>
193221
</dependency>
194222

195223
<dependency>

0 commit comments

Comments
 (0)