aboutsummaryrefslogtreecommitdiffstats
path: root/vespa_jersey2
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2021-07-23 10:40:12 +0200
committerGitHub <noreply@github.com>2021-07-23 10:40:12 +0200
commit7da588539f7203975dd56b6bfd089caf03457c96 (patch)
tree14c94f700436572b542878ccead487daf1b15ca7 /vespa_jersey2
parenta2bb9d13c4813c6851fec67176e7f3ca04a4a6eb (diff)
Revert "Remove jersey servlet and jaxb [run-systemtest]"
Diffstat (limited to 'vespa_jersey2')
-rw-r--r--vespa_jersey2/pom.xml29
1 files changed, 8 insertions, 21 deletions
diff --git a/vespa_jersey2/pom.xml b/vespa_jersey2/pom.xml
index 9d3c00aebd5..c39b92cd371 100644
--- a/vespa_jersey2/pom.xml
+++ b/vespa_jersey2/pom.xml
@@ -20,6 +20,14 @@
<artifactId>javax.ws.rs-api</artifactId>
</dependency>
<dependency>
+ <groupId>org.glassfish.jersey.containers</groupId>
+ <artifactId>jersey-container-servlet-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.glassfish.jersey.containers</groupId>
+ <artifactId>jersey-container-servlet</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-json-jackson</artifactId>
<exclusions>
@@ -55,27 +63,6 @@
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
-
- <dependency>
- <!-- Previously pulled in by jersey-container-servlet-core. Contains packages imported by
- jersey-entity-filtering, which is used by jersey-media-json-jackson, which is again useed by hosted Vespa
- framework bundles, July 2021. -->
- <groupId>org.glassfish.jersey.core</groupId>
- <artifactId>jersey-server</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.glassfish.jersey.media</groupId>
- <artifactId>jersey-media-jaxb</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
-
- <dependency>
- <!-- Previously pulled in by jersey-container-servlet-core.
- Contains packages imported by hosted user applications, July 2021. -->
- <groupId>javax.validation</groupId>
- <artifactId>validation-api</artifactId>
- </dependency>
</dependencies>
<build>