Skip to content

Commit

Permalink
Managing Jackson a the parent (#884)
Browse files Browse the repository at this point in the history
To address a number of vulnerabilities Synk identified, this change
forces the default Jackson Version to 2.9.8
  • Loading branch information
kdavisk6 authored Jan 30, 2019
1 parent 3df5446 commit ce3edac
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,25 @@
<artifactId>mockwebserver</artifactId>
<version>${okhttp3.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit ce3edac

Please sign in to comment.