Skip to content

Commit

Permalink
STNG-199 Pin dependencies to recent versions (#202)
Browse files Browse the repository at this point in the history
* Upgrades Jackson libraries to 2.18.0
* Upgrades log4j to 2.23.1
  • Loading branch information
jkosternl authored Oct 17, 2024
1 parent e574443 commit 4db6d3a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 14 deletions.
12 changes: 0 additions & 12 deletions lambda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,6 @@
<aspectj.version>1.9.21.2</aspectj.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-bom</artifactId>
<version>${log4j.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.dcsa.conformance</groupId>
Expand Down
32 changes: 30 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<spring.boot.version>3.3.4</spring.boot.version>
<log4j.version>2.20.0</log4j.version>
<junit.version>5.11.2</junit.version>
<jackson.version>2.18.0</jackson.version>
<lombok.version>1.18.34</lombok.version>
<log4j.version>2.23.1</log4j.version>
<slf4j.version>2.0.16</slf4j.version>
<junit.version>5.11.2</junit.version>

<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.organization>dcsaorg</sonar.organization>
Expand Down Expand Up @@ -128,6 +130,32 @@
<version>${project.version}</version>
</dependency>

<!-- Jackson dependencies -->
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>${jackson.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-bom</artifactId>
<version>${log4j.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.17.1</version>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand Down

0 comments on commit 4db6d3a

Please sign in to comment.