Skip to content

Commit

Permalink
Use bom to manage the jackson version
Browse files Browse the repository at this point in the history
  • Loading branch information
yeikel authored and yeikel committed Mar 29, 2022
1 parent 3a5d00d commit b39fbf6
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pom.xml
Expand Up @@ -145,7 +145,7 @@


<skipTests>false</skipTests>
<jackson-databind.version>2.13.2.2</jackson-databind.version>
<jackson.bom.version>2.13.2.20220328</jackson.bom.version>

<doc.outputDirectory>${project.build.directory}/generated-docs</doc.outputDirectory>
</properties>
Expand Down Expand Up @@ -209,10 +209,18 @@
<artifactId>json</artifactId>
<version>${org.json.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${jackson.bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

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

<!-- Mojo Utils-->
Expand Down

0 comments on commit b39fbf6

Please sign in to comment.