This is an automated email from the ASF dual-hosted git repository.
kwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven.git
The following commit(s) were added to refs/heads/master by this push:
new b018c4d16f Add SLF4J JDK Platform Logging Integration
b018c4d16f is described below
commit b018c4d16f21b970ff854386d5c1f662a6a28a59
Author: Konrad Windszus <[email protected]>
AuthorDate: Thu Jan 29 12:25:39 2026 +0100
Add SLF4J JDK Platform Logging Integration
This provides a SLF4J implementation for JEP 264 Loggers
This closes #11684
---
apache-maven/pom.xml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/apache-maven/pom.xml b/apache-maven/pom.xml
index 4e77d0ded8..4beedccf29 100644
--- a/apache-maven/pom.xml
+++ b/apache-maven/pom.xml
@@ -64,12 +64,20 @@ under the License.
</dependency>
<!-- CLI -->
+ <!-- bridge from Apache Commons Logging (JCL) to SLF4J-->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4jVersion}</version>
<scope>runtime</scope>
</dependency>
+ <!-- bridge from System.Logger to SLF4J (Platform Logging API, added by
JEP 264) -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-jdk-platform-logging</artifactId>
+ <version>${slf4jVersion}</version>
+ <scope>runtime</scope>
+ </dependency>
<dependency>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-connector-basic</artifactId>