You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wink.apache.org by bl...@apache.org on 2010/04/19 19:24:49 UTC

svn commit: r935675 - /incubator/wink/trunk/wink-assembly/pom.xml

Author: bluk
Date: Mon Apr 19 17:24:49 2010
New Revision: 935675

URL: http://svn.apache.org/viewvc?rev=935675&view=rev
Log:
Only run wink-assembly bits if CIBuild profile

Modified:
    incubator/wink/trunk/wink-assembly/pom.xml

Modified: incubator/wink/trunk/wink-assembly/pom.xml
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-assembly/pom.xml?rev=935675&r1=935674&r2=935675&view=diff
==============================================================================
--- incubator/wink/trunk/wink-assembly/pom.xml (original)
+++ incubator/wink/trunk/wink-assembly/pom.xml Mon Apr 19 17:24:49 2010
@@ -29,10 +29,6 @@
         <artifactId>wink</artifactId>
         <version>1.1-incubating-SNAPSHOT</version>
     </parent>
-    <modules>
-        <module>wink-assembly-aggregatejar</module>
-        <module>wink-assembly-dist</module>
-    </modules>
     <build>
         <pluginManagement>
             <plugins>
@@ -47,4 +43,21 @@
             </plugins>
         </pluginManagement>
     </build>
+    <profiles>
+        <profile>
+            <id>CIBuild</id>
+            <activation>
+                <activeByDefault>false</activeByDefault>
+                <property>
+                    <name>build</name>
+                    <value>CI</value>
+                </property>
+            </activation>
+            <modules>
+                <module>wink-assembly-aggregatejar</module>
+                <module>wink-assembly-aggregatejar-osgi</module>
+                <module>wink-assembly-dist</module>
+            </modules>
+        </profile>
+    </profiles>
 </project>