You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by pk...@apache.org on 2023/02/05 20:02:04 UTC

[logging-log4j2] branch master updated (c9e3df5321 -> 9d8a642d9c)

This is an automated email from the ASF dual-hosted git repository.

pkarwasz pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


    from c9e3df5321 Modify `maven-wrapper.properties` line ending on Windows
     new a5a98d7bf7 [LOG4J2-3601] log4j-slf4j2-impl: depend on log4j-core scope=runtime
     new 9d8a642d9c [LOG4J2-3601] Add changelog

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 log4j-slf4j2-impl/pom.xml                                     |  6 +++---
 ...dd_Log4j2_Core_as_runtime_dep_for_SLF4J-to-LOG4J2-API.xml} | 11 +++++++----
 2 files changed, 10 insertions(+), 7 deletions(-)
 copy src/changelog/.2.x.x/{LOG4J2-1631_Honor-timezone-in-file-name-pattern.xml => LOG4J2-3601_Add_Log4j2_Core_as_runtime_dep_for_SLF4J-to-LOG4J2-API.xml} (65%)


[logging-log4j2] 02/02: [LOG4J2-3601] Add changelog

Posted by pk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pkarwasz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git

commit 9d8a642d9c9c9fefc77fcb28c9fffc14b1f714e3
Author: Piotr P. Karwasz <pi...@karwasz.org>
AuthorDate: Sun Feb 5 20:53:21 2023 +0100

    [LOG4J2-3601] Add changelog
---
 ...Core_as_runtime_dep_for_SLF4J-to-LOG4J2-API.xml | 28 ++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/src/changelog/.2.x.x/LOG4J2-3601_Add_Log4j2_Core_as_runtime_dep_for_SLF4J-to-LOG4J2-API.xml b/src/changelog/.2.x.x/LOG4J2-3601_Add_Log4j2_Core_as_runtime_dep_for_SLF4J-to-LOG4J2-API.xml
new file mode 100644
index 0000000000..1f2d4333e6
--- /dev/null
+++ b/src/changelog/.2.x.x/LOG4J2-3601_Add_Log4j2_Core_as_runtime_dep_for_SLF4J-to-LOG4J2-API.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+<entry xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xmlns="http://logging.apache.org/log4j/changelog"
+       xsi:schemaLocation="http://logging.apache.org/log4j/changelog https://logging.apache.org/log4j/changelog-0.1.0.xsd"
+       type="changed">
+  <issue id="LOG4J2-3601" link="https://issues.apache.org/jira/browse/LOG4J2-3601"/>
+  <author id="afs" name="Andy Seaborne"/>
+  <author id="pkarwasz"/>
+  <description format="asciidoc">
+    Add Log4j2 Core as default runtime dependency of the SLF4J2-to-Log4j2 API bridge.
+  </description>
+</entry>


[logging-log4j2] 01/02: [LOG4J2-3601] log4j-slf4j2-impl: depend on log4j-core scope=runtime

Posted by pk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pkarwasz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git

commit a5a98d7bf7b20c62767f5f9325e6f707878ad353
Author: Andy Seaborne <an...@seaborne.org>
AuthorDate: Sun Sep 18 14:10:13 2022 +0100

    [LOG4J2-3601] log4j-slf4j2-impl: depend on log4j-core scope=runtime
---
 log4j-slf4j2-impl/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/log4j-slf4j2-impl/pom.xml b/log4j-slf4j2-impl/pom.xml
index 4e6e80cafa..8f08f3ce34 100644
--- a/log4j-slf4j2-impl/pom.xml
+++ b/log4j-slf4j2-impl/pom.xml
@@ -50,12 +50,12 @@
     </dependency>
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-api-test</artifactId>
-      <scope>test</scope>
+      <artifactId>log4j-core</artifactId>
+      <scope>runtime</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-core</artifactId>
+      <artifactId>log4j-api-test</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>