1
0

Upgrade log4j-api to version 2.23.1 (#230)

* Bump log4j2.version from 2.22.1 to 2.23.1

Bumps `log4j2.version` from 2.22.1 to 2.23.1.

Updates `org.apache.logging.log4j:log4j-api` from 2.22.1 to 2.23.1

Updates `org.apache.logging.log4j:log4j-core` from 2.22.1 to 2.23.1

Updates `org.apache.logging.log4j:log4j-core-test` from 2.22.1 to 2.23.1

---
updated-dependencies:
- dependency-name: org.apache.logging.log4j:log4j-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.apache.logging.log4j:log4j-core
  dependency-type: direct:development
  update-type: version-update:semver-minor
- dependency-name: org.apache.logging.log4j:log4j-core-test
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Ban `spring-jcl` from the dependencies

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
Piotr P. Karwasz
2024-03-15 20:03:15 +01:00
committed by GitHub
parent dc7821c3cb
commit 71f4304533

36
pom.xml
View File

@@ -434,6 +434,33 @@ under the License.
</plugins> </plugins>
</configuration> </configuration>
</plugin> </plugin>
<!--
~ Ban Commons Logging clones
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>ban-jcl-clones</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<bannedDependencies>
<excludes>
<exclude>org.slf4j:jcl-over-slf4j</exclude>
<exclude>org.springframework:spring-jcl</exclude>
</excludes>
</bannedDependencies>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>
@@ -491,6 +518,13 @@ under the License.
<artifactId>log4j-core-test</artifactId> <artifactId>log4j-core-test</artifactId>
<version>${log4j2.version}</version> <version>${log4j2.version}</version>
<scope>test</scope> <scope>test</scope>
<exclusions>
<!-- Commons Logging clone -->
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-jcl</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>ch.qos.logback</groupId> <groupId>ch.qos.logback</groupId>
@@ -582,7 +616,7 @@ under the License.
<commons.failsafe.version>3.2.1</commons.failsafe.version> <commons.failsafe.version>3.2.1</commons.failsafe.version>
<!-- Allow default test run order to be changed --> <!-- Allow default test run order to be changed -->
<failsafe.runorder>filesystem</failsafe.runorder> <failsafe.runorder>filesystem</failsafe.runorder>
<log4j2.version>2.22.1</log4j2.version> <log4j2.version>2.23.1</log4j2.version>
<logback.version>1.3.12</logback.version> <logback.version>1.3.12</logback.version>
<slf4j.version>2.0.12</slf4j.version> <slf4j.version>2.0.12</slf4j.version>
<findsecbugs.version>1.13.0</findsecbugs.version> <findsecbugs.version>1.13.0</findsecbugs.version>