You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by le...@apache.org on 2012/08/20 13:04:37 UTC

svn commit: r1374969 - in /gora/trunk: gora-accumulo/pom.xml gora-cassandra/pom.xml gora-core/pom.xml gora-hbase/pom.xml gora-sql/pom.xml gora-tutorial/pom.xml pom.xml

Author: lewismc
Date: Mon Aug 20 11:04:36 2012
New Revision: 1374969

URL: http://svn.apache.org/viewvc?rev=1374969&view=rev
Log:
GORA-125 Clean up logging libraries v2

Modified:
    gora/trunk/gora-accumulo/pom.xml
    gora/trunk/gora-cassandra/pom.xml
    gora/trunk/gora-core/pom.xml
    gora/trunk/gora-hbase/pom.xml
    gora/trunk/gora-sql/pom.xml
    gora/trunk/gora-tutorial/pom.xml
    gora/trunk/pom.xml

Modified: gora/trunk/gora-accumulo/pom.xml
URL: http://svn.apache.org/viewvc/gora/trunk/gora-accumulo/pom.xml?rev=1374969&r1=1374968&r2=1374969&view=diff
==============================================================================
--- gora/trunk/gora-accumulo/pom.xml (original)
+++ gora/trunk/gora-accumulo/pom.xml Mon Aug 20 11:04:36 2012
@@ -123,6 +123,8 @@
             <artifactId>avro</artifactId>
         </dependency>
 
+
+        <!-- Logging Dependencies -->
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
@@ -133,6 +135,16 @@
 	          </exclusion>
             </exclusions>
         </dependency>
+        
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-log4j12</artifactId>
+        </dependency>
+            
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
 
         <!-- Testing Dependencies -->
         <dependency>

Modified: gora/trunk/gora-cassandra/pom.xml
URL: http://svn.apache.org/viewvc/gora/trunk/gora-cassandra/pom.xml?rev=1374969&r1=1374968&r2=1374969&view=diff
==============================================================================
--- gora/trunk/gora-cassandra/pom.xml (original)
+++ gora/trunk/gora-cassandra/pom.xml Mon Aug 20 11:04:36 2012
@@ -159,6 +159,11 @@
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
         </dependency>
+        
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
 
         <dependency>
             <groupId>log4j</groupId>

Modified: gora/trunk/gora-core/pom.xml
URL: http://svn.apache.org/viewvc/gora/trunk/gora-core/pom.xml?rev=1374969&r1=1374968&r2=1374969&view=diff
==============================================================================
--- gora/trunk/gora-core/pom.xml (original)
+++ gora/trunk/gora-core/pom.xml Mon Aug 20 11:04:36 2012
@@ -127,6 +127,11 @@
              </exclusion>
             </exclusions>
         </dependency>
+        
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
 
         <!-- Testing Dependencies -->
         <dependency>
@@ -138,7 +143,6 @@
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
-            <version>${slf4j.version}</version>
             <scope>test</scope>
         </dependency>
 

Modified: gora/trunk/gora-hbase/pom.xml
URL: http://svn.apache.org/viewvc/gora/trunk/gora-hbase/pom.xml?rev=1374969&r1=1374968&r2=1374969&view=diff
==============================================================================
--- gora/trunk/gora-hbase/pom.xml (original)
+++ gora/trunk/gora-hbase/pom.xml Mon Aug 20 11:04:36 2012
@@ -138,6 +138,11 @@
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
         </dependency>
+        
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
 
         <dependency>
             <groupId>log4j</groupId>

Modified: gora/trunk/gora-sql/pom.xml
URL: http://svn.apache.org/viewvc/gora/trunk/gora-sql/pom.xml?rev=1374969&r1=1374968&r2=1374969&view=diff
==============================================================================
--- gora/trunk/gora-sql/pom.xml (original)
+++ gora/trunk/gora-sql/pom.xml Mon Aug 20 11:04:36 2012
@@ -150,6 +150,11 @@
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
         </dependency>
+        
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
 
         <dependency>
             <groupId>log4j</groupId>

Modified: gora/trunk/gora-tutorial/pom.xml
URL: http://svn.apache.org/viewvc/gora/trunk/gora-tutorial/pom.xml?rev=1374969&r1=1374968&r2=1374969&view=diff
==============================================================================
--- gora/trunk/gora-tutorial/pom.xml (original)
+++ gora/trunk/gora-tutorial/pom.xml Mon Aug 20 11:04:36 2012
@@ -138,6 +138,11 @@
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
         </dependency>
+        
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
 
         <dependency>
             <groupId>log4j</groupId>

Modified: gora/trunk/pom.xml
URL: http://svn.apache.org/viewvc/gora/trunk/pom.xml?rev=1374969&r1=1374968&r2=1374969&view=diff
==============================================================================
--- gora/trunk/pom.xml (original)
+++ gora/trunk/pom.xml Mon Aug 20 11:04:36 2012
@@ -829,6 +829,12 @@
                 <artifactId>slf4j-log4j12</artifactId>
                 <version>${slf4j.version}</version>
             </dependency>
+            
+            <dependency>
+                <groupId>org.slf4j</groupId>
+                <artifactId>slf4j-api</artifactId>
+                <version>${slf4j.version}</version>
+            </dependency>
 
             <dependency>
                 <groupId>log4j</groupId>