aboutsummaryrefslogtreecommitdiffstats
path: root/vespa_jersey2
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2022-06-01 12:23:27 +0200
committergjoranv <gv@verizonmedia.com>2022-06-08 11:45:25 +0200
commit851cafb4d3c00b0042bb69b62ff605464583ab3c (patch)
tree8a93d3f509084eceb82d22a09bfd01661ab32661 /vespa_jersey2
parent5784153a2c7b49fab63f720fe2736eef073f32ba (diff)
Remove all Jersey related dependencies from vespa_jersey2
- This artifact will be renamed later.
Diffstat (limited to 'vespa_jersey2')
-rw-r--r--vespa_jersey2/pom.xml68
1 files changed, 1 insertions, 67 deletions
diff --git a/vespa_jersey2/pom.xml b/vespa_jersey2/pom.xml
index cdf3cd53992..6a043f74c71 100644
--- a/vespa_jersey2/pom.xml
+++ b/vespa_jersey2/pom.xml
@@ -16,21 +16,12 @@
<version>7-SNAPSHOT</version>
<packaging>pom</packaging>
<dependencies>
+
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
</dependency>
<dependency>
- <groupId>org.glassfish.jersey.core</groupId>
- <artifactId>jersey-client</artifactId>
- <exclusions>
- <exclusion>
- <groupId>javax.annotation</groupId>
- <artifactId>javax.annotation-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jdk8</artifactId>
</dependency>
@@ -39,63 +30,6 @@
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
- <dependency>
- <groupId>org.glassfish.jersey.core</groupId>
- <artifactId>jersey-server</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.glassfish.jersey.media</groupId>
- <artifactId>jersey-media-jaxb</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.annotation</groupId>
- <artifactId>javax.annotation-api</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>
-
- <dependency>
- <!-- TODO Vespa 8: remove! Previously pulled in by jersey-media-json-jackson. -->
- <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>
- <!-- TODO Vespa 8: remove! Previously pulled in by jersey-media-json-jackson. -->
- <groupId>com.fasterxml.jackson.module</groupId>
- <artifactId>jackson-module-jaxb-annotations</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>
-
</dependencies>
<build>