Return-Path: X-Original-To: apmail-logging-commits-archive@minotaur.apache.org Delivered-To: apmail-logging-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5CD351080C for ; Thu, 11 Apr 2013 14:29:03 +0000 (UTC) Received: (qmail 76950 invoked by uid 500); 11 Apr 2013 14:29:03 -0000 Delivered-To: apmail-logging-commits-archive@logging.apache.org Received: (qmail 76916 invoked by uid 500); 11 Apr 2013 14:29:03 -0000 Mailing-List: contact commits-help@logging.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@logging.apache.org Delivered-To: mailing list commits@logging.apache.org Received: (qmail 76906 invoked by uid 99); 11 Apr 2013 14:29:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Apr 2013 14:29:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 Apr 2013 14:29:00 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 8C2DA2388900; Thu, 11 Apr 2013 14:28:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1466901 - in /logging/log4j/log4j2/trunk: ./ dist/ dist/src/assembly/ flume-ng/ flume-ng/src/site/xdoc/ jcl-bridge/ log4j-async/ log4j-to-slf4j/ log4j12-api/ samples/ samples/flume-embedded/ samples/flume-remote/ slf4j-impl/ src/site/xdoc/... Date: Thu, 11 Apr 2013 14:28:39 -0000 To: commits@logging.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130411142840.8C2DA2388900@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Thu Apr 11 14:28:39 2013 New Revision: 1466901 URL: http://svn.apache.org/r1466901 Log: [LOG4J2-206] Use the same Maven group ID for all artifacts: org.apache.logging.log4j. The group ID org.apache.logging.log4j.adapters is no longer used. Modified: logging/log4j/log4j2/trunk/dist/pom.xml logging/log4j/log4j2/trunk/dist/src/assembly/bin.xml logging/log4j/log4j2/trunk/flume-ng/pom.xml logging/log4j/log4j2/trunk/flume-ng/src/site/xdoc/index.xml logging/log4j/log4j2/trunk/jcl-bridge/pom.xml logging/log4j/log4j2/trunk/log4j-async/pom.xml logging/log4j/log4j2/trunk/log4j-to-slf4j/pom.xml logging/log4j/log4j2/trunk/log4j12-api/pom.xml logging/log4j/log4j2/trunk/pom.xml logging/log4j/log4j2/trunk/samples/flume-embedded/pom.xml logging/log4j/log4j2/trunk/samples/flume-remote/pom.xml logging/log4j/log4j2/trunk/samples/pom.xml logging/log4j/log4j2/trunk/slf4j-impl/pom.xml logging/log4j/log4j2/trunk/src/site/xdoc/build.xml.vm logging/log4j/log4j2/trunk/web/pom.xml Modified: logging/log4j/log4j2/trunk/dist/pom.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/dist/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/dist/pom.xml (original) +++ logging/log4j/log4j2/trunk/dist/pom.xml Thu Apr 11 14:28:39 2013 @@ -76,86 +76,86 @@ limitations under the License. tests - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-jcl ${project.version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-jcl ${project.version} sources - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-jcl ${project.version} javadoc - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-flume-ng ${project.version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-flume-ng ${project.version} sources - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-flume-ng ${project.version} javadoc - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-1.2-api ${project.version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-1.2-api ${project.version} sources - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-1.2-api ${project.version} javadoc - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-slf4j-impl ${project.version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-slf4j-impl ${project.version} sources - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-slf4j-impl ${project.version} javadoc - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-to-slf4j ${project.version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-to-slf4j ${project.version} sources - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-to-slf4j ${project.version} javadoc Modified: logging/log4j/log4j2/trunk/dist/src/assembly/bin.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/dist/src/assembly/bin.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/dist/src/assembly/bin.xml (original) +++ logging/log4j/log4j2/trunk/dist/src/assembly/bin.xml Thu Apr 11 14:28:39 2013 @@ -31,9 +31,9 @@ limitations under the License. org.apache.logging.log4j:log4j-* - org.apache.logging.log4j.adapters:log4j-* - org.apache.logging.log4j.adapters:slf4j-* - org.apache.logging.log4j.adapters:log4j12-* + org.apache.logging.log4j:log4j-* + org.apache.logging.log4j:slf4j-* + org.apache.logging.log4j:log4j12-* org.apache.logging.log4j:log4j-distribution Modified: logging/log4j/log4j2/trunk/flume-ng/pom.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/flume-ng/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/flume-ng/pom.xml (original) +++ logging/log4j/log4j2/trunk/flume-ng/pom.xml Thu Apr 11 14:28:39 2013 @@ -23,7 +23,7 @@ 2.0-beta5-SNAPSHOT ../ - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-flume-ng jar Apache Log4j Flume NG Bridge @@ -48,12 +48,12 @@ je - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-slf4j-impl test - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-1.2-api test Modified: logging/log4j/log4j2/trunk/flume-ng/src/site/xdoc/index.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/flume-ng/src/site/xdoc/index.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/flume-ng/src/site/xdoc/index.xml (original) +++ logging/log4j/log4j2/trunk/flume-ng/src/site/xdoc/index.xml Thu Apr 11 14:28:39 2013 @@ -103,7 +103,7 @@ ${log4j2_version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-1.2-api ${log4j2_version} @@ -113,22 +113,22 @@ ${log4j2_version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-flume-ng ${log4j2_version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-slf4j-impl ${log4j2_version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-jcl ${log4j2_version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-web ${log4j2_version} @@ -163,7 +163,7 @@ - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j12-api @@ -173,7 +173,7 @@ - org.apache.logging.log4j.adapters + org.apache.logging.log4j slf4j-impl @@ -188,12 +188,12 @@ - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-jcl - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-web Modified: logging/log4j/log4j2/trunk/jcl-bridge/pom.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/jcl-bridge/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/jcl-bridge/pom.xml (original) +++ logging/log4j/log4j2/trunk/jcl-bridge/pom.xml Thu Apr 11 14:28:39 2013 @@ -25,7 +25,7 @@ 4.0.0 - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-jcl jar Apache Log4j Commons Logging Bridge Modified: logging/log4j/log4j2/trunk/log4j-async/pom.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-async/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/log4j-async/pom.xml (original) +++ logging/log4j/log4j2/trunk/log4j-async/pom.xml Thu Apr 11 14:28:39 2013 @@ -57,7 +57,7 @@ 3.0.0.beta3 - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-1.2-api test Modified: logging/log4j/log4j2/trunk/log4j-to-slf4j/pom.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-to-slf4j/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/log4j-to-slf4j/pom.xml (original) +++ logging/log4j/log4j2/trunk/log4j-to-slf4j/pom.xml Thu Apr 11 14:28:39 2013 @@ -23,7 +23,7 @@ 2.0-beta5-SNAPSHOT ../ - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-to-slf4j jar Apache Log4j to SLF4J Adapter Modified: logging/log4j/log4j2/trunk/log4j12-api/pom.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j12-api/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/log4j12-api/pom.xml (original) +++ logging/log4j/log4j2/trunk/log4j12-api/pom.xml Thu Apr 11 14:28:39 2013 @@ -23,7 +23,7 @@ 2.0-beta5-SNAPSHOT ../ - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-1.2-api jar Apache Log4j 1.x Compatibility API Modified: logging/log4j/log4j2/trunk/pom.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/pom.xml (original) +++ logging/log4j/log4j2/trunk/pom.xml Thu Apr 11 14:28:39 2013 @@ -190,17 +190,17 @@ test-jar - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-slf4j-impl ${project.version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-jcl ${project.version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-1.2-api ${project.version} Modified: logging/log4j/log4j2/trunk/samples/flume-embedded/pom.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/samples/flume-embedded/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/samples/flume-embedded/pom.xml (original) +++ logging/log4j/log4j2/trunk/samples/flume-embedded/pom.xml Thu Apr 11 14:28:39 2013 @@ -45,11 +45,11 @@ log4j-core - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-web - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-flume-ng Modified: logging/log4j/log4j2/trunk/samples/flume-remote/pom.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/samples/flume-remote/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/samples/flume-remote/pom.xml (original) +++ logging/log4j/log4j2/trunk/samples/flume-remote/pom.xml Thu Apr 11 14:28:39 2013 @@ -45,11 +45,11 @@ log4j-core - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-web - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-flume-ng Modified: logging/log4j/log4j2/trunk/samples/pom.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/samples/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/samples/pom.xml (original) +++ logging/log4j/log4j2/trunk/samples/pom.xml Thu Apr 11 14:28:39 2013 @@ -35,12 +35,12 @@ - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-web ${project.version} - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-flume-ng ${project.version} Modified: logging/log4j/log4j2/trunk/slf4j-impl/pom.xml URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/slf4j-impl/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/slf4j-impl/pom.xml (original) +++ logging/log4j/log4j2/trunk/slf4j-impl/pom.xml Thu Apr 11 14:28:39 2013 @@ -23,7 +23,7 @@ 2.0-beta5-SNAPSHOT ../ - org.apache.logging.log4j.adapters + org.apache.logging.log4j log4j-slf4j-impl jar Apache Log4j SLF4J Binding Modified: logging/log4j/log4j2/trunk/src/site/xdoc/build.xml.vm URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/src/site/xdoc/build.xml.vm?rev=1466901&r1=1466900&r2=1466901&view=diff ============================================================================== --- logging/log4j/log4j2/trunk/src/site/xdoc/build.xml.vm (original) +++ logging/log4j/log4j2/trunk/src/site/xdoc/build.xml.vm Thu Apr 11 14:28:39 2013 @@ -94,7 +94,7 @@

   
-    org.apache.logging.log4j.adapters
+    org.apache.logging.log4j
     log4j-1.2-api
     ${Log4jReleaseVersion}
   
@@ -108,7 +108,7 @@
 

   
-    org.apache.logging.log4j.adapters
+    org.apache.logging.log4j
     log4j-jcl
     ${Log4jReleaseVersion}
   
@@ -121,7 +121,7 @@
 

   
-    org.apache.logging.log4j.adapters
+    org.apache.logging.log4j
     log4j-slf4j-impl
     ${Log4jReleaseVersion}
   

Modified: logging/log4j/log4j2/trunk/web/pom.xml
URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/web/pom.xml?rev=1466901&r1=1466900&r2=1466901&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/web/pom.xml (original)
+++ logging/log4j/log4j2/trunk/web/pom.xml Thu Apr 11 14:28:39 2013
@@ -23,7 +23,7 @@
     2.0-beta5-SNAPSHOT
     ../
   
-  org.apache.logging.log4j.adapters
+  org.apache.logging.log4j
   log4j-web
   jar
   Apache Log4j Web Adapters