[jbpm-commits] JBoss JBPM SVN: r6664 - in jbpm3/branches/jbpm-3.2-soa: ci and 10 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Sep 22 05:14:33 EDT 2010


Author: alex.guizar at jboss.com
Date: 2010-09-22 05:14:32 -0400 (Wed, 22 Sep 2010)
New Revision: 6664

Added:
   jbpm3/branches/jbpm-3.2-soa/core/
   jbpm3/branches/jbpm-3.2-soa/db/
   jbpm3/branches/jbpm-3.2-soa/distribution/
   jbpm3/branches/jbpm-3.2-soa/enterprise/
   jbpm3/branches/jbpm-3.2-soa/examples/
   jbpm3/branches/jbpm-3.2-soa/identity/
   jbpm3/branches/jbpm-3.2-soa/simulation/
   jbpm3/branches/jbpm-3.2-soa/soa-distribution/
   jbpm3/branches/jbpm-3.2-soa/userguide/
Removed:
   jbpm3/branches/jbpm-3.2-soa/modules/core/
   jbpm3/branches/jbpm-3.2-soa/modules/db/
   jbpm3/branches/jbpm-3.2-soa/modules/distribution/
   jbpm3/branches/jbpm-3.2-soa/modules/enterprise/
   jbpm3/branches/jbpm-3.2-soa/modules/examples/
   jbpm3/branches/jbpm-3.2-soa/modules/identity/
   jbpm3/branches/jbpm-3.2-soa/modules/simulation/
   jbpm3/branches/jbpm-3.2-soa/modules/soa-distribution/
   jbpm3/branches/jbpm-3.2-soa/modules/userguide/
Modified:
   jbpm3/branches/jbpm-3.2-soa/ci/container.sh
   jbpm3/branches/jbpm-3.2-soa/core/pom.xml
   jbpm3/branches/jbpm-3.2-soa/db/pom.xml
   jbpm3/branches/jbpm-3.2-soa/distribution/pom.xml
   jbpm3/branches/jbpm-3.2-soa/enterprise/pom.xml
   jbpm3/branches/jbpm-3.2-soa/examples/pom.xml
   jbpm3/branches/jbpm-3.2-soa/identity/pom.xml
   jbpm3/branches/jbpm-3.2-soa/pom.xml
   jbpm3/branches/jbpm-3.2-soa/simulation/pom.xml
   jbpm3/branches/jbpm-3.2-soa/soa-distribution/pom.xml
   jbpm3/branches/jbpm-3.2-soa/userguide/pom.xml
Log:
JBPM-2934 take project modules out of the modules directory

Modified: jbpm3/branches/jbpm-3.2-soa/ci/container.sh
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/ci/container.sh	2010-09-21 17:45:09 UTC (rev 6663)
+++ jbpm3/branches/jbpm-3.2-soa/ci/container.sh	2010-09-22 09:14:32 UTC (rev 6664)
@@ -69,8 +69,8 @@
 unzip -q -d $WORKSPACE $SOURCE_REPO/jboss/$JBOSS_VERSION.zip
 
 # Install jBPM
-$JAVA -jar modules/distribution/target/jbpm-distribution-$JBPM_VERSION-installer.jar \
-  modules/distribution/target/classes/auto-install-template.xml
+$JAVA -jar distribution/target/jbpm-distribution-$JBPM_VERSION-installer.jar \
+  distribution/target/classes/auto-install-template.xml
 if [ $? -ne 0 ]; then
   echo "ERROR: failed to install distro"
   exit 1
@@ -145,7 +145,7 @@
 fi
 
 # Run enterprise test suite
-mvn -f modules/enterprise/pom.xml -s /dev/null --fail-at-end -Djboss.bind.address=$MYTESTIP_1 \
+mvn -f enterprise/pom.xml -s /dev/null --fail-at-end -Djboss.bind.address=$MYTESTIP_1 \
   -Dsurefire.jvm.args="-Xms64m -Xmx256m" integration-test | tee $WORKSPACE/tests.log
 grep -E 'FIXME\|FAILED' $WORKSPACE/tests.log | sort -u > $WORKSPACE/fixme.txt
 

Copied: jbpm3/branches/jbpm-3.2-soa/core (from rev 6663, jbpm3/branches/jbpm-3.2-soa/modules/core)

Modified: jbpm3/branches/jbpm-3.2-soa/core/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/core/pom.xml	2010-09-21 17:45:09 UTC (rev 6663)
+++ jbpm3/branches/jbpm-3.2-soa/core/pom.xml	2010-09-22 09:14:32 UTC (rev 6664)
@@ -20,7 +20,7 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../../pom.xml</relativePath>
+    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Dependencies -->

Copied: jbpm3/branches/jbpm-3.2-soa/db (from rev 6663, jbpm3/branches/jbpm-3.2-soa/modules/db)

Modified: jbpm3/branches/jbpm-3.2-soa/db/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/db/pom.xml	2010-09-21 17:45:09 UTC (rev 6663)
+++ jbpm3/branches/jbpm-3.2-soa/db/pom.xml	2010-09-22 09:14:32 UTC (rev 6664)
@@ -20,7 +20,7 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../../pom.xml</relativePath>
+    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <properties>

Copied: jbpm3/branches/jbpm-3.2-soa/distribution (from rev 6663, jbpm3/branches/jbpm-3.2-soa/modules/distribution)

Modified: jbpm3/branches/jbpm-3.2-soa/distribution/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/distribution/pom.xml	2010-09-21 17:45:09 UTC (rev 6663)
+++ jbpm3/branches/jbpm-3.2-soa/distribution/pom.xml	2010-09-22 09:14:32 UTC (rev 6664)
@@ -20,7 +20,7 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../../pom.xml</relativePath>
+    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Properties -->

Copied: jbpm3/branches/jbpm-3.2-soa/enterprise (from rev 6663, jbpm3/branches/jbpm-3.2-soa/modules/enterprise)

Modified: jbpm3/branches/jbpm-3.2-soa/enterprise/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/enterprise/pom.xml	2010-09-21 17:45:09 UTC (rev 6663)
+++ jbpm3/branches/jbpm-3.2-soa/enterprise/pom.xml	2010-09-22 09:14:32 UTC (rev 6664)
@@ -20,7 +20,7 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../../pom.xml</relativePath>
+    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Dependencies -->

Copied: jbpm3/branches/jbpm-3.2-soa/examples (from rev 6663, jbpm3/branches/jbpm-3.2-soa/modules/examples)

Modified: jbpm3/branches/jbpm-3.2-soa/examples/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/examples/pom.xml	2010-09-21 17:45:09 UTC (rev 6663)
+++ jbpm3/branches/jbpm-3.2-soa/examples/pom.xml	2010-09-22 09:14:32 UTC (rev 6664)
@@ -20,7 +20,7 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../../pom.xml</relativePath>
+    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Dependencies -->

Copied: jbpm3/branches/jbpm-3.2-soa/identity (from rev 6663, jbpm3/branches/jbpm-3.2-soa/modules/identity)

Modified: jbpm3/branches/jbpm-3.2-soa/identity/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/identity/pom.xml	2010-09-21 17:45:09 UTC (rev 6663)
+++ jbpm3/branches/jbpm-3.2-soa/identity/pom.xml	2010-09-22 09:14:32 UTC (rev 6664)
@@ -20,7 +20,7 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../../pom.xml</relativePath>
+    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Dependencies -->

Modified: jbpm3/branches/jbpm-3.2-soa/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/pom.xml	2010-09-21 17:45:09 UTC (rev 6663)
+++ jbpm3/branches/jbpm-3.2-soa/pom.xml	2010-09-22 09:14:32 UTC (rev 6664)
@@ -32,11 +32,11 @@
 
   <!-- Modules -->
   <modules>
-    <module>modules/core</module>
-    <module>modules/identity</module>
-    <module>modules/enterprise</module>
-    <module>modules/examples</module>
-    <module>modules/simulation</module>
+    <module>core</module>
+    <module>identity</module>
+    <module>enterprise</module>
+    <module>examples</module>
+    <module>simulation</module>
   </modules>
 
   <!-- Properties -->
@@ -501,7 +501,7 @@
     <profile>
       <id>distro</id>
       <modules>
-        <module>modules/distribution</module>
+        <module>distribution</module>
       </modules>
       <build>
         <plugins>
@@ -534,9 +534,9 @@
     <profile>
       <id>release</id>
       <modules>
-        <module>modules/db</module>
-        <module>modules/userguide</module>
-        <module>modules/distribution</module>
+        <module>db</module>
+        <module>userguide</module>
+        <module>distribution</module>
       </modules>
       <build>
         <plugins>
@@ -807,10 +807,10 @@
     <profile>
       <id>soa</id>
       <modules>
-        <module>modules/db</module>
-        <module>modules/userguide</module>
-        <module>modules/distribution</module>
-        <module>modules/soa-distribution</module>
+        <module>db</module>
+        <module>userguide</module>
+        <module>distribution</module>
+        <module>soa-distribution</module>
       </modules>
       <build>
         <plugins>

Copied: jbpm3/branches/jbpm-3.2-soa/simulation (from rev 6663, jbpm3/branches/jbpm-3.2-soa/modules/simulation)

Modified: jbpm3/branches/jbpm-3.2-soa/simulation/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/simulation/pom.xml	2010-09-21 17:45:09 UTC (rev 6663)
+++ jbpm3/branches/jbpm-3.2-soa/simulation/pom.xml	2010-09-22 09:14:32 UTC (rev 6664)
@@ -20,7 +20,7 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../../pom.xml</relativePath>
+    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Profiles -->

Copied: jbpm3/branches/jbpm-3.2-soa/soa-distribution (from rev 6663, jbpm3/branches/jbpm-3.2-soa/modules/soa-distribution)

Modified: jbpm3/branches/jbpm-3.2-soa/soa-distribution/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/soa-distribution/pom.xml	2010-09-21 17:45:09 UTC (rev 6663)
+++ jbpm3/branches/jbpm-3.2-soa/soa-distribution/pom.xml	2010-09-22 09:14:32 UTC (rev 6664)
@@ -20,7 +20,7 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../../pom.xml</relativePath>
+    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <properties>

Copied: jbpm3/branches/jbpm-3.2-soa/userguide (from rev 6663, jbpm3/branches/jbpm-3.2-soa/modules/userguide)

Modified: jbpm3/branches/jbpm-3.2-soa/userguide/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/userguide/pom.xml	2010-09-21 17:45:09 UTC (rev 6663)
+++ jbpm3/branches/jbpm-3.2-soa/userguide/pom.xml	2010-09-22 09:14:32 UTC (rev 6664)
@@ -20,7 +20,7 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../../pom.xml</relativePath>
+    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Plugins -->



More information about the jbpm-commits mailing list