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/05/16 08:21:17 UTC

svn commit: r1339022 - in /whirr/trunk: CHANGES.txt pom.xml

Author: asavu
Date: Wed May 16 06:21:16 2012
New Revision: 1339022

URL: http://svn.apache.org/viewvc?rev=1339022&view=rev
Log:
WHIRR-591. Maven profile for Karaf itests (inactive by default) (asavu)

Modified:
    whirr/trunk/CHANGES.txt
    whirr/trunk/pom.xml

Modified: whirr/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/whirr/trunk/CHANGES.txt?rev=1339022&r1=1339021&r2=1339022&view=diff
==============================================================================
--- whirr/trunk/CHANGES.txt (original)
+++ whirr/trunk/CHANGES.txt Wed May 16 06:21:16 2012
@@ -90,6 +90,8 @@ Trunk (unreleased changes)
 
     WHIRR-504. Upgrade to jclouds 1.4.0 (Adrian Cole, Andrei Savu)
 
+    WHIRR-591. Maven profile for Karaf itests (inactive by default) (asavu)
+
   BUG FIXES
 
     WHIRR-582. Yarn service does not build in IntelliJ because of missing Hadoop test dependencies (Frank Scholten)

Modified: whirr/trunk/pom.xml
URL: http://svn.apache.org/viewvc/whirr/trunk/pom.xml?rev=1339022&r1=1339021&r2=1339022&view=diff
==============================================================================
--- whirr/trunk/pom.xml (original)
+++ whirr/trunk/pom.xml Wed May 16 06:21:16 2012
@@ -56,7 +56,6 @@
     <module>services/mahout</module>
     <module>services/pig</module>
     <module>services/solr</module>
-    <module>platforms/karaf</module>
   </modules>
 
   <properties>
@@ -243,14 +242,6 @@
         <artifactId>dnsjava</artifactId>
         <version>${dnsjava.version}</version>
       </dependency>
-      <dependency>
-        <groupId>org.apache.whirr.karaf</groupId>
-        <artifactId>apache-whirr</artifactId>
-        <version>${project.version}</version>
-        <type>xml</type>
-        <classifier>features</classifier>
-        <scope>test</scope>
-      </dependency>
     </dependencies>
   </dependencyManagement>
 
@@ -802,5 +793,24 @@
         <module>services/voldemort</module>
       </modules>
     </profile>
+    <profile>
+      <!-- Activate this profile to build & test OSGi support -->
+      <id>osgi</id>
+      <modules>
+        <module>platforms/karaf</module>
+      </modules>
+      <dependencyManagement>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.whirr.karaf</groupId>
+            <artifactId>apache-whirr</artifactId>
+            <version>${project.version}</version>
+            <type>xml</type>
+            <classifier>features</classifier>
+            <scope>test</scope>
+          </dependency>
+        </dependencies>
+      </dependencyManagement>
+    </profile>
   </profiles>
 </project>