File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 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 >
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 >
You can’t perform that action at this time.
0 commit comments