aboutsummaryrefslogtreecommitdiffstats
path: root/vespa_jersey2
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-07-21 14:38:23 +0200
committergjoranv <gv@verizonmedia.com>2021-07-21 14:38:23 +0200
commit4266f3f5095ad6c2671708b693e9de217ee61850 (patch)
tree24aa84bb5465dc1a3913de12b5e0389ac66081a7 /vespa_jersey2
parent6a1fc15cbb6ed6ff8c63fc8d1043bf97a3d48ea6 (diff)
Do not install jersey-container-servlet and media-jaxb bundles.
Diffstat (limited to 'vespa_jersey2')
-rw-r--r--vespa_jersey2/pom.xml29
1 files changed, 21 insertions, 8 deletions
diff --git a/vespa_jersey2/pom.xml b/vespa_jersey2/pom.xml
index c39b92cd371..9d3c00aebd5 100644
--- a/vespa_jersey2/pom.xml
+++ b/vespa_jersey2/pom.xml
@@ -20,14 +20,6 @@
<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>
@@ -63,6 +55,27 @@
<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>