Browse Source

Use Spring 5 module of Jersey

See gh-17412
pull/17431/head
dreis2211 7 years ago committed by Andy Wilkinson
parent
commit
7c6fd31d06
  1. 2
      spring-boot-project/spring-boot-actuator-autoconfigure/pom.xml
  2. 2
      spring-boot-project/spring-boot-actuator/pom.xml
  3. 2
      spring-boot-project/spring-boot-autoconfigure/pom.xml
  4. 6
      spring-boot-project/spring-boot-dependencies/pom.xml
  5. 2
      spring-boot-project/spring-boot-docs/pom.xml
  6. 2
      spring-boot-project/spring-boot-starters/spring-boot-starter-jersey/pom.xml

2
spring-boot-project/spring-boot-actuator-autoconfigure/pom.xml

@ -557,7 +557,7 @@ @@ -557,7 +557,7 @@
</dependency>
<dependency>
<groupId>org.glassfish.jersey.ext</groupId>
<artifactId>jersey-spring4</artifactId>
<artifactId>jersey-spring5</artifactId>
<scope>test</scope>
</dependency>
<dependency>

2
spring-boot-project/spring-boot-actuator/pom.xml

@ -367,7 +367,7 @@ @@ -367,7 +367,7 @@
</dependency>
<dependency>
<groupId>org.glassfish.jersey.ext</groupId>
<artifactId>jersey-spring4</artifactId>
<artifactId>jersey-spring5</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>

2
spring-boot-project/spring-boot-autoconfigure/pom.xml

@ -186,7 +186,7 @@ @@ -186,7 +186,7 @@
</dependency>
<dependency>
<groupId>org.glassfish.jersey.ext</groupId>
<artifactId>jersey-spring4</artifactId>
<artifactId>jersey-spring5</artifactId>
<optional>true</optional>
<exclusions>
<exclusion>

6
spring-boot-project/spring-boot-dependencies/pom.xml

@ -2254,6 +2254,12 @@ @@ -2254,6 +2254,12 @@
<scope>import</scope>
<type>pom</type>
</dependency>
<!-- Remove once https://github.com/eclipse-ee4j/jersey/issues/4184 is fixed -->
<dependency>
<groupId>org.glassfish.jersey.ext</groupId>
<artifactId>jersey-spring5</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>

2
spring-boot-project/spring-boot-docs/pom.xml

@ -669,7 +669,7 @@ @@ -669,7 +669,7 @@
</dependency>
<dependency>
<groupId>org.glassfish.jersey.ext</groupId>
<artifactId>jersey-spring4</artifactId>
<artifactId>jersey-spring5</artifactId>
<optional>true</optional>
</dependency>
<dependency>

2
spring-boot-project/spring-boot-starters/spring-boot-starter-jersey/pom.xml

@ -93,7 +93,7 @@ @@ -93,7 +93,7 @@
</dependency>
<dependency>
<groupId>org.glassfish.jersey.ext</groupId>
<artifactId>jersey-spring4</artifactId>
<artifactId>jersey-spring5</artifactId>
<exclusions>
<exclusion>
<groupId>org.jvnet</groupId>

Loading…
Cancel
Save