This is an automated email from the ASF dual-hosted git repository. kwin pushed a commit to branch feature/add-slf4j-platform-logging in repository https://gitbox.apache.org/repos/asf/maven.git
commit d512eb715a9215e7a327f03157f168431c0433ba 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>
