[jbpm-commits] JBoss JBPM SVN: r2807 - in jbpm3/trunk/modules: identity and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Nov 7 10:48:57 EST 2008


Author: thomas.diesler at jboss.com
Date: 2008-11-07 10:48:56 -0500 (Fri, 07 Nov 2008)
New Revision: 2807

Modified:
   jbpm3/trunk/modules/core/pom.xml
   jbpm3/trunk/modules/identity/.classpath
   jbpm3/trunk/modules/identity/pom.xml
Log:
Disable schema creation as part of the build. Should be done more elegantly

Modified: jbpm3/trunk/modules/core/pom.xml
===================================================================
--- jbpm3/trunk/modules/core/pom.xml	2008-11-07 15:27:55 UTC (rev 2806)
+++ jbpm3/trunk/modules/core/pom.xml	2008-11-07 15:48:56 UTC (rev 2807)
@@ -149,14 +149,12 @@
           </execution>
         </executions>
       </plugin>
-
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
           <showDeprecation>false</showDeprecation>
         </configuration>
       </plugin>
-
       <plugin>
         <artifactId>maven-jar-plugin</artifactId>
         <configuration>
@@ -168,7 +166,6 @@
           </excludes>
         </configuration>
       </plugin>
-
       <plugin>
         <artifactId>maven-antrun-plugin</artifactId>
         <executions>
@@ -185,6 +182,7 @@
               </tasks>
             </configuration>
           </execution>
+          <!-- 
           <execution>
             <id>schema</id>
             <phase>process-test-resources</phase>
@@ -199,9 +197,9 @@
               </tasks>
             </configuration>
           </execution>
+          -->
         </executions>
       </plugin>
-
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>

Modified: jbpm3/trunk/modules/identity/.classpath
===================================================================
--- jbpm3/trunk/modules/identity/.classpath	2008-11-07 15:27:55 UTC (rev 2806)
+++ jbpm3/trunk/modules/identity/.classpath	2008-11-07 15:48:56 UTC (rev 2807)
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
 	<classpathentry kind="src" output="target/classes" path="src/main/java"/>
+	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
 	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
-	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
 	<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
 	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>

Modified: jbpm3/trunk/modules/identity/pom.xml
===================================================================
--- jbpm3/trunk/modules/identity/pom.xml	2008-11-07 15:27:55 UTC (rev 2806)
+++ jbpm3/trunk/modules/identity/pom.xml	2008-11-07 15:48:56 UTC (rev 2807)
@@ -55,7 +55,28 @@
    <!-- Plugins -->
   <build>
     <plugins>
+      <!-- 
       <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>schema</id>
+            <phase>process-test-resources</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <tasks>
+                <property name="test.classpath" refid="maven.test.classpath" />
+                <property name="log4j.output.dir" location="${basedir}/target" />
+                <ant antfile="scripts/antrun-jbpm-schema.xml" target="create" />
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      -->
+      <plugin>
         <artifactId>maven-assembly-plugin</artifactId>
         <executions>
           <execution>
@@ -88,33 +109,12 @@
           </execution>
         </executions>
       </plugin>
-
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
           <showDeprecation>false</showDeprecation>
         </configuration>
       </plugin>
-
-      <plugin>
-        <artifactId>maven-antrun-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>schema</id>
-            <phase>process-test-resources</phase>
-            <goals>
-              <goal>run</goal>
-            </goals>
-            <configuration>
-              <tasks>
-                <property name="test.classpath" refid="maven.test.classpath" />
-                <property name="log4j.output.dir" location="${basedir}/target" />
-                <ant antfile="scripts/antrun-jbpm-schema.xml" target="create" />
-              </tasks>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
     </plugins>
   </build>
 </project>
\ No newline at end of file




More information about the jbpm-commits mailing list