Skip to content

Commit

Permalink
RESTEASY-2394 - upgrade resteasy to 4.4.0.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
liweinan committed Nov 5, 2019
1 parent 9b569ea commit f6ad81e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
20 changes: 19 additions & 1 deletion resteasy-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<springboot.version>2.2.0.RELEASE</springboot.version>
<resteasy.version>4.3.1.Final</resteasy.version>
<resteasy.version>4.4.0.Final</resteasy.version>
<resteasy.jackson.version>2.10.0</resteasy.jackson.version>
<modular.jdk.args/>
<modular.jdk.props/>
Expand Down Expand Up @@ -113,6 +113,10 @@
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</exclusion>
<exclusion>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -161,6 +165,10 @@
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
</exclusion>
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -385,6 +393,16 @@
<artifactId>junit-jupiter-api</artifactId>
<version>5.5.2</version>
</dependency>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
<version>2.0.2</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.13</version>
</dependency>
</dependencies>

<profiles>
Expand Down
2 changes: 1 addition & 1 deletion sample-app-no-jaxrs-application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<resteasy.version>4.3.1.Final</resteasy.version>
<resteasy.version>4.4.0.Final</resteasy.version>
<springboot.version>2.1.9.RELEASE</springboot.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion sample-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<resteasy.version>4.3.1.Final</resteasy.version>
<resteasy.version>4.4.0.Final</resteasy.version>
<springboot.version>2.1.9.RELEASE</springboot.version>
</properties>

Expand Down

0 comments on commit f6ad81e

Please sign in to comment.