Skip to content

Commit

Permalink
chore(pom.xml): update dependencies of log4j and logback even though …
Browse files Browse the repository at this point in the history
…we are safe, force use versions having a fixed implementation (#1881)
  • Loading branch information
SteKoe committed Dec 15, 2021
1 parent c775206 commit 936a1bf
Show file tree
Hide file tree
Showing 4 changed files with 1,742 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pom.xml
Expand Up @@ -28,6 +28,7 @@
<properties>
<revision>2.5.5-SNAPSHOT</revision>
<java.version>1.8</java.version>

<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<resource.delimiter>@</resource.delimiter>
Expand All @@ -44,6 +45,7 @@
<testcontainers.version>1.16.0</testcontainers.version>
<jetty.version>9.4.44.v20210927</jetty.version>


<!-- plugin versions -->
<build-helper-maven-plugin.version>3.2.0</build-helper-maven-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
Expand Down
22 changes: 22 additions & 0 deletions spring-boot-admin-build/pom.xml
Expand Up @@ -30,6 +30,28 @@
</parent>
<dependencyManagement>
<dependencies>
<!-- REMOVE WHEN UPDATING TO SPRING BOOT -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.8</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.2.8</version>
</dependency>
<dependency>
<groupId> org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
<version>2.16.0</version>
</dependency>
<dependency>
<groupId> org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.16.0</version>
</dependency>
<!-- REMOVE END -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-admin-dependencies/pom.xml
Expand Up @@ -26,7 +26,7 @@
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin</artifactId>
<version>${revision}</version>
<relativePath>..</relativePath>
<relativePath>../pom.xml</relativePath>
</parent>
<dependencyManagement>
<dependencies>
Expand Down

0 comments on commit 936a1bf

Please sign in to comment.