[jbpm-commits] JBoss JBPM SVN: r2864 - in jbpm3/branches/jbpm-3.3.0.GA/modules: examples and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Nov 10 12:14:48 EST 2008


Author: thomas.diesler at jboss.com
Date: 2008-11-10 12:14:47 -0500 (Mon, 10 Nov 2008)
New Revision: 2864

Modified:
   jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml
   jbpm3/branches/jbpm-3.3.0.GA/modules/examples/pom.xml
Log:
[JBPM-1827] Investigate example test failures against Sybase

Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml	2008-11-10 16:46:05 UTC (rev 2863)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/core/pom.xml	2008-11-10 17:14:47 UTC (rev 2864)
@@ -347,6 +347,7 @@
                 <!-- [JBPM-1810] Fix clean, drop, create schema with JbpmSchema  -->
                 <exclude>org/jbpm/db/JbpmSchemaDbTest.java</exclude>
 
+                <!-- [JBPM-1824] Investigate core test failures against Sybase -->
                 <exclude>org/jbpm/db/DeleteProcessInstanceDbTest.java</exclude>
                 <exclude>org/jbpm/graph/exe/SubProcessPlusConcurrencyDbTest.java</exclude>
                 <exclude>org/jbpm/jbpm1072/JBPM1072Test.java</exclude>

Modified: jbpm3/branches/jbpm-3.3.0.GA/modules/examples/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.3.0.GA/modules/examples/pom.xml	2008-11-10 16:46:05 UTC (rev 2863)
+++ jbpm3/branches/jbpm-3.3.0.GA/modules/examples/pom.xml	2008-11-10 17:14:47 UTC (rev 2864)
@@ -98,12 +98,36 @@
           </execution>
         </executions>
       </plugin>
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-        </configuration>
-      </plugin>
     </plugins>
   </build>
 
+  <profiles>
+    <!-- 
+    Name:  sybase
+    Descr: Sybase Database Setup   
+    -->
+    <profile>
+      <id>sybase</id>
+      <activation>
+        <property>
+          <name>database</name>
+          <value>sybase</value>
+        </property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <excludes>
+                <!-- [JBPM-1827] Investigate example test failures against Sybase -->
+                <exclude>org/jbpm/examples/taskinstance/CustomTaskInstanceTest.java</exclude>
+              </excludes>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+  
 </project>




More information about the jbpm-commits mailing list