Skip to content

Commit 936a1bf

Browse files
authored
chore(pom.xml): update dependencies of log4j and logback even though we are safe, force use versions having a fixed implementation (codecentric#1881)
1 parent c775206 commit 936a1bf

File tree

4 files changed

+1742
-1
lines changed

4 files changed

+1742
-1
lines changed

pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
<properties>
2929
<revision>2.5.5-SNAPSHOT</revision>
3030
<java.version>1.8</java.version>
31+
3132
<maven.compiler.source>${java.version}</maven.compiler.source>
3233
<maven.compiler.target>${java.version}</maven.compiler.target>
3334
<resource.delimiter>@</resource.delimiter>
@@ -44,6 +45,7 @@
4445
<testcontainers.version>1.16.0</testcontainers.version>
4546
<jetty.version>9.4.44.v20210927</jetty.version>
4647

48+
4749
<!-- plugin versions -->
4850
<build-helper-maven-plugin.version>3.2.0</build-helper-maven-plugin.version>
4951
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>

spring-boot-admin-build/pom.xml

+22
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,28 @@
3030
</parent>
3131
<dependencyManagement>
3232
<dependencies>
33+
<!-- REMOVE WHEN UPDATING TO SPRING BOOT -->
34+
<dependency>
35+
<groupId>ch.qos.logback</groupId>
36+
<artifactId>logback-classic</artifactId>
37+
<version>1.2.8</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>ch.qos.logback</groupId>
41+
<artifactId>logback-core</artifactId>
42+
<version>1.2.8</version>
43+
</dependency>
44+
<dependency>
45+
<groupId> org.apache.logging.log4j</groupId>
46+
<artifactId>log4j-to-slf4j</artifactId>
47+
<version>2.16.0</version>
48+
</dependency>
49+
<dependency>
50+
<groupId> org.apache.logging.log4j</groupId>
51+
<artifactId>log4j-api</artifactId>
52+
<version>2.16.0</version>
53+
</dependency>
54+
<!-- REMOVE END -->
3355
<dependency>
3456
<groupId>org.springframework.boot</groupId>
3557
<artifactId>spring-boot-dependencies</artifactId>

spring-boot-admin-dependencies/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<groupId>de.codecentric</groupId>
2727
<artifactId>spring-boot-admin</artifactId>
2828
<version>${revision}</version>
29-
<relativePath>..</relativePath>
29+
<relativePath>../pom.xml</relativePath>
3030
</parent>
3131
<dependencyManagement>
3232
<dependencies>

0 commit comments

Comments
 (0)