[jbpm-commits] JBoss JBPM SVN: r5710 - in jbpm4/trunk/modules: migration and 2 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Oct 7 09:53:49 EDT 2009


Author: tom.baeyens at jboss.com
Date: 2009-10-07 09:53:48 -0400 (Wed, 07 Oct 2009)
New Revision: 5710

Modified:
   jbpm4/trunk/modules/jpdl/pom.xml
   jbpm4/trunk/modules/migration/pom.xml
   jbpm4/trunk/modules/pvm/pom.xml
   jbpm4/trunk/modules/test-pojo/pom.xml
Log:
fixed exclusion of modules in case of db tests

Modified: jbpm4/trunk/modules/jpdl/pom.xml
===================================================================
--- jbpm4/trunk/modules/jpdl/pom.xml	2009-10-07 12:33:10 UTC (rev 5709)
+++ jbpm4/trunk/modules/jpdl/pom.xml	2009-10-07 13:53:48 UTC (rev 5710)
@@ -50,29 +50,15 @@
     </dependency>
   </dependencies>
 
-  <!-- Plugins -->
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <excludes>
-            <exclude>org/jbpm/test/xml/DbGenTest.java</exclude>            
-          </excludes>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-
   <!-- Profiles -->
   <profiles>
     <!-- skip tests if this is an integration test run 
     (only examples and test-db are part of the integration test runs) -->
     <profile>
-      <id>integration.test</id>
+      <id>skip.tests.during.database.testrun</id>
       <activation>
         <property>
-          <name>jboss.bind.address</name>
+          <name>database</name>
         </property>
       </activation>
       <properties>

Modified: jbpm4/trunk/modules/migration/pom.xml
===================================================================
--- jbpm4/trunk/modules/migration/pom.xml	2009-10-07 12:33:10 UTC (rev 5709)
+++ jbpm4/trunk/modules/migration/pom.xml	2009-10-07 13:53:48 UTC (rev 5710)
@@ -76,18 +76,22 @@
 
 	<!-- Profiles -->
 	<profiles>
+	
+    <!-- skip tests if this is an integration test run 
+    (only examples and test-db are part of the integration test runs) -->
+    <profile>
+      <id>skip.tests.during.database.testrun</id>
+      <activation>
+        <property>
+          <name>database</name>
+        </property>
+      </activation>
+      <properties>
+        <skipTests>true</skipTests>
+      </properties>
+    </profile>
+
 		<profile>
-			<id>integration.test</id>
-			<activation>
-				<property>
-					<name>jboss.bind.address</name>
-				</property>
-			</activation>
-			<properties>
-				<skipTests>true</skipTests>
-			</properties>
-		</profile>
-		<profile>
 			<id>distro</id>
 			<build>
 				<plugins>

Modified: jbpm4/trunk/modules/pvm/pom.xml
===================================================================
--- jbpm4/trunk/modules/pvm/pom.xml	2009-10-07 12:33:10 UTC (rev 5709)
+++ jbpm4/trunk/modules/pvm/pom.xml	2009-10-07 13:53:48 UTC (rev 5710)
@@ -201,10 +201,10 @@
     <!-- skip tests if this is an integration test run 
     (only examples and test-db are part of the integration test runs) -->
     <profile>
-      <id>integration.test</id>
+      <id>skip.tests.during.database.testrun</id>
       <activation>
         <property>
-          <name>jboss.bind.address</name>
+          <name>database</name>
         </property>
       </activation>
       <properties>
@@ -212,5 +212,5 @@
       </properties>
     </profile>
   </profiles>
-  
+
 </project>

Modified: jbpm4/trunk/modules/test-pojo/pom.xml
===================================================================
--- jbpm4/trunk/modules/test-pojo/pom.xml	2009-10-07 12:33:10 UTC (rev 5709)
+++ jbpm4/trunk/modules/test-pojo/pom.xml	2009-10-07 13:53:48 UTC (rev 5710)
@@ -65,15 +65,13 @@
   </build>
   
   <profiles>
-    <!-- 
-    skip tests if this is an integration test run 
-    (only examples and test-db are part of the integration test runs) 
-    -->
+    <!-- skip tests if this is an integration test run 
+    (only examples and test-db are part of the integration test runs) -->
     <profile>
-      <id>integration.test</id>
+      <id>skip.tests.during.database.testrun</id>
       <activation>
         <property>
-          <name>jboss.bind.address</name>
+          <name>database</name>
         </property>
       </activation>
       <properties>



More information about the jbpm-commits mailing list