[jbpm-commits] JBoss JBPM SVN: r2375 - in jbpm4/trunk/modules: pvm and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Sep 25 02:49:35 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-09-25 02:49:35 -0400 (Thu, 25 Sep 2008)
New Revision: 2375

Modified:
   jbpm4/trunk/modules/jpdl/pom.xml
   jbpm4/trunk/modules/pvm/pom.xml
Log:
WIP, hudson does not respect mvn -o -DtestFailureIgnore=true test

Modified: jbpm4/trunk/modules/jpdl/pom.xml
===================================================================
--- jbpm4/trunk/modules/jpdl/pom.xml	2008-09-25 06:33:17 UTC (rev 2374)
+++ jbpm4/trunk/modules/jpdl/pom.xml	2008-09-25 06:49:35 UTC (rev 2375)
@@ -31,8 +31,6 @@
 
   <!-- Properties -->
   <properties>
-    <surefire.gc.args>-XX:MaxPermSize=128m</surefire.gc.args>
-    <surefire.jdwp.args>-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</surefire.jdwp.args>
   </properties>
 
   <!-- Dependencies -->
@@ -52,12 +50,6 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <argLine>${surefire.jvm.args}</argLine>
-        </configuration>
-      </plugin>
-      <plugin>
         <artifactId>maven-antrun-plugin</artifactId>
         <executions>
           <execution>
@@ -94,28 +86,6 @@
 
   <!-- Profiles -->
   <profiles>
-    <profile>
-      <id>debug</id>
-      <activation>
-        <property>
-          <name>debug</name>
-        </property>
-      </activation>
-      <properties>
-        <surefire.jvm.args>${surefire.jdwp.args} ${surefire.gc.args}</surefire.jvm.args>
-      </properties>
-    </profile>
-    <profile>
-      <id>no-debug</id>
-      <activation>
-        <property>
-          <name>!debug</name>
-        </property>
-      </activation>
-      <properties>
-        <surefire.jvm.args>${surefire.gc.args}</surefire.jvm.args>
-      </properties>
-    </profile>
   </profiles>
 
 </project>
\ No newline at end of file

Modified: jbpm4/trunk/modules/pvm/pom.xml
===================================================================
--- jbpm4/trunk/modules/pvm/pom.xml	2008-09-25 06:33:17 UTC (rev 2374)
+++ jbpm4/trunk/modules/pvm/pom.xml	2008-09-25 06:49:35 UTC (rev 2375)
@@ -33,8 +33,6 @@
   <!-- Properties -->
   <properties>
     <table.prefix>JBPM_</table.prefix>
-    <surefire.gc.args>-XX:MaxPermSize=128m</surefire.gc.args>
-    <surefire.jdwp.args>-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</surefire.jdwp.args>
     <test.resources.directory>${project.build.directory}/test-resources</test.resources.directory>
   </properties>
 
@@ -120,32 +118,6 @@
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <showDeprecation>false</showDeprecation>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-ear-plugin</artifactId>
-        <configuration>
-          <applicationXml>${basedir}/src/main/etc/ear/META-INF/application.xml</applicationXml>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <argLine>${surefire.jvm.args}</argLine>
-          <excludes>
-            <exclude>org/jbpm/pvm/api/timer/*Test.java</exclude>
-            <exclude>org/jbpm/pvm/enterprise/*Test.java</exclude>
-            <exclude>org/jbpm/pvm/internal/db/model/HibernateJobDbSessionTest.java</exclude>
-            <exclude>org/jbpm/pvm/internal/expr/*Test.java</exclude>
-            <exclude>org/jbpm/pvm/internal/xml/*Test.java</exclude>
-            <exclude>org/jbpm/pvm/samples/**/*Test.java</exclude>
-          </excludes>
-        </configuration>
-      </plugin>
-      <plugin>
         <artifactId>maven-antrun-plugin</artifactId>
         <executions>
           <execution>
@@ -174,11 +146,6 @@
               </tasks>
             </configuration>
           </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <artifactId>maven-antrun-plugin</artifactId>
-        <executions>
           <execution>
             <id>generate-wirexsd-doc</id>
             <phase>package</phase>
@@ -208,33 +175,36 @@
           </dependency>
         </dependencies>
       </plugin>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <showDeprecation>false</showDeprecation>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-ear-plugin</artifactId>
+        <configuration>
+          <applicationXml>${basedir}/src/main/etc/ear/META-INF/application.xml</applicationXml>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>org/jbpm/pvm/api/timer/*Test.java</exclude>
+            <exclude>org/jbpm/pvm/enterprise/*Test.java</exclude>
+            <exclude>org/jbpm/pvm/internal/db/model/HibernateJobDbSessionTest.java</exclude>
+            <exclude>org/jbpm/pvm/internal/expr/*Test.java</exclude>
+            <exclude>org/jbpm/pvm/internal/xml/*Test.java</exclude>
+            <exclude>org/jbpm/pvm/samples/**/*Test.java</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 
-  <!-- ### PROFILES ####################################################### -->
+  <!-- Profiles -->
   <profiles>
-    <profile>
-      <id>debug</id>
-      <activation>
-        <property>
-          <name>debug</name>
-        </property>
-      </activation>
-      <properties>
-        <surefire.jvm.args>${surefire.jdwp.args} ${surefire.gc.args}</surefire.jvm.args>
-      </properties>
-    </profile>
-    <profile>
-      <id>no-debug</id>
-      <activation>
-        <property>
-          <name>!debug</name>
-        </property>
-      </activation>
-      <properties>
-        <surefire.jvm.args>${surefire.gc.args}</surefire.jvm.args>
-      </properties>
-    </profile>
   </profiles>
 
 </project>
\ No newline at end of file




More information about the jbpm-commits mailing list