You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by jv...@apache.org on 2012/11/15 13:47:29 UTC

svn commit: r1409758 - in /mina/mina/trunk: core/pom.xml examples/pom.xml pom.xml

Author: jvermillard
Date: Thu Nov 15 12:47:28 2012
New Revision: 1409758

URL: http://svn.apache.org/viewvc?rev=1409758&view=rev
Log:
moved to log4j2

Modified:
    mina/mina/trunk/core/pom.xml
    mina/mina/trunk/examples/pom.xml
    mina/mina/trunk/pom.xml

Modified: mina/mina/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/mina/mina/trunk/core/pom.xml?rev=1409758&r1=1409757&r2=1409758&view=diff
==============================================================================
--- mina/mina/trunk/core/pom.xml (original)
+++ mina/mina/trunk/core/pom.xml Thu Nov 15 12:47:28 2012
@@ -32,6 +32,11 @@
             <artifactId>mockito-all</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.apache.logging.log4j.adapters</groupId>
+            <artifactId>slf4j-impl</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 </project>
 

Modified: mina/mina/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/mina/mina/trunk/examples/pom.xml?rev=1409758&r1=1409757&r2=1409758&view=diff
==============================================================================
--- mina/mina/trunk/examples/pom.xml (original)
+++ mina/mina/trunk/examples/pom.xml Thu Nov 15 12:47:28 2012
@@ -58,16 +58,11 @@
     </dependency>
     
     <dependency>
-      <groupId>log4j</groupId>
-      <artifactId>log4j</artifactId>
+      <groupId>org.apache.logging.log4j.adapters</groupId>
+      <artifactId>slf4j-impl</artifactId>
       <scope>runtime</scope>
     </dependency>
     
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
-        <scope>runtime</scope>
-    </dependency>
   </dependencies>
 </project>
 

Modified: mina/mina/trunk/pom.xml
URL: http://svn.apache.org/viewvc/mina/mina/trunk/pom.xml?rev=1409758&r1=1409757&r2=1409758&view=diff
==============================================================================
--- mina/mina/trunk/pom.xml (original)
+++ mina/mina/trunk/pom.xml Thu Nov 15 12:47:28 2012
@@ -87,11 +87,9 @@
     <!-- Dependencies versions ========================================== -->
     <version.guava>10.0.1</version.guava>
     <version.junit>4.10</version.junit>
-    <version.log4j>1.2.16</version.log4j>
+    <version.log4j>2.0-beta2</version.log4j>
     <version.mockito-all>1.9.0-rc1</version.mockito-all>
     <version.slf4j.api>1.6.4</version.slf4j.api>
-    <version.slf4j.jcl.over.slf4j>1.6.4</version.slf4j.jcl.over.slf4j>
-    <version.slf4j.log4j12>1.6.4</version.slf4j.log4j12>
 
     <!-- Plugins versions =============================================== -->
     <version.findbugs.maven.plugin>2.3.2</version.findbugs.maven.plugin>
@@ -143,16 +141,16 @@
         <version>${version.guava}</version>
       </dependency>
 
-      <dependency>
+      <!--dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-log4j12</artifactId>
         <version>${version.slf4j.log4j12}</version>
         <scope>test</scope>
-      </dependency>
+      </dependency-->
 
       <dependency>
-        <groupId>log4j</groupId>
-        <artifactId>log4j</artifactId>
+        <groupId>org.apache.logging.log4j.adapters</groupId>
+        <artifactId>slf4j-impl</artifactId>
         <version>${version.log4j}</version>
         <scope>test</scope>
       </dependency>
@@ -171,11 +169,11 @@
     </dependency>
 
     <!-- logging implementation used for unit tests -->
-    <dependency>
+    <!--dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
       <scope>test</scope>
-    </dependency>
+    </dependency-->
 
     <dependency>
       <groupId>junit</groupId>