Skip to content

Commit

Permalink
fix: set the jackson libraries with the same version (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
regiluze authored Oct 30, 2023
1 parent d55cd62 commit c0da084
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spm-client-common-libs-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,28 +72,28 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.10.0.pr1</version>
<version>2.12.7</version>
<scope>${common.lib.scope}</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.0.pr1</version>
<version>2.12.7.1</version>
<scope>${common.lib.scope}</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-smile</artifactId>
<version>2.10.0.pr1</version>
<version>2.12.7</version>
<scope>${common.lib.scope}</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.10.0.pr1</version>
<version>2.12.7</version>
<scope>${common.lib.scope}</scope>
</dependency>

Expand Down
5 changes: 5 additions & 0 deletions spm-monitor-generic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
<description>Generic SPM system monitoring tool</description>

<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.12.7</version>
</dependency>
<dependency>
<groupId>com.sematext.spm</groupId>
<artifactId>spm-monitor</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions spm-monitor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
<url>http://maven.apache.org</url>

<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.12.7</version>
</dependency>
<dependency>
<groupId>com.tngtech.java</groupId>
<artifactId>junit-dataprovider</artifactId>
Expand Down

0 comments on commit c0da084

Please sign in to comment.