You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whirr.apache.org by as...@apache.org on 2012/02/20 23:10:51 UTC

svn commit: r1291485 - in /whirr/branches/branch-0.7: CHANGES.txt services/hama/pom.xml services/hbase/pom.xml services/zookeeper/pom.xml

Author: asavu
Date: Mon Feb 20 22:10:51 2012
New Revision: 1291485

URL: http://svn.apache.org/viewvc?rev=1291485&view=rev
Log:
WHIRR-367. Wrong groupId for zookeeper (Joe Crobak via asavu)

Modified:
    whirr/branches/branch-0.7/CHANGES.txt
    whirr/branches/branch-0.7/services/hama/pom.xml
    whirr/branches/branch-0.7/services/hbase/pom.xml
    whirr/branches/branch-0.7/services/zookeeper/pom.xml

Modified: whirr/branches/branch-0.7/CHANGES.txt
URL: http://svn.apache.org/viewvc/whirr/branches/branch-0.7/CHANGES.txt?rev=1291485&r1=1291484&r2=1291485&view=diff
==============================================================================
--- whirr/branches/branch-0.7/CHANGES.txt (original)
+++ whirr/branches/branch-0.7/CHANGES.txt Mon Feb 20 22:10:51 2012
@@ -20,6 +20,8 @@ Release 0.7.1
     WHIRR-495. bin/whirr is does not have executable permissions 
     in the 0.7.0 pre-built download (asavu)
 
+    WHIRR-367. Wrong groupId for zookeeper (Joe Crobak via asavu)
+
 Release 0.7.0 - 2011-12-11
 
   NEW FEATURES

Modified: whirr/branches/branch-0.7/services/hama/pom.xml
URL: http://svn.apache.org/viewvc/whirr/branches/branch-0.7/services/hama/pom.xml?rev=1291485&r1=1291484&r2=1291485&view=diff
==============================================================================
--- whirr/branches/branch-0.7/services/hama/pom.xml (original)
+++ whirr/branches/branch-0.7/services/hama/pom.xml Mon Feb 20 22:10:51 2012
@@ -49,6 +49,16 @@
       <groupId>org.apache.hama</groupId>
       <artifactId>hama-core</artifactId>
       <version>${hama.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.hadoop</groupId>
+          <artifactId>zookeeper</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.mortbay.jetty</groupId>
+          <artifactId>jsp-2.1</artifactId>
+        </exclusion>
+      </exclusions>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -104,7 +114,7 @@
       <scope>test</scope>
     </dependency>
     <dependency>
-      <groupId>org.apache.hadoop</groupId>
+      <groupId>org.apache.zookeeper</groupId>
       <artifactId>zookeeper</artifactId>
       <version>3.3.1</version>
       <scope>test</scope>

Modified: whirr/branches/branch-0.7/services/hbase/pom.xml
URL: http://svn.apache.org/viewvc/whirr/branches/branch-0.7/services/hbase/pom.xml?rev=1291485&r1=1291484&r2=1291485&view=diff
==============================================================================
--- whirr/branches/branch-0.7/services/hbase/pom.xml (original)
+++ whirr/branches/branch-0.7/services/hbase/pom.xml Mon Feb 20 22:10:51 2012
@@ -86,7 +86,7 @@
       <scope>test</scope>
     </dependency>
     <dependency>
-      <groupId>org.apache.hadoop</groupId>
+      <groupId>org.apache.zookeeper</groupId>
       <artifactId>zookeeper</artifactId>
       <version>3.3.1</version>
       <scope>test</scope>

Modified: whirr/branches/branch-0.7/services/zookeeper/pom.xml
URL: http://svn.apache.org/viewvc/whirr/branches/branch-0.7/services/zookeeper/pom.xml?rev=1291485&r1=1291484&r2=1291485&view=diff
==============================================================================
--- whirr/branches/branch-0.7/services/zookeeper/pom.xml (original)
+++ whirr/branches/branch-0.7/services/zookeeper/pom.xml Mon Feb 20 22:10:51 2012
@@ -72,7 +72,7 @@
       <scope>test</scope>
     </dependency>
     <dependency>
-      <groupId>org.apache.hadoop</groupId>
+      <groupId>org.apache.zookeeper</groupId>
       <artifactId>zookeeper</artifactId>
       <version>3.3.1</version>
       <scope>test</scope>