You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whirr.apache.org by fr...@apache.org on 2012/05/09 13:53:24 UTC

svn commit: r1336114 - in /whirr/trunk: cli/pom.xml core/pom.xml pom.xml

Author: frankscholten
Date: Wed May  9 11:53:23 2012
New Revision: 1336114

URL: http://svn.apache.org/viewvc?rev=1336114&view=rev
Log:
WHIRR-465. Add solr as a service. Added missing commons-compress dependency and added solr to whirr-cli.

Modified:
    whirr/trunk/cli/pom.xml
    whirr/trunk/core/pom.xml
    whirr/trunk/pom.xml

Modified: whirr/trunk/cli/pom.xml
URL: http://svn.apache.org/viewvc/whirr/trunk/cli/pom.xml?rev=1336114&r1=1336113&r2=1336114&view=diff
==============================================================================
--- whirr/trunk/cli/pom.xml (original)
+++ whirr/trunk/cli/pom.xml Wed May  9 11:53:23 2012
@@ -111,6 +111,11 @@
       <version>${project.version}</version>
     </dependency>
     <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>whirr-solr</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
     </dependency>

Modified: whirr/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/whirr/trunk/core/pom.xml?rev=1336114&r1=1336113&r2=1336114&view=diff
==============================================================================
--- whirr/trunk/core/pom.xml (original)
+++ whirr/trunk/core/pom.xml Wed May  9 11:53:23 2012
@@ -106,6 +106,10 @@
       <artifactId>commons-codec</artifactId>
     </dependency>
     <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
     </dependency>

Modified: whirr/trunk/pom.xml
URL: http://svn.apache.org/viewvc/whirr/trunk/pom.xml?rev=1336114&r1=1336113&r2=1336114&view=diff
==============================================================================
--- whirr/trunk/pom.xml (original)
+++ whirr/trunk/pom.xml Wed May  9 11:53:23 2012
@@ -55,12 +55,14 @@
     <module>services/chef</module>
     <module>services/mahout</module>
     <module>services/pig</module>
+    <module>services/solr</module>
     <module>platforms/karaf</module>
   </modules>
 
   <properties>
     <commons.codec.version>1.6</commons.codec.version>
     <commons.configuration.version>1.7</commons.configuration.version>
+    <commons.compress.version>1.4</commons.compress.version>
     <commons.httpclient.version>3.1</commons.httpclient.version>
     <commons.io.version>1.4</commons.io.version>
     <common-ssl.version>0.3.11</common-ssl.version>
@@ -179,6 +181,11 @@
         <version>${commons.configuration.version}</version>
       </dependency>
       <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-compress</artifactId>
+        <version>${commons.compress.version}</version>
+      </dependency>
+      <dependency>
         <groupId>commons-io</groupId>
         <artifactId>commons-io</artifactId>
         <version>${commons.io.version}</version>
@@ -189,6 +196,11 @@
         <version>${commons.codec.version}</version>
       </dependency>
       <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons.compress.version</artifactId>
+        <version>${commons.compress.version}</version>
+      </dependency>
+      <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-api</artifactId>
         <version>${slf4j.version}</version>