Skip to content

Commit 425f30f

Browse files
committed
update
1 parent 6e73a88 commit 425f30f

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

api/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
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>
2321
</properties>
2422

2523
<dependencies>

contract/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,29 @@
1818
</activation>
1919

2020
<dependencies>
21+
<dependency>
22+
<groupId>ch.qos.logback</groupId>
23+
<artifactId>logback-core</artifactId>
24+
<version>${logback.version}</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>ch.qos.logback</groupId>
28+
<artifactId>logback-classic</artifactId>
29+
<version>${logback.version}</version>
30+
</dependency>
2131
<dependency>
2232
<groupId>org.springframework.boot</groupId>
2333
<artifactId>spring-boot-starter-webflux</artifactId>
34+
<exclusions>
35+
<exclusion>
36+
<groupId>ch.qos.logback</groupId>
37+
<artifactId>logback-classic</artifactId>
38+
</exclusion>
39+
<exclusion>
40+
<groupId>ch.qos.logback</groupId>
41+
<artifactId>logback-core</artifactId>
42+
</exclusion>
43+
</exclusions>
2444
</dependency>
2545
<dependency>
2646
<groupId>org.springframework.boot</groupId>

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@
4545
<scala-lang.library.version>2.13.9</scala-lang.library.version>
4646
<snakeyaml.version>2.3</snakeyaml.version>
4747
<spring-boot.version>3.4.1</spring-boot.version>
48+
<!-- Temporary overwrite to fix CVE-2024-12798 and CVE-2024-12801. Remove after Spring > 3.4.1 is released -->
49+
<logback.version>1.5.16</logback.version>
4850
<serde-api.version>1.0.0</serde-api.version>
4951
<odd-oddrn-generator.version>0.1.17</odd-oddrn-generator.version>
5052
<odd-oddrn-client.version>0.1.39</odd-oddrn-client.version>

0 commit comments

Comments
 (0)