Skip to content

Commit

Permalink
Fix CVE-2023-6378 logback.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicode committed Jan 18, 2024
1 parent 5f85c8f commit 6b0fa61
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<docker.image.prefix>snomedinternational</docker.image.prefix>
<docker.image.tag>latest</docker.image.tag>
<docker.base-image>amazoncorretto:17</docker.base-image>
<spring-boot.version>2.7.18</spring-boot.version>
</properties>

<dependencies>
Expand All @@ -49,16 +50,17 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.7.17</version><!-- Force version newer than BOM for CVE fix -->
<version>${spring-boot.version}</version><!-- Force version newer than BOM for CVE fix -->
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<version>2.7.17</version><!-- Force version newer than BOM for CVE fix -->
<version>${spring-boot.version}</version><!-- Force version newer than BOM for CVE fix -->
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<version>${spring-boot.version}</version>
</dependency>

<!-- HAPI FHIR -->
Expand Down Expand Up @@ -137,6 +139,16 @@
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.13</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.2.13</version>
</dependency>

<!-- Test dependencies -->
<dependency>
Expand Down

0 comments on commit 6b0fa61

Please sign in to comment.