[jbpm-commits] JBoss JBPM SVN: r6306 - jbpm3/branches/jbpm-3.2-soa/modules/enterprise.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri May 7 20:47:28 EDT 2010


Author: alex.guizar at jboss.com
Date: 2010-05-07 20:47:28 -0400 (Fri, 07 May 2010)
New Revision: 6306

Modified:
   jbpm3/branches/jbpm-3.2-soa/modules/enterprise/pom.xml
Log:
exclude jbpm-1952 test with mysql and all enterprise tests with db2

Modified: jbpm3/branches/jbpm-3.2-soa/modules/enterprise/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/enterprise/pom.xml	2010-05-07 18:21:56 UTC (rev 6305)
+++ jbpm3/branches/jbpm-3.2-soa/modules/enterprise/pom.xml	2010-05-08 00:47:28 UTC (rev 6306)
@@ -245,8 +245,33 @@
           <plugin>
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
+              <!-- all enterprise tests fail with db2 under jboss 5.x -->
+              <skipTests>true</skipTests>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <!-- 
+      Name: mysql
+      Desc: MySQL test exclusions
+    -->
+    <profile>
+      <id>db2</id>
+      <activation>
+        <property>
+          <name>database</name>
+          <value>mysql</value>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
               <excludes>
-                <!-- [JBPM-1952] test times out under DB2 -->
+                <!-- [JBPM-1952] test times out with mysql -->
                 <exclude>org/jbpm/enterprise/jbpm1952/JBPM1952Test.java</exclude>
               </excludes>
             </configuration>



More information about the jbpm-commits mailing list