You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@giraph.apache.org by ma...@apache.org on 2012/11/01 21:36:59 UTC

svn commit: r1404751 - in /giraph/trunk: CHANGELOG giraph/pom.xml pom.xml

Author: maja
Date: Thu Nov  1 20:36:59 2012
New Revision: 1404751

URL: http://svn.apache.org/viewvc?rev=1404751&view=rev
Log:
GIRAPH-398: Missing a dependency

Modified:
    giraph/trunk/CHANGELOG
    giraph/trunk/giraph/pom.xml
    giraph/trunk/pom.xml

Modified: giraph/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/giraph/trunk/CHANGELOG?rev=1404751&r1=1404750&r2=1404751&view=diff
==============================================================================
--- giraph/trunk/CHANGELOG (original)
+++ giraph/trunk/CHANGELOG Thu Nov  1 20:36:59 2012
@@ -1,6 +1,8 @@
 Giraph Change Log
 
 Release 0.2.0 - unreleased
+  GIRAPH-398: Missing a dependency (nitay via majakabiljo)
+
   GIRAPH-394: mapreduce.job.user.classpath.first hadoop option typo
   (nitay via aching)
 

Modified: giraph/trunk/giraph/pom.xml
URL: http://svn.apache.org/viewvc/giraph/trunk/giraph/pom.xml?rev=1404751&r1=1404750&r2=1404751&view=diff
==============================================================================
--- giraph/trunk/giraph/pom.xml (original)
+++ giraph/trunk/giraph/pom.xml Thu Nov  1 20:36:59 2012
@@ -287,6 +287,10 @@ under the License.
       <groupId>org.json</groupId>
       <artifactId>json</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+    </dependency>
 
     <!-- test dependencies. sorted lexicographically. -->
     <dependency>

Modified: giraph/trunk/pom.xml
URL: http://svn.apache.org/viewvc/giraph/trunk/pom.xml?rev=1404751&r1=1404750&r2=1404751&view=diff
==============================================================================
--- giraph/trunk/pom.xml (original)
+++ giraph/trunk/pom.xml Thu Nov  1 20:36:59 2012
@@ -734,6 +734,11 @@ under the License.
         <version>12.0</version>
       </dependency>
       <dependency>
+        <groupId>com.yammer.metrics</groupId>
+        <artifactId>metrics-core</artifactId>
+        <version>2.1.2</version>
+      </dependency>
+      <dependency>
         <groupId>commons-io</groupId>
         <artifactId>commons-io</artifactId>
         <version>1.3.2</version>
@@ -815,9 +820,9 @@ under the License.
         <version>20090211</version>
       </dependency>
       <dependency>
-        <groupId>com.yammer.metrics</groupId>
-        <artifactId>metrics-core</artifactId>
-        <version>2.1.2</version>
+        <groupId>org.slf4j</groupId>
+        <artifactId>slf4j-log4j12</artifactId>
+        <version>1.7.2</version>
       </dependency>
 
       <!-- provided dependencies. sorted lexicographically. -->