[jbpm-commits] JBoss JBPM SVN: r6849 - in jbpm3/branches/jbpm-3.2-soa: core/src/main/java/org/jbpm/context/exe/converter and 11 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Nov 29 11:50:30 EST 2010


Author: alex.guizar at jboss.com
Date: 2010-11-29 11:50:28 -0500 (Mon, 29 Nov 2010)
New Revision: 6849

Modified:
   jbpm3/branches/jbpm-3.2-soa/core/pom.xml
   jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/context/exe/converter/SerializableToByteArrayConverter.java
   jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/graph/def/EventCallback.java
   jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/util/CustomLoaderObjectInputStream.java
   jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/util/Semaphore.java
   jbpm3/branches/jbpm-3.2-soa/distribution/pom.xml
   jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/examples/module/pom.xml
   jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/auto-install-template.xml
   jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/auto-install-tomcat.xml
   jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/install-definition.xml
   jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-lang_eng.xml
   jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-lang_spa.xml
   jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-spec.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/simulation/pom.xml
   jbpm3/branches/jbpm-3.2-soa/soa-distribution/pom.xml
   jbpm3/branches/jbpm-3.2-soa/userguide/pom.xml
Log:
JBPM-2959 remove backport-util-concurrent from JBoss AS integration pack, job executor is not launched in that container;
introduce separate panels for jbossInstallPath and tomcatInstallPath fields so that they display the default value appropriate to the selected container version

Modified: jbpm3/branches/jbpm-3.2-soa/core/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/core/pom.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/core/pom.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -20,7 +20,6 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Dependencies -->

Modified: jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/context/exe/converter/SerializableToByteArrayConverter.java
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/context/exe/converter/SerializableToByteArrayConverter.java	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/context/exe/converter/SerializableToByteArrayConverter.java	2010-11-29 16:50:28 UTC (rev 6849)
@@ -27,7 +27,6 @@
 import java.io.InputStream;
 import java.io.ObjectInputStream;
 import java.io.ObjectOutputStream;
-import java.io.ObjectStreamClass;
 import java.io.Serializable;
 
 import org.jbpm.JbpmConfiguration;
@@ -35,6 +34,7 @@
 import org.jbpm.bytes.ByteArray;
 import org.jbpm.context.exe.Converter;
 import org.jbpm.graph.def.ProcessDefinition;
+import org.jbpm.util.CustomLoaderObjectInputStream;
 
 public class SerializableToByteArrayConverter implements Converter {
 
@@ -80,18 +80,8 @@
     ByteArray byteArray = (ByteArray) o;
     InputStream memoryStream = new ByteArrayInputStream(byteArray.getBytes());
     try {
-      ObjectInputStream objectStream = new ObjectInputStream(memoryStream) {
-        protected Class resolveClass(ObjectStreamClass desc) throws IOException,
-          ClassNotFoundException {
-          try {
-            return super.resolveClass(desc);
-          }
-          catch (ClassNotFoundException e) {
-            return Class.forName(desc.getName(), false,
-              JbpmConfiguration.getProcessClassLoader(processDefinition));
-          }
-        }
-      };
+      ObjectInputStream objectStream = new CustomLoaderObjectInputStream(memoryStream,
+        JbpmConfiguration.getProcessClassLoader(processDefinition));
       return objectStream.readObject();
     }
     catch (IOException e) {

Modified: jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/graph/def/EventCallback.java
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/graph/def/EventCallback.java	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/graph/def/EventCallback.java	2010-11-29 16:50:28 UTC (rev 6849)
@@ -35,10 +35,8 @@
 
 import org.jbpm.JbpmContext;
 import org.jbpm.JbpmException;
+import org.jbpm.util.Semaphore;
 
-import edu.emory.mathcs.backport.java.util.concurrent.Semaphore;
-import edu.emory.mathcs.backport.java.util.concurrent.TimeUnit;
-
 public class EventCallback implements Serializable {
 
   public static final int DEFAULT_TIMEOUT = 5 * 60 * 1000;
@@ -121,7 +119,7 @@
     if (debug) log.debug("waiting for " + event);
     Semaphore eventSemaphore = getEventSemaphore(event);
     try {
-      if (!eventSemaphore.tryAcquire(occurrences, timeout, TimeUnit.MILLISECONDS)) {
+      if (!eventSemaphore.tryAcquire(occurrences, timeout)) {
         throw new JbpmException("event '" + event + "' did not occur within " + timeout + " ms");
       }
       if (debug) log.debug("received '" + event + "' notification");
@@ -136,7 +134,7 @@
       Semaphore semaphore = (Semaphore) eventSemaphores.get(event);
       if (semaphore == null) {
         // request fail semaphore to support atomic multi-acquire
-        semaphore = new Semaphore(0, true);
+        semaphore = new Semaphore(0);
         eventSemaphores.put(event, semaphore);
       }
       return semaphore;

Modified: jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/util/CustomLoaderObjectInputStream.java
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/util/CustomLoaderObjectInputStream.java	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/util/CustomLoaderObjectInputStream.java	2010-11-29 16:50:28 UTC (rev 6849)
@@ -34,7 +34,6 @@
  * manner.
  * 
  * @author Alejandro Guizar
- * @deprecated not in use anymore
  */
 public class CustomLoaderObjectInputStream extends ObjectInputStream {
 

Modified: jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/util/Semaphore.java
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/util/Semaphore.java	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/core/src/main/java/org/jbpm/util/Semaphore.java	2010-11-29 16:50:28 UTC (rev 6849)
@@ -9,7 +9,6 @@
  * 
  * @see <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/Semaphore.html"
  * >java.util.concurrent.Semaphore</a>
- * @deprecated not in use anymore
  */
 public class Semaphore implements Serializable {
 

Modified: jbpm3/branches/jbpm-3.2-soa/distribution/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/distribution/pom.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/distribution/pom.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -20,12 +20,11 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Properties -->
   <properties>
-    <assemblyFinalName>assembly-modules</assemblyFinalName>
+    <assemblyFinalName>izpack</assemblyFinalName>
     <assemblyDirectory>${project.build.directory}/${assemblyFinalName}</assemblyDirectory>
     <resourcesDirectory>${basedir}/src/main/resources</resourcesDirectory>
   </properties>
@@ -205,6 +204,11 @@
       <artifactId>hibernate-jbc-cacheprovider</artifactId>
     </dependency>
     <dependency>
+      <groupId>org.codehaus.izpack</groupId>
+      <artifactId>izpack-standalone-compiler</artifactId>
+      <version>4.3.2</version>
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
     </dependency>
@@ -284,6 +288,7 @@
               <goal>izpack</goal>
             </goals>
             <configuration>
+              <attach>false</attach>
               <descriptor>${project.build.outputDirectory}/install-definition.xml</descriptor>
               <descriptorEncoding>${project.build.sourceEncoding}</descriptorEncoding>
               <kind>installer</kind>

Modified: jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/examples/module/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/examples/module/pom.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/examples/module/pom.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -19,7 +19,6 @@
     <artifactId>jbpm-examples-dist</artifactId>
     <groupId>org.jbpm.jbpm3</groupId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <build>

Modified: jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/auto-install-template.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/auto-install-template.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/auto-install-template.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -20,19 +20,27 @@
   </com.izforge.izpack.panels.TreePacksPanel>
   <com.izforge.izpack.panels.UserInputPanel>
     <userInput>
-      <entry key="jbossInstallPath" value="@jboss.home@" />
       <entry key="jbossSelection" value="@container@" />
       <entry key="jbossTargetServer" value="@jboss.server@" />
     </userInput>
   </com.izforge.izpack.panels.UserInputPanel>
   <com.izforge.izpack.panels.UserInputPanel>
     <userInput>
-      <entry key="tomcatInstallPath" value="@tomcat.home@" />
+      <entry key="jbossInstallPath" value="@jboss.home@" />
+    </userInput>
+  </com.izforge.izpack.panels.UserInputPanel>
+  <com.izforge.izpack.panels.UserInputPanel>
+    <userInput>
       <entry key="tomcatSelection" value="@container@" />
     </userInput>
   </com.izforge.izpack.panels.UserInputPanel>
   <com.izforge.izpack.panels.UserInputPanel>
     <userInput>
+      <entry key="tomcatInstallPath" value="@tomcat.home@" />
+    </userInput>
+  </com.izforge.izpack.panels.UserInputPanel>
+  <com.izforge.izpack.panels.UserInputPanel>
+    <userInput>
       <entry key="dbSelection" value="@database@" />
     </userInput>
   </com.izforge.izpack.panels.UserInputPanel>

Modified: jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/auto-install-tomcat.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/auto-install-tomcat.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/auto-install-tomcat.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -20,19 +20,27 @@
   </com.izforge.izpack.panels.TreePacksPanel>
   <com.izforge.izpack.panels.UserInputPanel>
     <userInput>
-      <entry key="jbossInstallPath" value="@jboss.home@" />
       <entry key="jbossSelection" value="@container@" />
       <entry key="jbossTargetServer" value="@jboss.server@" />
     </userInput>
   </com.izforge.izpack.panels.UserInputPanel>
   <com.izforge.izpack.panels.UserInputPanel>
     <userInput>
-      <entry key="tomcatInstallPath" value="@tomcat.home@" />
+      <entry key="jbossInstallPath" value="@jboss.home@" />
+    </userInput>
+  </com.izforge.izpack.panels.UserInputPanel>
+  <com.izforge.izpack.panels.UserInputPanel>
+    <userInput>
       <entry key="tomcatSelection" value="@container@" />
     </userInput>
   </com.izforge.izpack.panels.UserInputPanel>
   <com.izforge.izpack.panels.UserInputPanel>
     <userInput>
+      <entry key="tomcatInstallPath" value="@tomcat.home@" />
+    </userInput>
+  </com.izforge.izpack.panels.UserInputPanel>
+  <com.izforge.izpack.panels.UserInputPanel>
+    <userInput>
       <entry key="dbSelection" value="@database@" />
     </userInput>
   </com.izforge.izpack.panels.UserInputPanel>

Modified: jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/install-definition.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/install-definition.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/install-definition.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -10,7 +10,7 @@
     <appversion>@{project.version}</appversion>
     <uninstaller path="$INSTALL_PATH/uninstall" />
   </info>
-  <guiprefs width="600" height="440" resizable="yes" />
+  <guiprefs width="640" height="480" resizable="yes" />
   <locale>
     <langpack iso3="eng" />
     <langpack iso3="spa" />
@@ -50,8 +50,8 @@
     <variable name="jboss.home" value="${jboss423.home}" condition="isJBoss423" />
     <variable name="jboss.home" value="${jboss501.home}" condition="isJBoss501" />
     <variable name="jboss.home" value="${jboss510.home}" condition="isJBoss510" />
-    <variable name="tomcat.home" value="${tomcat60.home" condition="isTomcat60" />
-    <variable name="tomcat.home" value="${tomcat55.home" condition="isTomcat55" />
+    <variable name="tomcat.home" value="${tomcat60.home}" condition="isTomcat60" />
+    <variable name="tomcat.home" value="${tomcat55.home}" condition="isTomcat55" />
   </dynamicvariables>
 
   <!-- Conditions -->
@@ -123,6 +123,8 @@
     <panel classname="UserInputPanel" />
     <panel classname="UserInputPanel" />
     <panel classname="UserInputPanel" />
+    <panel classname="UserInputPanel" />
+    <panel classname="UserInputPanel" />
     <panel classname="SummaryPanel" />
     <panel classname="InstallPanel" />
     <panel classname="FinishPanel" />
@@ -241,7 +243,6 @@
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar">
         <include name="jbpm-jpdl.jar" />
         <include name="jbpm-identity.jar" />
-        <include name="backport-util-concurrent.jar" />
       </fileset>
       <file src="@{resourcesDirectory}/service/jboss-service.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar/META-INF" />

Modified: jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-lang_eng.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-lang_eng.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-lang_eng.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -2,8 +2,8 @@
 <langpack>
   <str id="jboss.selection" txt="JBoss AS version" />
   <str id="jboss.configuration" txt="Server configuration" />
-  <str id="jboss.home" txt="JBoss AS directory" />
-  <str id="tomcat.home" txt="Tomcat directory" />
+  <str id="jboss.home" txt="JBoss AS home" />
+  <str id="tomcat.home" txt="Tomcat home" />
   <str id="tomcat.selection" txt="Tomcat version" />
   <str id="database.selection" txt="Database" />
 </langpack>
\ No newline at end of file

Modified: jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-lang_spa.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-lang_spa.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-lang_spa.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -2,8 +2,8 @@
 <langpack>
   <str id="jboss.selection" txt="Versión de JBoss AS" />
   <str id="jboss.configuration" txt="Configuración del servidor" />
-  <str id="jboss.home" txt="Directorio de JBoss AS" />
-  <str id="tomcat.home" txt="Directorio de Tomcat" />
+  <str id="jboss.home" txt="Ruta de JBoss AS" />
+  <str id="tomcat.home" txt="Ruta de Tomcat" />
   <str id="tomcat.selection" txt="Versión de Tomcat" />
   <str id="database.selection" txt="Base de datos" />
 </langpack>
\ No newline at end of file

Modified: jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-spec.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-spec.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/distribution/src/main/resources/installer/user-input-spec.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -2,17 +2,13 @@
 <userInput>
   <panel order="0">
     <createForPack name="JBoss AS Integration" />
-    <field type="dir" align="left" variable="jbossInstallPath">
-      <spec id="jboss.home" size="20" set="${jboss.home}" />
-    </field>
-    <field type="space" />
     <field type="radio" variable="jbossSelection">
       <description align="left" id="jboss.selection" />
       <spec>
-        <choice txt="JBoss 5.1.0" value="jboss510" />
-        <choice txt="JBoss 5.0.1" value="jboss501" />
-        <choice txt="JBoss 4.2.3" value="jboss423" set="true" />
-        <choice txt="JBoss 4.0.5" value="jboss405" />
+        <choice txt="JBoss AS 5.1.0" value="jboss510" />
+        <choice txt="JBoss AS 5.0.1" value="jboss501" />
+        <choice txt="JBoss AS 4.2.3" value="jboss423" set="true" />
+        <choice txt="JBoss AS 4.0.5" value="jboss405" />
       </spec>
     </field>
     <field type="space" />
@@ -21,11 +17,13 @@
     </field>
   </panel>
   <panel order="1">
+    <createForPack name="JBoss AS Integration" />
+    <field type="dir" align="left" variable="jbossInstallPath">
+      <spec id="jboss.home" size="20" set="${jboss.home}" />
+    </field>
+  </panel>
+  <panel order="2">
     <createForPack name="Tomcat Integration" />
-    <field type="dir" align="left" variable="tomcatInstallPath">
-      <spec id="tomcat.home" size="20" set="${tomcat.home}" />
-    </field>
-    <field type="space" />
     <field type="radio" variable="tomcatSelection">
       <description align="left" id="tomcat.selection" />
       <spec>
@@ -34,7 +32,13 @@
       </spec>
     </field>
   </panel>
-  <panel order="2">
+  <panel order="3">
+    <createForPack name="Tomcat Integration" />
+    <field type="dir" align="left" variable="tomcatInstallPath">
+      <spec id="tomcat.home" size="20" set="${tomcat.home}" />
+    </field>
+  </panel>
+  <panel order="4">
     <createForPack name="JBoss AS Integration" />
     <field type="radio" variable="dbSelection">
       <description align="left" id="database.selection" />

Modified: jbpm3/branches/jbpm-3.2-soa/enterprise/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/enterprise/pom.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/enterprise/pom.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -20,7 +20,6 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Dependencies -->

Modified: jbpm3/branches/jbpm-3.2-soa/examples/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/examples/pom.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/examples/pom.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -20,7 +20,6 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Dependencies -->

Modified: jbpm3/branches/jbpm-3.2-soa/identity/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/identity/pom.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/identity/pom.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -20,7 +20,6 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Dependencies -->

Modified: jbpm3/branches/jbpm-3.2-soa/simulation/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/simulation/pom.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/simulation/pom.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -20,7 +20,6 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Profiles -->

Modified: jbpm3/branches/jbpm-3.2-soa/soa-distribution/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/soa-distribution/pom.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/soa-distribution/pom.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -20,7 +20,6 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <properties>

Modified: jbpm3/branches/jbpm-3.2-soa/userguide/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/userguide/pom.xml	2010-11-26 03:03:52 UTC (rev 6848)
+++ jbpm3/branches/jbpm-3.2-soa/userguide/pom.xml	2010-11-29 16:50:28 UTC (rev 6849)
@@ -20,7 +20,6 @@
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm</artifactId>
     <version>3.2.10-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
   </parent>
 
   <!-- Plugins -->



More information about the jbpm-commits mailing list