You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by ed...@apache.org on 2012/02/03 05:58:49 UTC

svn commit: r1240004 - in /incubator/hama/branches/0.4: core/pom.xml pom.xml

Author: edwardyoon
Date: Fri Feb  3 04:58:48 2012
New Revision: 1240004

URL: http://svn.apache.org/viewvc?rev=1240004&view=rev
Log:
Add slf dependencies to lib

Modified:
    incubator/hama/branches/0.4/core/pom.xml
    incubator/hama/branches/0.4/pom.xml

Modified: incubator/hama/branches/0.4/core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/hama/branches/0.4/core/pom.xml?rev=1240004&r1=1240003&r2=1240004&view=diff
==============================================================================
--- incubator/hama/branches/0.4/core/pom.xml (original)
+++ incubator/hama/branches/0.4/core/pom.xml Fri Feb  3 04:58:48 2012
@@ -95,6 +95,10 @@
       <artifactId>junit</artifactId>
       <scope>test</scope>
     </dependency>
+      <dependency>
+        <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-api</artifactId>
+      </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
@@ -126,6 +130,18 @@
               <outputDirectory>${project.parent.basedir}/lib</outputDirectory>
               <overWriteReleases>false</overWriteReleases>
               <overWriteSnapshots>true</overWriteSnapshots>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>org.slf4j</groupId>
+                  <artifactId>slf4j-log4j12</artifactId>
+                  <outputDirectory>${project.parent.basedir}/lib</outputDirectory>
+                </artifactItem>
+                <artifactItem>
+                  <groupId>org.slf4j</groupId>
+                  <artifactId>slf4j-api</artifactId>
+                  <outputDirectory>${project.parent.basedir}/lib</outputDirectory>
+                </artifactItem>
+              </artifactItems>
               <excludeTransitive>true</excludeTransitive>
               <fileMode>755</fileMode>
             </configuration>

Modified: incubator/hama/branches/0.4/pom.xml
URL: http://svn.apache.org/viewvc/incubator/hama/branches/0.4/pom.xml?rev=1240004&r1=1240003&r2=1240004&view=diff
==============================================================================
--- incubator/hama/branches/0.4/pom.xml (original)
+++ incubator/hama/branches/0.4/pom.xml Fri Feb  3 04:58:48 2012
@@ -91,7 +91,7 @@
     <hadoop.version>0.20.2</hadoop.version>
     <jetty.version>6.1.14</jetty.version>
     <junit.version>4.8.1</junit.version>
-    <slf4j-log4j12.version>1.5.2</slf4j-log4j12.version>
+    <slf4j.version>1.5.8</slf4j.version>
     <servlet-api.version>6.0.32</servlet-api.version>
     <log4j.version>1.2.16</log4j.version>
     <zookeeper.version>3.3.3</zookeeper.version>
@@ -167,8 +167,13 @@
       </dependency>
       <dependency>
         <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-api</artifactId>
+        <version>${slf4j.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.slf4j</groupId>
         <artifactId>slf4j-log4j12</artifactId>
-        <version>${slf4j-log4j12.version}</version>
+        <version>${slf4j.version}</version>
       </dependency>
       <dependency>
         <groupId>log4j</groupId>