Skip to content

Commit 6e73a88

Browse files
committed
BE: upgrade logback to 1.5.16
1 parent 2b3abd2 commit 6e73a88

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

api/pom.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
<sonar.jacoco.reportPath>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPath>
1919
<sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
2020
<sonar.language>java</sonar.language>
21+
<!-- Temporary overwrite to fix CVE-2024-12798 and CVE-2024-12801. Remove after Spring > 3.4.1 is released -->
22+
<logback.version>1.5.16</logback.version>
2123
</properties>
2224

2325
<dependencies>
@@ -115,9 +117,31 @@
115117
<version>${avro.version}</version>
116118
</dependency>
117119

120+
<dependency>
121+
<groupId>ch.qos.logback</groupId>
122+
<artifactId>logback-core</artifactId>
123+
<version>${logback.version}</version>
124+
</dependency>
125+
126+
<dependency>
127+
<groupId>ch.qos.logback</groupId>
128+
<artifactId>logback-classic</artifactId>
129+
<version>${logback.version}</version>
130+
</dependency>
131+
118132
<dependency>
119133
<groupId>org.springframework.boot</groupId>
120134
<artifactId>spring-boot-starter-logging</artifactId>
135+
<exclusions>
136+
<exclusion>
137+
<groupId>ch.qos.logback</groupId>
138+
<artifactId>logback-classic</artifactId>
139+
</exclusion>
140+
<exclusion>
141+
<groupId>ch.qos.logback</groupId>
142+
<artifactId>logback-core</artifactId>
143+
</exclusion>
144+
</exclusions>
121145
</dependency>
122146

123147
<dependency>

0 commit comments

Comments
 (0)