You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dw...@apache.org on 2010/02/05 19:00:03 UTC

svn commit: r907023 - /geronimo/plugins/openjpa2/branches/2.1/pom.xml

Author: dwoods
Date: Fri Feb  5 18:00:03 2010
New Revision: 907023

URL: http://svn.apache.org/viewvc?rev=907023&view=rev
Log:
exclude testsuite on normal/release builds

Modified:
    geronimo/plugins/openjpa2/branches/2.1/pom.xml

Modified: geronimo/plugins/openjpa2/branches/2.1/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/plugins/openjpa2/branches/2.1/pom.xml?rev=907023&r1=907022&r2=907023&view=diff
==============================================================================
--- geronimo/plugins/openjpa2/branches/2.1/pom.xml (original)
+++ geronimo/plugins/openjpa2/branches/2.1/pom.xml Fri Feb  5 18:00:03 2010
@@ -254,14 +254,33 @@
         </dependency>
     </dependencies>
 
-    <modules>
-        <module>geronimo-openjpa2</module>
-        <module>openjpa2</module>
-        <module>geronimo-persistence-jpa20</module>
-        <module>geronimo-persistence-jpa20-builder</module>
-        <module>persistence-jpa20-deployer</module>
-        <module>jpa-tests</module>
-    </modules>
+    <profiles>
+        <profile>
+            <id>default</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <modules>
+                <module>geronimo-openjpa2</module>
+                <module>openjpa2</module>
+                <module>geronimo-persistence-jpa20</module>
+                <module>geronimo-persistence-jpa20-builder</module>
+                <module>persistence-jpa20-deployer</module>
+            </modules>
+        </profile>
+
+        <profile>
+            <id>it</id>
+            <modules>
+                <module>geronimo-openjpa2</module>
+                <module>openjpa2</module>
+                <module>geronimo-persistence-jpa20</module>
+                <module>geronimo-persistence-jpa20-builder</module>
+                <module>persistence-jpa20-deployer</module>
+                <module>jpa-tests</module>
+            </modules>
+        </profile>
+    </profiles>
 
     <build>
         <defaultGoal>install</defaultGoal>