Skip to content

Commit

Permalink
Merge pull request #55 from tnagao7/update-libs
Browse files Browse the repository at this point in the history
Update jackson-databind and commons-codec
  • Loading branch information
tnagao7 committed Jul 12, 2022
2 parents e3ffecd + 2ee7866 commit ad4adbb
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
11 changes: 11 additions & 0 deletions launcher-impl/glassfish/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,17 @@
</exclusion>
</exclusions>
</dependency>
<!-- Use newer jackson-databind for security fix -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish.main.extras</groupId>
<artifactId>glassfish-embedded-web</artifactId>
Expand Down
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@
<concurrent-api.version>2.0.0</concurrent-api.version>
<concurrent-ri.version>2.0.0</concurrent-ri.version>
<jakarta.validation.version>3.0.0</jakarta.validation.version>
<jackson.databind.version>2.13.2.2</jackson.databind.version>
<commons.codec.version>1.13</commons.codec.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -407,6 +409,18 @@
<artifactId>jakarta.validation-api</artifactId>
<version>${jakarta.validation.version}</version>
</dependency>
<!-- jackson -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.databind.version}</version>
</dependency>
<!-- commons-codec -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commons.codec.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit ad4adbb

Please sign in to comment.