[jbpm-commits] JBoss JBPM SVN: r6558 - jbpm3/branches/jbpm-3.2-soa/modules/core and 20 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Aug 10 04:03:46 EDT 2010


Author: alex.guizar at jboss.com
Date: 2010-08-10 04:03:43 -0400 (Tue, 10 Aug 2010)
New Revision: 6558

Removed:
   jbpm3/branches/jbpm-3.2-soa/modules/distribution/jbpm3-distribution.iml
Modified:
   jbpm3/branches/jbpm-3.2-soa/modules/core/pom.xml
   jbpm3/branches/jbpm-3.2-soa/modules/core/scripts/antrun-jbpm-config.xml
   jbpm3/branches/jbpm-3.2-soa/modules/db/pom.xml
   jbpm3/branches/jbpm-3.2-soa/modules/db/scripts/antrun-jbpmschema.xml
   jbpm3/branches/jbpm-3.2-soa/modules/distribution/pom.xml
   jbpm3/branches/jbpm-3.2-soa/modules/distribution/scripts/antrun-installer.xml
   jbpm3/branches/jbpm-3.2-soa/modules/distribution/scripts/assembly-modules.xml
   jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/examples/module/pom.xml
   jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/examples/pom.xml
   jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/installer/download-helper.xml
   jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/installer/install-definition.xml
   jbpm3/branches/jbpm-3.2-soa/modules/enterprise/pom.xml
   jbpm3/branches/jbpm-3.2-soa/modules/enterprise/scripts/antrun-test-jars.xml
   jbpm3/branches/jbpm-3.2-soa/modules/examples/pom.xml
   jbpm3/branches/jbpm-3.2-soa/modules/examples/scripts/assembly-examples.xml
   jbpm3/branches/jbpm-3.2-soa/modules/identity/pom.xml
   jbpm3/branches/jbpm-3.2-soa/modules/simulation/pom.xml
   jbpm3/branches/jbpm-3.2-soa/modules/userguide/pom.xml
   jbpm3/branches/jbpm-3.2-soa/pom.xml
   projects/jsf-console/branches/jsf-console-3.2-soa/console/pom.xml
   projects/jsf-console/branches/jsf-console-3.2-soa/gpd-deployer/pom.xml
   projects/jsf-console/branches/jsf-console-3.2-soa/jbpm4jsf/pom.xml
   projects/jsf-console/branches/jsf-console-3.2-soa/pom.xml
   projects/jsf-console/branches/jsf-console-3.2-soa/soa/pom.xml
Log:
remove extraneous artifacts in distribution src/ and docs/
shorten project names

Modified: jbpm3/branches/jbpm-3.2-soa/modules/core/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/core/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/core/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id$ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - Core</name>
+  <name>jBPM3 - Core</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jbpm-jpdl</artifactId>
   <packaging>jar</packaging>
@@ -174,7 +172,7 @@
             <configuration>
               <tasks>
                 <property name="database" value="${database}" />
-                <ant antfile="scripts/antrun-jbpm-config.xml" target="concat" />
+                <ant antfile="scripts/antrun-jbpm-config.xml" target="cat-hibernate-cfg" />
               </tasks>
             </configuration>
           </execution>
@@ -237,9 +235,6 @@
           <scope>test</scope>
         </dependency>
       </dependencies>
-      <properties>
-        <surefire.jvm.args>-Xmx128m</surefire.jvm.args>
-      </properties>
     </profile>
 
     <!--

Modified: jbpm3/branches/jbpm-3.2-soa/modules/core/scripts/antrun-jbpm-config.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/core/scripts/antrun-jbpm-config.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/core/scripts/antrun-jbpm-config.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -1,18 +1,14 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <!-- ====================================================================== -->
+<!--  jBPM: Workflow in Java                                                -->
 <!--                                                                        -->
-<!--  JBoss, the OpenSource J2EE webOS                                      -->
-<!--                                                                        -->
 <!--  Distributable under LGPL license.                                     -->
 <!--  See terms of license at http://www.gnu.org.                           -->
-<!--                                                                        -->
 <!-- ====================================================================== -->
 
-<!-- $Id$ -->
+<project name="hibernate-config" default="cat-hibernate-cfg">
 
-<project default="concat">
-
   <property name="project.build.directory" value="${basedir}/target"/>
   <property name="build.resources.directory" value="${basedir}/target/classes"/>
 
@@ -80,7 +76,7 @@
   </macrodef>
 
   <!-- Concatenates the hibernate config scripts -->	
-  <target name="concat" >
+  <target name="cat-hibernate-cfg" >
     <macro-database-cfg database="db2" />
     <macro-database-cfg database="derby" />
     <macro-database-cfg database="firebird" />

Modified: jbpm3/branches/jbpm-3.2-soa/modules/db/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/db/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/db/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -1,18 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-  <!-- ====================================================================== -->
-  <!--  jBPM: Workflow in Java                                                -->
-  <!--                                                                        -->
-  <!--  Distributable under LGPL license.                                     -->
-  <!--  See terms of license at http://www.gnu.org.                           -->
-  <!-- ====================================================================== -->
+<!-- ====================================================================== -->
+<!--  jBPM: Workflow in Java                                                -->
+<!--                                                                        -->
+<!--  Distributable under LGPL license.                                     -->
+<!--  See terms of license at http://www.gnu.org.                           -->
+<!-- ====================================================================== -->
 
-  <!-- $Id$ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - Database</name>
+  <name>jBPM3 - Database</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jbpm-db</artifactId>
   <packaging>jar</packaging>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/db/scripts/antrun-jbpmschema.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/db/scripts/antrun-jbpmschema.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/db/scripts/antrun-jbpmschema.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -1,12 +1,13 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!-- ================================================================== -->
-<!-- jBPM Database schema                                               -->
-<!-- ================================================================== -->
+<!-- ====================================================================== -->
+<!--  jBPM: Workflow in Java                                                -->
+<!--                                                                        -->
+<!--  Distributable under LGPL license.                                     -->
+<!--  See terms of license at http://www.gnu.org.                           -->
+<!-- ====================================================================== -->
 
-<!-- $Id$ -->
-
-<project>
+<project name="db-schema">
   <target name="init">
     <taskdef name="jbpmschema"
              classname="org.jbpm.ant.JbpmSchemaTask"

Deleted: jbpm3/branches/jbpm-3.2-soa/modules/distribution/jbpm3-distribution.iml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/distribution/jbpm3-distribution.iml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/distribution/jbpm3-distribution.iml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -1,864 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module version="4" relativePaths="true" type="JAVA_MODULE">
-  <component name="ModuleRootManager" />
-  <component name="NewModuleRootManager" inherit-compiler-output="true">
-    <exclude-output />
-    <content url="file://$MODULE_DIR$">
-      <sourceFolder url="file://$MODULE_DIR$/src/main/resources" isTestSource="false" />
-    </content>
-    <orderEntry type="inheritedJdk" />
-    <orderEntry type="sourceFolder" forTests="false" />
-    <orderEntry type="module" module-name="jbpm3-toplevel" />
-    <orderEntry type="module" module-name="report-server" />
-    <orderEntry type="module" module-name="gwt-parent" />
-    <orderEntry type="module" module-name="jbpm3-enterprise" />
-    <orderEntry type="module" module-name="jbpm3-identity" />
-    <orderEntry type="module" module-name="jbpm3-core" />
-    <orderEntry type="module" module-name="gwt-war" />
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.slf4j:slf4j-simple:jar:1.5.2:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/slf4j/slf4j-simple/1.5.2/slf4j-simple-1.5.2.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: com.sun.facelets:jsf-facelets:jar:1.1.14:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/sun/facelets/jsf-facelets/1.1.14/jsf-facelets-1.1.14.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss.bpm:bpm-spec-api:jar:1.0.0-SNAPSHOT:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/bpm/bpm-spec-api/1.0.0-SNAPSHOT/bpm-spec-api-1.0.0-SNAPSHOT.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: nekohtml:nekohtml:jar:0.9.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/nekohtml/nekohtml/0.9.4/nekohtml-0.9.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.apache.derby:derby:jar:10.2.1.6:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/apache/derby/derby/10.2.1.6/derby-10.2.1.6.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: javax.xml.stream:stax-api:jar:1.0-2:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss.gravel:gravel:jar:1.0.0.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/gravel/gravel/1.0.0.GA/gravel-1.0.0.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: asm:asm:jar:1.5.3:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/asm/asm/1.5.3/asm-1.5.3.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: commons-httpclient:commons-httpclient:jar:3.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: jboss:jboss:jar:4.2.2.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/jboss/jboss/4.2.2.GA/jboss-4.2.2.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: sun-jaxb:jaxb-api:jar:2.1.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/sun-jaxb/jaxb-api/2.1.4/jaxb-api-2.1.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: com.google.gwt:gwt-servlet:jar:1.5.2:runtime">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/google/gwt/gwt-servlet/1.5.2/gwt-servlet-1.5.2.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.apache.poi:poi:jar:3.0.2-FINAL:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/apache/poi/poi/3.0.2-FINAL/poi-3.0.2-FINAL.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: jboss.common:jboss-common:jar:1.2.1.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/jboss/common/jboss-common/1.2.1.GA/jboss-common-1.2.1.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: xml-apis:xml-apis:jar:1.3.03:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: hsqldb:hsqldb:jar:1.8.0.7:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/hsqldb/hsqldb/1.8.0.7/hsqldb-1.8.0.7.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: jboss:jbosssx:jar:4.2.2.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/jboss/jbosssx/4.2.2.GA/jbosssx-4.2.2.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: net.sf.ehcache:ehcache:jar:1.2.3:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/net/sf/ehcache/ehcache/1.2.3/ehcache-1.2.3.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss:jboss-common-core:jar:2.2.8.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/jboss-common-core/2.2.8.GA/jboss-common-core-2.2.8.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss:jboss-reflect:jar:2.0.0.CR1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/jboss-reflect/2.0.0.CR1/jboss-reflect-2.0.0.CR1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: apache-xerces:xml-apis:jar:2.9.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/apache-xerces/xml-apis/2.9.1/xml-apis-2.9.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: com.sun.xml.stream:sjsxp:jar:1.0.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/sun/xml/stream/sjsxp/1.0.1/sjsxp-1.0.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.slf4j:slf4j-log4j12:jar:1.5.5:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/slf4j/slf4j-log4j12/1.5.5/slf4j-log4j12-1.5.5.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.apache.jackrabbit:jackrabbit-text-extractors:jar:1.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/apache/jackrabbit/jackrabbit-text-extractors/1.4/jackrabbit-text-extractors-1.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: cglib:cglib:jar:2.1_3:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/cglib/cglib/2.1_3/cglib-2.1_3.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: asm:asm-attrs:jar:1.5.3:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/asm/asm-attrs/1.5.3/asm-attrs-1.5.3.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: javax.mail:mail:jar:1.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/javax/mail/mail/1.4/mail-1.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: javassist:javassist:jar:3.6.0.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/javassist/javassist/3.6.0.GA/javassist-3.6.0.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.apache.jackrabbit:jackrabbit-api:jar:1.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/apache/jackrabbit/jackrabbit-api/1.4/jackrabbit-api-1.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jyaml:jyaml:jar:1.3:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jyaml/jyaml/1.3/jyaml-1.3.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: tjws:webserver:jar:1.3.3:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/tjws/webserver/1.3.3/webserver-1.3.3.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: commons-collections:commons-collections:jar:2.1.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/commons-collections/commons-collections/2.1.1/commons-collections-2.1.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: net.sourceforge.jtds:jtds:jar:1.2.2:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/net/sourceforge/jtds/jtds/1.2.2/jtds-1.2.2.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss.bpm:bpm-spec-dialect-api10:jar:1.0.0-SNAPSHOT:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/bpm/bpm-spec-dialect-api10/1.0.0-SNAPSHOT/bpm-spec-dialect-api10-1.0.0-SNAPSHOT.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss.resteasy:jaxrs-api:jar:1.0-beta-8:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/resteasy/jaxrs-api/1.0-beta-8/jaxrs-api-1.0-beta-8.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: postgresql:postgresql:jar:8.3-603.jdbc3:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/postgresql/postgresql/8.3-603.jdbc3/postgresql-8.3-603.jdbc3.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.apache.jackrabbit:jackrabbit-spi-commons:jar:1.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/apache/jackrabbit/jackrabbit-spi-commons/1.4/jackrabbit-spi-commons-1.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss:jboss-mdr:jar:2.0.0.CR1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/jboss-mdr/2.0.0.CR1/jboss-mdr-2.0.0.CR1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: jboss:jboss-ejb3:jar:4.2.2.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/jboss/jboss-ejb3/4.2.2.GA/jboss-ejb3-4.2.2.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss.logging:jboss-logging-spi:jar:2.0.5.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/logging/jboss-logging-spi/2.0.5.GA/jboss-logging-spi-2.0.5.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: log4j:log4j:jar:1.2.14:test">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/log4j/log4j/1.2.14/log4j-1.2.14.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.apache.ant:ant-launcher:jar:1.7.0:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/apache/ant/ant-launcher/1.7.0/ant-launcher-1.7.0.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.apache.jackrabbit:jackrabbit-spi:jar:1.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/apache/jackrabbit/jackrabbit-spi/1.4/jackrabbit-spi-1.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.apache.jackrabbit:jackrabbit-core:jar:1.4.5:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/apache/jackrabbit/jackrabbit-core/1.4.5/jackrabbit-core-1.4.5.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: javax.xml.bind:jaxb-api:jar:2.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/javax/xml/bind/jaxb-api/2.1/jaxb-api-2.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: izpack:standalone-compiler:jar:4.1.0:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/izpack/standalone-compiler/4.1.0/standalone-compiler-4.1.0.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: concurrent:concurrent:jar:1.3.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/concurrent/concurrent/1.3.4/concurrent-1.3.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: javax.transaction:jta:jar:1.0.1B:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/javax/transaction/jta/1.0.1B/jta-1.0.1B.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: commons-logging:commons-logging:jar:1.1.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.apache.ant:ant:jar:1.7.0:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/apache/ant/ant/1.7.0/ant-1.7.0.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: junit:junit:jar:3.8.1:test">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/junit/junit/3.8.1/junit-3.8.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.hibernate:hibernate:jar:3.2.6.ga:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/hibernate/hibernate/3.2.6.ga/hibernate-3.2.6.ga.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss:jbossxb:jar:2.0.0.CR13:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/jbossxb/2.0.0.CR13/jbossxb-2.0.0.CR13.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: bsh:bsh:jar:1.3.0:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/bsh/bsh/1.3.0/bsh-1.3.0.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss.microcontainer:jboss-dependency:jar:2.0.0.CR1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/microcontainer/jboss-dependency/2.0.0.CR1/jboss-dependency-2.0.0.CR1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.mvel:mvel:jar:1.3.7-java1.5:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/mvel/mvel/1.3.7-java1.5/mvel-1.3.7-java1.5.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: antlr:antlr:jar:2.7.6:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/antlr/antlr/2.7.6/antlr-2.7.6.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: wutka-dtdparser:dtdparser121:jar:1.2.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/wutka-dtdparser/dtdparser121/1.2.1/dtdparser121-1.2.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: commons-fileupload:commons-fileupload:jar:1.2.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/commons-fileupload/commons-fileupload/1.2.1/commons-fileupload-1.2.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: javax.servlet:servlet-api:jar:2.5:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: javax.annotation:jsr250-api:jar:1.0:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: pdfbox:pdfbox:jar:0.6.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/pdfbox/pdfbox/0.6.4/pdfbox-0.6.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: commons-codec:commons-codec:jar:1.2:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/commons-codec/commons-codec/1.2/commons-codec-1.2.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss.microcontainer:jboss-kernel:jar:2.0.0.CR1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/microcontainer/jboss-kernel/2.0.0.CR1/jboss-kernel-2.0.0.CR1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: com.sun.xml.bind:jaxb-xjc:jar:2.1.7:runtime">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/sun/xml/bind/jaxb-xjc/2.1.7/jaxb-xjc-2.1.7.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.slf4j:slf4j-api:jar:1.5.5:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/slf4j/slf4j-api/1.5.5/slf4j-api-1.5.5.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: jboss:jboss-jmx:jar:4.2.2.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/jboss/jboss-jmx/4.2.2.GA/jboss-jmx-4.2.2.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: javax.activation:activation:jar:1.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/javax/activation/activation/1.1/activation-1.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: com.sun.xml.fastinfoset:FastInfoset:jar:1.2.2:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/sun/xml/fastinfoset/FastInfoset/1.2.2/FastInfoset-1.2.2.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: apache-xerces:xercesImpl:jar:2.9.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/apache-xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: xerces:xercesImpl:jar:2.8.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: com.sun.xml.bind:jaxb-impl:jar:2.1.7:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/sun/xml/bind/jaxb-impl/2.1.7/jaxb-impl-2.1.7.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: dom4j:dom4j:jar:1.6.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.codehaus.jettison:jettison:jar:1.0.1:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/codehaus/jettison/jettison/1.0.1/jettison-1.0.1.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: mysql:mysql-connector-java:jar:5.0.8:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/mysql/mysql-connector-java/5.0.8/mysql-connector-java-5.0.8.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.apache.jackrabbit:jackrabbit-jcr-commons:jar:1.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/apache/jackrabbit/jackrabbit-jcr-commons/1.4/jackrabbit-jcr-commons-1.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: commons-io:commons-io:jar:1.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/commons-io/commons-io/1.4/commons-io-1.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: jboss:jboss-ejb3x:jar:4.2.2.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/jboss/jboss-ejb3x/4.2.2.GA/jboss-ejb3x-4.2.2.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jboss.resteasy:resteasy-jaxrs:jar:1.0-beta-8:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jboss/resteasy/resteasy-jaxrs/1.0-beta-8/resteasy-jaxrs-1.0-beta-8.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.apache.lucene:lucene-core:jar:2.2.0:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/apache/lucene/lucene-core/2.2.0/lucene-core-2.2.0.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: com.google.code.gson:gson:jar:1.2.2:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/com/google/code/gson/gson/1.2.2/gson-1.2.2.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.textmining:tm-extractors:jar:0.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/textmining/tm-extractors/0.4/tm-extractors-0.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jbpm.jbpm3:jsf-console-jbpm4jsf:jar:3.3.0.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jbpm/jbpm3/jsf-console-jbpm4jsf/3.3.0.GA/jsf-console-jbpm4jsf-3.3.0.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jbpm/jbpm3/jsf-console-jbpm4jsf/3.3.0.GA/jsf-console-jbpm4jsf-3.3.0.GA-sources.jar!/" />
-        </SOURCES>
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: jboss:jboss-system:jar:4.2.2.GA:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/jboss/jboss-system/4.2.2.GA/jboss-system-4.2.2.GA.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.scannotation:scannotation:jar:1.0.2:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/scannotation/scannotation/1.0.2/scannotation-1.0.2.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jbpm.jbpm3:bpm-spec-integration-jboss42:jar:config:3.3.1-SNAPSHOT:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jbpm/jbpm3/bpm-spec-integration-jboss42/3.3.1-SNAPSHOT/bpm-spec-integration-jboss42-3.3.1-SNAPSHOT-config.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jbpm.jbpm3:bpm-spec-integration-jbpm3:jar:config:3.3.1-SNAPSHOT:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jbpm/jbpm3/bpm-spec-integration-jbpm3/3.3.1-SNAPSHOT/bpm-spec-integration-jbpm3-3.3.1-SNAPSHOT-config.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jbpm.jbpm3:bpm-spec-integration-jboss42:jar:3.3.1-SNAPSHOT:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jbpm/jbpm3/bpm-spec-integration-jboss42/3.3.1-SNAPSHOT/bpm-spec-integration-jboss42-3.3.1-SNAPSHOT.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jbpm/jbpm3/bpm-spec-integration-jboss42/3.3.1-SNAPSHOT/bpm-spec-integration-jboss42-3.3.1-SNAPSHOT-sources.jar!/" />
-        </SOURCES>
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: org.jbpm.jbpm3:bpm-spec-integration-jbpm3:jar:3.3.1-SNAPSHOT:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jbpm/jbpm3/bpm-spec-integration-jbpm3/3.3.1-SNAPSHOT/bpm-spec-integration-jbpm3-3.3.1-SNAPSHOT.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/org/jbpm/jbpm3/bpm-spec-integration-jbpm3/3.3.1-SNAPSHOT/bpm-spec-integration-jbpm3-3.3.1-SNAPSHOT-sources.jar!/" />
-        </SOURCES>
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: net.sf.ezmorph:ezmorph:jar:1.0.6:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/net/sf/ezmorph/ezmorph/1.0.6/ezmorph-1.0.6.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: net.sf.json-lib:json-lib:jar:2.2.3:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/net/sf/json-lib/json-lib/2.2.3/json-lib-2.2.3.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: commons-beanutils:commons-beanutils:jar:1.7.0:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntry type="module-library">
-      <library name="M2 Dep: commons-lang:commons-lang:jar:2.4:compile">
-        <CLASSES>
-          <root url="jar://$MODULE_DIR$/../../../../../../../.m2/repository/commons-lang/commons-lang/2.4/commons-lang-2.4.jar!/" />
-        </CLASSES>
-        <JAVADOC />
-        <SOURCES />
-      </library>
-    </orderEntry>
-    <orderEntryProperties />
-  </component>
-</module>
-

Modified: jbpm3/branches/jbpm-3.2-soa/modules/distribution/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/distribution/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/distribution/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id$ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - Distribution</name>
+  <name>jBPM3 - Distribution</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jbpm-distribution</artifactId>
   <packaging>pom</packaging>
@@ -27,10 +25,9 @@
 
   <!-- Properties -->
   <properties>
-    <assembly.id>assembly-modules</assembly.id>
-    <project.build.assemblyDirectory>${project.build.directory}/${assembly.id}</project.build.assemblyDirectory>
-    <resources.outputDirectory>${project.build.directory}/resources</resources.outputDirectory>
-    <resources.directory>${basedir}/src/main/resources</resources.directory>
+    <assemblyFinalName>assembly-modules</assemblyFinalName>
+    <assemblyDirectory>${project.build.directory}/${assemblyFinalName}</assemblyDirectory>
+    <resourcesDirectory>${basedir}/src/main/resources</resourcesDirectory>
   </properties>
 
   <!-- Dependencies -->
@@ -175,17 +172,15 @@
         <artifactId>maven-assembly-plugin</artifactId>
         <executions>
           <execution>
-            <id>${assembly.id}</id>
             <phase>process-resources</phase>
             <goals>
               <goal>directory-single</goal>
             </goals>
             <configuration>
-              <finalName>${assembly.id}</finalName>
-              <ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
+              <finalName>${assemblyFinalName}</finalName>
               <appendAssemblyId>false</appendAssemblyId>
               <descriptors>
-                <descriptor>scripts/${assembly.id}.xml</descriptor>
+                <descriptor>scripts/assembly-modules.xml</descriptor>
               </descriptors>
             </configuration>
           </execution>
@@ -196,7 +191,6 @@
         <artifactId>maven-antrun-plugin</artifactId>
         <executions>
           <execution>
-            <id>installer-resources</id>
             <phase>process-resources</phase>
             <goals>
               <goal>run</goal>
@@ -205,10 +199,9 @@
               <tasks>
                 <property name="project.version" value="${project.version}" />
                 <property name="project.build.dir" value="${project.build.directory}" />
-                <property name="project.build.assembly.resources"
-                  value="${project.build.assemblyDirectory}/resources" />
-                <property name="resources.dir" value="${resources.directory}" />
-                <property name="resources.output.dir" value="${resources.outputDirectory}" />
+                <property name="project.build.assembly.dir" value="${assemblyDirectory}" />
+                <property name="resources.dir" value="${resourcesDirectory}" />
+                <property name="resources.output.dir" value="${project.build.outputDirectory}" />
                 <property name="jbpm.home" value="${jbpm.home}" />
                 <property name="container" value="${container}" />
                 <property name="jboss.home" value="${jboss.home}" />
@@ -231,7 +224,8 @@
               <goal>izpack</goal>
             </goals>
             <configuration>
-              <descriptor>${resources.directory}/installer/install-definition.xml</descriptor>
+              <descriptor>${project.build.outputDirectory}/install-definition.xml</descriptor>
+              <descriptorEncoding>${project.build.sourceEncoding}</descriptorEncoding>
               <kind>installer</kind>
             </configuration>
           </execution>
@@ -265,11 +259,9 @@
                 <configuration>
                   <tasks>
                     <!-- replace jsf-console.war with the SOA platform build -->
-                    <property name="project.build.assembly.lib"
-                      value="${project.build.assemblyDirectory}/lib" />
+                    <property name="project.build.assembly.lib" value="${assemblyDirectory}/lib" />
                     <copy file="${project.build.assembly.lib}/jsf-console-soa.war"
-                      tofile="${project.build.assembly.lib}/jsf-console.war"
-                      overwrite="yes" />
+                      tofile="${project.build.assembly.lib}/jsf-console.war" overwrite="yes" />
                   </tasks>
                 </configuration>
               </execution>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/distribution/scripts/antrun-installer.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/distribution/scripts/antrun-installer.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/distribution/scripts/antrun-installer.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -1,8 +1,13 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!-- $Id$ -->
+<!-- ====================================================================== -->
+<!--  jBPM: Workflow in Java                                                -->
+<!--                                                                        -->
+<!--  Distributable under LGPL license.                                     -->
+<!--  See terms of license at http://www.gnu.org.                           -->
+<!-- ====================================================================== -->
 
-<project name="installer">
+<project name="distro-resources">
   <macrodef name="macro-disable">
     <attribute name="file" />
     <attribute name="section" />
@@ -33,6 +38,20 @@
     </sequential>
   </macrodef>
 
+  <macrodef name="macro-hibernate-cfg">
+    <attribute name="file" />
+    <sequential>
+      <macro-disable file="@{file}" section="JDBC connection properties" />
+      <macro-enable file="@{file}" section="DataSource properties" />
+      <macro-enable file="@{file}" section="JTA transaction properties" />
+      <macro-disable file="@{file}" section="Memory cache" />
+      <macro-enable file="@{file}" section="Clustered cache" />
+      <replace file="@{file}"
+               token="usage=&quot;nonstrict-read-write&quot;"
+               value="usage=&quot;transactional&quot;" />
+    </sequential>
+  </macrodef>
+
   <!-- ================================================================== -->
   <!-- Configuration                                                      -->
   <!-- ================================================================== -->
@@ -40,25 +59,25 @@
     <basename file="${basedir}" property="example.name" />
     <echo message="${example.name}" />
     <!-- jpdl resources -->
-    <mkdir dir="${project.build.assembly.resources}/jbpm-examples-dist/${example.name}/src/main/jpdl" />
-    <copy todir="${project.build.assembly.resources}/jbpm-examples-dist/${example.name}/src/main/jpdl">
-      <fileset dir="${project.build.assembly.resources}/jbpm-examples-dev/src/test/resources/${example.name}" />
+    <mkdir dir="${project.build.assembly.dir}/examples/${example.name}/src/main/jpdl" />
+    <copy todir="${project.build.assembly.dir}/examples/${example.name}/src/main/jpdl">
+      <fileset dir="${project.build.assembly.dir}/jbpm-examples/src/test/resources/${example.name}" />
     </copy>
     <!-- main sources -->
-    <mkdir dir="${project.build.assembly.resources}/jbpm-examples-dist/${example.name}/src/main/java" />
-    <copy todir="${project.build.assembly.resources}/jbpm-examples-dist/${example.name}/src/main">
-      <fileset dir="${project.build.assembly.resources}/jbpm-examples-dev/src/test"
+    <mkdir dir="${project.build.assembly.dir}/examples/${example.name}/src/main/java" />
+    <copy todir="${project.build.assembly.dir}/examples/${example.name}/src/main">
+      <fileset dir="${project.build.assembly.dir}/jbpm-examples/src/test"
                includes="java/org/jbpm/examples/${example.name}/**"
                excludes="**/*Test.java" />
     </copy>
     <!-- test sources -->
-    <mkdir dir="${project.build.assembly.resources}/jbpm-examples-dist/${example.name}/src/test/java" />
-    <copy todir="${project.build.assembly.resources}/jbpm-examples-dist/${example.name}">
-      <fileset dir="${project.build.assembly.resources}/jbpm-examples-dev"
+    <mkdir dir="${project.build.assembly.dir}/examples/${example.name}/src/test/java" />
+    <copy todir="${project.build.assembly.dir}/examples/${example.name}">
+      <fileset dir="${project.build.assembly.dir}/jbpm-examples"
                includes="src/test/java/org/jbpm/examples/${example.name}/*Test.java" />
     </copy>
     <!-- project model -->
-    <copy todir="${project.build.assembly.resources}/jbpm-examples-dist/${example.name}"
+    <copy todir="${project.build.assembly.dir}/examples/${example.name}"
           file="${resources.dir}/examples/module/pom.xml">
       <filterset>
         <filter token="example.name" value="${example.name}" />
@@ -68,94 +87,35 @@
 
   <target name="reorganize-examples">
     <subant genericantfile="${ant.file}" target="reorganize-example" inheritall="yes">
-      <dirset dir="${project.build.assembly.resources}/jbpm-examples-dev/src/test/resources"
+      <dirset dir="${project.build.assembly.dir}/jbpm-examples/src/test/resources"
               includes="*" />
     </subant>
-    <copy todir="${project.build.assembly.resources}/jbpm-examples-dist">
+    <copy todir="${project.build.assembly.dir}/examples">
       <fileset dir="${resources.dir}/examples" excludes="module/**" />
     </copy>
   </target>
 
-  <target name="configure-hibernate">
-    <property name="db2.cfg.xml"
-              value="${project.build.assembly.resources}/jbpm-jpdl-config/hibernate.cfg.db2.xml" />
-    <macro-disable file="${db2.cfg.xml}" section="JDBC connection properties" />
-    <macro-enable file="${db2.cfg.xml}" section="DataSource properties" />
-    <macro-enable file="${db2.cfg.xml}" section="JTA transaction properties" />
-    <macro-disable file="${db2.cfg.xml}" section="Memory cache" />
-    <macro-enable file="${db2.cfg.xml}" section="Clustered cache" />
-    <replace file="${db2.cfg.xml}"
-             token="usage=&quot;nonstrict-read-write&quot;"
-             value="usage=&quot;transactional&quot;" />
-
+  <target name="process-hibernate-cfg">
     <property name="hsqldb.cfg.xml"
-              value="${project.build.assembly.resources}/jbpm-jpdl-config/hibernate.cfg.hsqldb.xml" />
+              value="${project.build.assembly.dir}/config/hibernate.cfg.hsqldb.xml" />
     <macro-disable file="${hsqldb.cfg.xml}" section="JDBC connection properties" />
     <macro-disable file="${hsqldb.cfg.xml}" section="Automatic schema creation" />
     <macro-enable file="${hsqldb.cfg.xml}" section="DataSource properties" />
     <macro-enable file="${hsqldb.cfg.xml}" section="JTA transaction properties" />
 
-    <property name="mssql.cfg.xml"
-              value="${project.build.assembly.resources}/jbpm-jpdl-config/hibernate.cfg.mssql.xml" />
-    <macro-disable file="${mssql.cfg.xml}" section="JDBC connection properties" />
-    <macro-enable file="${mssql.cfg.xml}" section="DataSource properties" />
-    <macro-enable file="${mssql.cfg.xml}" section="JTA transaction properties" />
-    <macro-disable file="${mssql.cfg.xml}" section="Memory cache" />
-    <macro-enable file="${mssql.cfg.xml}" section="Clustered cache" />
-    <replace file="${mssql.cfg.xml}"
-             token="usage=&quot;nonstrict-read-write&quot;"
-             value="usage=&quot;transactional&quot;" />
-
-    <property name="mysql.cfg.xml"
-              value="${project.build.assembly.resources}/jbpm-jpdl-config/hibernate.cfg.mysql.xml" />
-    <macro-disable file="${mysql.cfg.xml}" section="JDBC connection properties" />
-    <macro-enable file="${mysql.cfg.xml}" section="DataSource properties" />
-    <macro-enable file="${mysql.cfg.xml}" section="JTA transaction properties" />
-    <macro-disable file="${mysql.cfg.xml}" section="Memory cache" />
-    <macro-enable file="${mysql.cfg.xml}" section="Clustered cache" />
-    <replace file="${mysql.cfg.xml}"
-             token="usage=&quot;nonstrict-read-write&quot;"
-             value="usage=&quot;transactional&quot;" />
-
-    <property name="oracle.cfg.xml"
-              value="${project.build.assembly.resources}/jbpm-jpdl-config/hibernate.cfg.oracle.xml" />
-    <macro-disable file="${oracle.cfg.xml}" section="JDBC connection properties" />
-    <macro-enable file="${oracle.cfg.xml}" section="DataSource properties" />
-    <macro-enable file="${oracle.cfg.xml}" section="JTA transaction properties" />
-    <macro-disable file="${oracle.cfg.xml}" section="Memory cache" />
-    <macro-enable file="${oracle.cfg.xml}" section="Clustered cache" />
-    <replace file="${oracle.cfg.xml}"
-             token="usage=&quot;nonstrict-read-write&quot;"
-             value="usage=&quot;transactional&quot;" />
-
-    <property name="postgresql.cfg.xml"
-              value="${project.build.assembly.resources}/jbpm-jpdl-config/hibernate.cfg.postgresql.xml" />
-    <macro-disable file="${postgresql.cfg.xml}" section="JDBC connection properties" />
-    <macro-enable file="${postgresql.cfg.xml}" section="DataSource properties" />
-    <macro-enable file="${postgresql.cfg.xml}" section="JTA transaction properties" />
-    <macro-disable file="${postgresql.cfg.xml}" section="Memory cache" />
-    <macro-enable file="${postgresql.cfg.xml}" section="Clustered cache" />
-    <replace file="${postgresql.cfg.xml}"
-             token="usage=&quot;nonstrict-read-write&quot;"
-             value="usage=&quot;transactional&quot;" />
-
-    <property name="sybase.cfg.xml"
-              value="${project.build.assembly.resources}/jbpm-jpdl-config/hibernate.cfg.sybase.xml" />
-    <macro-disable file="${sybase.cfg.xml}" section="JDBC connection properties" />
-    <macro-enable file="${sybase.cfg.xml}" section="DataSource properties" />
-    <macro-enable file="${sybase.cfg.xml}" section="JTA transaction properties" />
-    <macro-disable file="${sybase.cfg.xml}" section="Memory cache" />
-    <macro-enable file="${sybase.cfg.xml}" section="Clustered cache" />
-    <replace file="${sybase.cfg.xml}"
-             token="usage=&quot;nonstrict-read-write&quot;"
-             value="usage=&quot;transactional&quot;" />
+    <macro-hibernate-cfg file="${project.build.assembly.dir}/config/hibernate.cfg.db2.xml"/>
+    <macro-hibernate-cfg file="${project.build.assembly.dir}/config/hibernate.cfg.mssql.xml"/>
+    <macro-hibernate-cfg file="${project.build.assembly.dir}/config/hibernate.cfg.mysql.xml"/>
+    <macro-hibernate-cfg file="${project.build.assembly.dir}/config/hibernate.cfg.oracle.xml"/>
+    <macro-hibernate-cfg file="${project.build.assembly.dir}/config/hibernate.cfg.postgresql.xml"/>
+    <macro-hibernate-cfg file="${project.build.assembly.dir}/config/hibernate.cfg.sybase.xml"/>
   </target>
 
   <!-- ================================================================== -->
   <!-- Distribution                                                       -->
   <!-- ================================================================== -->
   <target name="process-resources"
-          depends="configure-hibernate, reorganize-examples"
+          depends="process-hibernate-cfg, reorganize-examples"
           description="prepares installer resources">
     <copy todir="${resources.output.dir}" overwrite="true">
       <fileset dir="${resources.dir}/installer" />

Modified: jbpm3/branches/jbpm-3.2-soa/modules/distribution/scripts/assembly-modules.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/distribution/scripts/assembly-modules.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/distribution/scripts/assembly-modules.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -1,7 +1,15 @@
-<assembly xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd">
+<?xml version="1.0" encoding="UTF-8"?>
 
-  <id>deploy-artifacts</id>
+<!-- ====================================================================== -->
+<!--  jBPM: Workflow in Java                                                -->
+<!--                                                                        -->
+<!--  Distributable under LGPL license.                                     -->
+<!--  See terms of license at http://www.gnu.org.                           -->
+<!-- ====================================================================== -->
+
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
+  <id>modules</id>
   <formats>
     <format>dir</format>
   </formats>
@@ -9,90 +17,53 @@
 
   <!-- Dependency Sets -->
   <dependencySets>
-  
     <!-- lib -->
     <dependencySet>
       <outputDirectory>lib</outputDirectory>
       <outputFileNameMapping>${artifact.artifactId}${dashClassifier?}.${artifact.extension}</outputFileNameMapping>
-      <useStrictFiltering>true</useStrictFiltering>
-      <scope>compile</scope>
-      <unpack>false</unpack>
-    </dependencySet>
-    <dependencySet>
-      <outputDirectory>lib</outputDirectory>
-      <outputFileNameMapping>${artifact.artifactId}${dashClassifier?}.${artifact.extension}</outputFileNameMapping>
-      <useStrictFiltering>true</useStrictFiltering>
-      <scope>provided</scope>
-      <unpack>false</unpack>
-    </dependencySet>
-    <dependencySet>
-      <outputDirectory>lib</outputDirectory>
-      <outputFileNameMapping>${artifact.artifactId}${dashClassifier?}.${artifact.extension}</outputFileNameMapping>
-      <useStrictFiltering>true</useStrictFiltering>
+      <useProjectArtifact>false</useProjectArtifact>
       <scope>test</scope>
-      <unpack>false</unpack>
     </dependencySet>
-    
-    <!-- resources -->
+
+    <!-- config -->
     <dependencySet>
-      <outputDirectory>resources/jbpm-jpdl-config</outputDirectory>
-      <useStrictFiltering>true</useStrictFiltering>
+      <outputDirectory>config</outputDirectory>
+      <useProjectArtifact>false</useProjectArtifact>
       <includes>
         <include>org.jbpm.jbpm3:jbpm-jpdl:jar:config</include>
       </includes>
       <unpack>true</unpack>
     </dependencySet>
+
+    <!-- examples -->
     <dependencySet>
-      <outputDirectory>resources/jbpm-enterprise-config</outputDirectory>
-      <useStrictFiltering>true</useStrictFiltering>
+      <outputDirectory>jbpm-examples</outputDirectory>
+      <useProjectArtifact>false</useProjectArtifact>
       <includes>
-        <include>org.jbpm.jbpm3:jbpm-enterprise:jar:config</include>
-      </includes>
-      <unpack>true</unpack>
-    </dependencySet>
-    <dependencySet>
-      <outputDirectory>resources/jbpm-examples-dev</outputDirectory>
-      <useStrictFiltering>true</useStrictFiltering>
-      <includes>
         <include>org.jbpm.jbpm3:jbpm-examples:jar:examples</include>
       </includes>
       <unpack>true</unpack>
     </dependencySet>
-    
+
     <!-- sources -->
     <dependencySet>
       <!-- Must be called 'src' because the GPD has a dependency on it -->
       <outputDirectory>src</outputDirectory>
       <outputFileNameMapping>${artifact.artifactId}${dashClassifier?}.${artifact.extension}</outputFileNameMapping>
-      <useStrictFiltering>true</useStrictFiltering>
+      <useProjectArtifact>false</useProjectArtifact>
       <includes>
-        <include>org.jbpm.jbpm3:*:jar:sources</include>
+        <include>*:sources</include>
       </includes>
-      <unpack>false</unpack>
     </dependencySet>
-    
+
     <!-- javadoc -->
     <dependencySet>
       <outputDirectory>javadoc</outputDirectory>
       <outputFileNameMapping>${artifact.artifactId}${dashClassifier?}.${artifact.extension}</outputFileNameMapping>
-      <useStrictFiltering>true</useStrictFiltering>
+      <useProjectArtifact>false</useProjectArtifact>
       <includes>
-        <include>org.jbpm.jbpm3:*:jar:javadoc</include>
+        <include>*:javadoc</include>
       </includes>
-      <unpack>false</unpack>
     </dependencySet>
   </dependencySets>
-
-  <fileSets>
-    <!-- etc -->
-    <fileSet>
-      <directory>src/main/etc</directory>
-      <outputDirectory>etc</outputDirectory>
-      <includes>
-        <include>JBossORG-EULA.txt</include>
-        <include>release.notes.html</include>
-        <include>version.info.xml</include>
-      </includes>
-    </fileSet>
-  </fileSets>
 </assembly>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/examples/module/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/examples/module/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/examples/module/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id$ -->
-
 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - Example: @example.name@</name>
+  <name>jBPM3 - Example: @example.name@</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jbpm-example- at example.name@</artifactId>
   <packaging>jar</packaging>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/examples/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/examples/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/examples/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id$ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - Distribution Examples</name>
+  <name>jBPM3 - Distribution Examples</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jbpm-examples-dist</artifactId>
   <packaging>pom</packaging>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/installer/download-helper.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/installer/download-helper.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/installer/download-helper.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -1,8 +1,13 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!-- $Id$ -->
+<!-- ====================================================================== -->
+<!--  jBPM: Workflow in Java                                                -->
+<!--                                                                        -->
+<!--  Distributable under LGPL license.                                     -->
+<!--  See terms of license at http://www.gnu.org.                           -->
+<!-- ====================================================================== -->
+
 <project name="download-helper">
-
   <property name="jboss.version" value="4.2.3.GA" />
   <property name="eclipse.release" value="galileo" />
   <property name="eclipse.version" value="SR2" />

Modified: jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/installer/install-definition.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/installer/install-definition.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/distribution/src/main/resources/installer/install-definition.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -17,8 +17,8 @@
   </locale>
 
   <!-- It is necessary to include everything needed, in this case ant itself -->
-  <jar src="@{project.build.assemblyDirectory}/lib/ant.jar" stage="both" />
-  <jar src="@{project.build.assemblyDirectory}/lib/ant-launcher.jar" stage="both" />
+  <jar src="@{assemblyDirectory}/lib/ant.jar" stage="both" />
+  <jar src="@{assemblyDirectory}/lib/ant-launcher.jar" stage="both" />
 
   <!-- Setup the Ant Action Listener -->
   <listeners>
@@ -27,11 +27,11 @@
 
   <!-- Resources -->
   <resources>
-    <res id="TargetPanel.dir" src="@{resources.outputDirectory}/target-panel-dir.txt" />
-    <res id="AntActionsSpec.xml" src="@{resources.outputDirectory}/ant-actions-spec.xml" />
-    <res id="userInputSpec.xml" src="@{resources.outputDirectory}/user-input-spec.xml" />
-    <res id="userInputLang.xml_eng" src="@{resources.outputDirectory}/user-input-lang_eng.xml" />
-    <res id="userInputLang.xml_spa" src="@{resources.outputDirectory}/user-input-lang_spa.xml" />
+    <res id="TargetPanel.dir" src="@{project.build.outputDirectory}/target-panel-dir.txt" />
+    <res id="AntActionsSpec.xml" src="@{project.build.outputDirectory}/ant-actions-spec.xml" />
+    <res id="userInputSpec.xml" src="@{project.build.outputDirectory}/user-input-spec.xml" />
+    <res id="userInputLang.xml_eng" src="@{project.build.outputDirectory}/user-input-lang_eng.xml" />
+    <res id="userInputLang.xml_spa" src="@{project.build.outputDirectory}/user-input-lang_spa.xml" />
   </resources>
 
   <!-- Variables -->
@@ -126,16 +126,14 @@
       <description>Standalone process engine and configuration files</description>
 
       <!-- jbpm3/ -->
-      <file src="@{project.build.assemblyDirectory}/etc/release.notes.html" targetdir="$INSTALL_PATH" />
-      <file src="@{project.build.assemblyDirectory}/etc/JBossORG-EULA.txt" targetdir="$INSTALL_PATH" />
+      <file src="@{basedir}/src/main/etc/release.notes.html" targetdir="$INSTALL_PATH" />
+      <file src="@{basedir}/src/main/etc/JBossORG-EULA.txt" targetdir="$INSTALL_PATH" />
 
       <!-- jbpm3/config -->
-      <file src="@{project.build.assemblyDirectory}/lib/jbpm-jpdl-config.jar" targetdir="$INSTALL_PATH/config"
-        unpack="true" />
-      <file src="@{project.build.assemblyDirectory}/etc/version.info.xml" targetdir="$INSTALL_PATH/config" />
+      <fileset dir="@{assemblyDirectory}/config" targetdir="$INSTALL_PATH/config" />
 
       <!-- jbpm3/database -->
-      <file src="@{project.build.assemblyDirectory}/lib/jbpm-db.jar" targetdir="$INSTALL_PATH/database"
+      <file src="@{assemblyDirectory}/lib/jbpm-db.jar" targetdir="$INSTALL_PATH/database"
         unpack="true" />
     </pack>
 
@@ -143,12 +141,13 @@
       <description>User guide and examples</description>
 
       <!-- jbpm3/docs -->
-      <file src="@{project.build.assemblyDirectory}/lib/jbpm-userguide.jdocbook" targetdir="$INSTALL_PATH/docs/userguide"
+      <file src="@{assemblyDirectory}/lib/jbpm-userguide.jdocbook"
+        targetdir="$INSTALL_PATH/docs/userguide"
         unpack="true" />
-      <fileset dir="@{project.build.assemblyDirectory}/javadoc" targetdir="$INSTALL_PATH/docs" />
+      <fileset dir="@{assemblyDirectory}/javadoc" targetdir="$INSTALL_PATH/docs" />
 
       <!-- jbpm3/examples -->
-      <fileset dir="@{project.build.assemblyDirectory}/resources/jbpm-examples-dist"
+      <fileset dir="@{assemblyDirectory}/examples"
         targetdir="$INSTALL_PATH/examples" />
     </pack>
 
@@ -157,13 +156,14 @@
 useful to develop and test jBPM applications</description>
 
       <!-- jbpm3/designer -->
-      <fileset dir="@{project.build.assemblyDirectory}/lib" targetdir="$INSTALL_PATH/designer">
+      <fileset dir="@{assemblyDirectory}/lib" targetdir="$INSTALL_PATH/designer">
         <include name="jbpm-jpdl-designer-site.zip" />
       </fileset>
-      <file src="@{project.build.assemblyDirectory}/etc/version.info.xml" targetdir="$INSTALL_PATH/src/resources/gpd" />
+      <file src="@{basedir}/src/main/etc/version.info.xml"
+        targetdir="$INSTALL_PATH/src/resources/gpd" />
 
       <!-- jbpm3/lib -->
-      <fileset dir="@{project.build.assemblyDirectory}/lib" targetdir="$INSTALL_PATH/lib">
+      <fileset dir="@{assemblyDirectory}/lib" targetdir="$INSTALL_PATH/lib">
         <include name="antlr.jar" />
         <include name="asm.jar" />
         <include name="bsh.jar" />
@@ -183,7 +183,7 @@
       </fileset>
 
       <!-- jbpm3/src - Must be called 'src' because the GPD depends on it -->
-      <fileset dir="@{project.build.assemblyDirectory}/src" targetdir="$INSTALL_PATH/src">
+      <fileset dir="@{assemblyDirectory}/src" targetdir="$INSTALL_PATH/src">
         <include name="jsf-console-sources.jar" />
         <include name="jbpm-jpdl-sources.jar" />
         <include name="jbpm-enterprise-sources.jar" />
@@ -200,59 +200,59 @@
       <description>Application server integration modules</description>
 
       <!-- jbpm/jbpm-service.sar -->
-      <fileset dir="@{project.build.assemblyDirectory}/resources/jbpm-enterprise-config"
+      <file src="@{assemblyDirectory}/lib/jbpm-enterprise-config.jar"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar"
-        excludes="META-INF" />
-      <fileset dir="@{project.build.assemblyDirectory}/lib"
+        unpack="true" />
+      <fileset dir="@{assemblyDirectory}/lib"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar">
         <include name="jbpm-jpdl.jar" />
         <include name="jbpm-identity.jar" />
       </fileset>
-      <file src="@{resources.directory}/service/jboss-service.xml"
+      <file src="@{resourcesDirectory}/service/jboss-service.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar/META-INF" />
       <file condition="isJBoss405"
-        src="@{project.build.assemblyDirectory}/lib/hibernate-jbc-cacheprovider.jar"
+        src="@{assemblyDirectory}/lib/hibernate-jbc-cacheprovider.jar"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar" />
       <file condition="isJBoss423"
-        src="@{project.build.assemblyDirectory}/lib/hibernate-jbc-cacheprovider.jar"
+        src="@{assemblyDirectory}/lib/hibernate-jbc-cacheprovider.jar"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar" />
 
       <!-- jbpm/jbpm-enterprise.jar -->
-      <file src="@{project.build.assemblyDirectory}/lib/jbpm-enterprise.jar"
+      <file src="@{assemblyDirectory}/lib/jbpm-enterprise.jar"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-enterprise.jar"
         unpack="true" />
 
       <!-- jbpm/jbpm-userguide.war -->
-      <file src="@{project.build.assemblyDirectory}/lib/jbpm-userguide.jdocbook"
+      <file src="@{assemblyDirectory}/lib/jbpm-userguide.jdocbook"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-userguide.war"
         unpack="true" />
 
       <!-- jbpm-mq-service.xml -->
-      <file src="@{resources.directory}/destination/jbpm-mq-service.xml"
+      <file src="@{resourcesDirectory}/destination/jbpm-mq-service.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy-hasingleton/jbpm"
         condition="isJBoss405" />
-      <file src="@{resources.directory}/destination/jbpm-mq-service.xml"
+      <file src="@{resourcesDirectory}/destination/jbpm-mq-service.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy-hasingleton/jbpm"
         condition="isJBoss423" />
 
       <!-- jbpm-jbm-service.xml -->
-      <file src="@{resources.directory}/destination/jbpm-jbm-service.xml"
+      <file src="@{resourcesDirectory}/destination/jbpm-jbm-service.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm"
         condition="isJBoss501" />
-      <file src="@{resources.directory}/destination/jbpm-jbm-service.xml"
+      <file src="@{resourcesDirectory}/destination/jbpm-jbm-service.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm"
         condition="isJBoss510" />
 
       <!-- jbpm-jbc1-service.xml -->
-      <file src="@{resources.directory}/cache/jbpm-jbc1-service.xml"
+      <file src="@{resourcesDirectory}/cache/jbpm-jbc1-service.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm"
         condition="isJBoss405" />
-      <file src="@{resources.directory}/cache/jbpm-jbc1-service.xml"
+      <file src="@{resourcesDirectory}/cache/jbpm-jbc1-service.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm"
         condition="isJBoss423" />
 
       <!-- Database configs to docs/examples/jbpm -->
-      <fileset dir="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config"
+      <fileset dir="@{assemblyDirectory}/config"
         targetdir="${jbossInstallPath}/docs/examples/jbpm">
         <include name="hibernate.cfg.db2.xml" />
         <include name="hibernate.cfg.hsqldb.xml" />
@@ -272,66 +272,66 @@
 
       <!-- Database DB2 -->
       <file condition="isDB2"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/jbpm-db2-ds.xml"
+        src="@{assemblyDirectory}/config/jbpm-db2-ds.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm" />
       <singlefile condition="isDB2"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/hibernate.cfg.db2.xml"
+        src="@{assemblyDirectory}/config/hibernate.cfg.db2.xml"
         target="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar/hibernate.cfg.xml" />
 
       <!-- Database Hypersonic -->
       <file condition="isHypersonic"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/jbpm-hsqldb-ds.xml"
+        src="@{assemblyDirectory}/config/jbpm-hsqldb-ds.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm" />
       <singlefile condition="isHypersonic"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/hibernate.cfg.hsqldb.xml"
+        src="@{assemblyDirectory}/config/hibernate.cfg.hsqldb.xml"
         target="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar/hibernate.cfg.xml" />
-      <fileset condition="isHypersonic" dir="@{resources.directory}/database"
+      <fileset condition="isHypersonic" dir="@{resourcesDirectory}/database"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/data">
         <include name="hypersonic/jbpmDB.*" />
       </fileset>
 
       <!-- Database MSSQL -->
       <file condition="isMSSQL"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/jbpm-mssql-ds.xml"
+        src="@{assemblyDirectory}/config/jbpm-mssql-ds.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm" />
       <singlefile condition="isMSSQL"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/hibernate.cfg.mssql.xml"
+        src="@{assemblyDirectory}/config/hibernate.cfg.mssql.xml"
         target="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar/hibernate.cfg.xml" />
 
       <!-- Database MySQL -->
       <file condition="isMySQL"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/jbpm-mysql-ds.xml"
+        src="@{assemblyDirectory}/config/jbpm-mysql-ds.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm" />
       <singlefile condition="isMySQL"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/hibernate.cfg.mysql.xml"
+        src="@{assemblyDirectory}/config/hibernate.cfg.mysql.xml"
         target="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar/hibernate.cfg.xml" />
-      <file condition="isMySQL" src="@{project.build.assemblyDirectory}/lib/mysql-connector-java.jar"
+      <file condition="isMySQL" src="@{assemblyDirectory}/lib/mysql-connector-java.jar"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/lib" />
 
       <!-- Database Oracle -->
       <file condition="isOracle"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/jbpm-oracle-ds.xml"
+        src="@{assemblyDirectory}/config/jbpm-oracle-ds.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm" />
       <singlefile condition="isOracle"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/hibernate.cfg.oracle.xml"
+        src="@{assemblyDirectory}/config/hibernate.cfg.oracle.xml"
         target="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar/hibernate.cfg.xml" />
 
       <!-- Database PostgreSQL -->
       <file condition="isPostgreSQL"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/jbpm-postgresql-ds.xml"
+        src="@{assemblyDirectory}/config/jbpm-postgresql-ds.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm" />
       <singlefile condition="isPostgreSQL"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/hibernate.cfg.postgresql.xml"
+        src="@{assemblyDirectory}/config/hibernate.cfg.postgresql.xml"
         target="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar/hibernate.cfg.xml" />
-      <file condition="isPostgreSQL" src="@{project.build.assemblyDirectory}/lib/postgresql.jar"
+      <file condition="isPostgreSQL" src="@{assemblyDirectory}/lib/postgresql.jar"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/lib" />
 
       <!-- Database Sybase -->
       <file condition="isSybase"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/jbpm-sybase-ds.xml"
+        src="@{assemblyDirectory}/config/jbpm-sybase-ds.xml"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm" />
       <singlefile condition="isSybase"
-        src="@{project.build.assemblyDirectory}/resources/jbpm-jpdl-config/hibernate.cfg.sybase.xml"
+        src="@{assemblyDirectory}/config/hibernate.cfg.sybase.xml"
         target="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar/hibernate.cfg.xml" />
     </pack>
 
@@ -344,10 +344,10 @@
       <description>Web console based on the Java Server Faces technology</description>
 
       <!-- jbpm/jsf-console.war -->
-      <file src="@{project.build.assemblyDirectory}/lib/jsf-console.war"
+      <file src="@{assemblyDirectory}/lib/jsf-console.war"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/jsf-console.war"
         unpack="true" />
-      <file src="@{project.build.assemblyDirectory}/lib/gpd-deployer.war"
+      <file src="@{assemblyDirectory}/lib/gpd-deployer.war"
         targetdir="${jbossInstallPath}/server/${jbossTargetServer}/deploy/jbpm/gpd-deployer.war"
         unpack="true" />
     </pack>
@@ -365,14 +365,14 @@
     <pack name="JBoss AS" parent="Optional Downloads" required="no" preselected="no">
       <description>Download a suitable JBoss AS distribution</description>
       <!-- http://jira.codehaus.org/browse/IZPACK-158 -->
-      <file src="@{resources.directory}/installer/download-helper.xml"
+      <file src="@{resourcesDirectory}/installer/download-helper.xml"
         targetdir="$INSTALL_PATH/uninstall" />
     </pack>
 
     <!-- Eclipse -->
     <pack name="Eclipse" parent="Optional Downloads" required="no" preselected="no">
       <description>Download a suitable Eclipse distribution</description>
-      <file src="@{resources.directory}/installer/download-helper.xml"
+      <file src="@{resourcesDirectory}/installer/download-helper.xml"
         targetdir="$INSTALL_PATH/uninstall" />
     </pack>
   </packs>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/enterprise/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/enterprise/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/enterprise/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -10,7 +10,7 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - Enterprise</name>
+  <name>jBPM3 - Enterprise</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jbpm-enterprise</artifactId>
   <packaging>ejb</packaging>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/enterprise/scripts/antrun-test-jars.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/enterprise/scripts/antrun-test-jars.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/enterprise/scripts/antrun-test-jars.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -1,17 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-<!-- $Id$ -->
+<!-- ====================================================================== -->
+<!--  jBPM: Workflow in Java                                                -->
+<!--                                                                        -->
+<!--  Distributable under LGPL license.                                     -->
+<!--  See terms of license at http://www.gnu.org.                           -->
+<!-- ====================================================================== -->
 
-<project>
-
+<project name="test-jars">
   <description>jBPM enterprise test archive builder</description>
 
-  <!-- ================================================================== -->
-  <!-- Building                                                           -->
-  <!-- ================================================================== -->
-
   <target name="build-test-jars" description="Build the test deployments">
-
     <mkdir dir="${tests.output.dir}/test-libs" />
 
     <!-- enterprise-test -->
@@ -25,9 +24,5 @@
     <zip destfile="${tests.output.dir}/test-libs/fork-join-example.par">
       <fileset dir="${tests.resources.dir}/deployment/fork-join-example" />
     </zip>
-
-    <!-- Please add alphabetically -->
-
   </target>
-
 </project>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/examples/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/examples/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/examples/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id$ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - Examples</name>
+  <name>jBPM3 - Examples</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jbpm-examples</artifactId>
   <packaging>jar</packaging>
@@ -109,8 +107,6 @@
               <goal>single</goal>
             </goals>
             <configuration>
-              <finalName>${project.build.finalName}</finalName>
-              <appendAssemblyId>true</appendAssemblyId>
               <descriptors>
                 <descriptor>scripts/assembly-examples.xml</descriptor>
               </descriptors>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/examples/scripts/assembly-examples.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/examples/scripts/assembly-examples.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/examples/scripts/assembly-examples.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -1,5 +1,15 @@
-<assembly xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd">
+<?xml version="1.0" encoding="UTF-8"?>
+
+  <!-- ====================================================================== -->
+  <!--  jBPM: Workflow in Java                                                -->
+  <!--                                                                        -->
+  <!--  Distributable under LGPL license.                                     -->
+  <!--  See terms of license at http://www.gnu.org.                           -->
+  <!-- ====================================================================== -->
+
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
   <id>examples</id>
   <formats>
     <format>jar</format>
@@ -7,10 +17,7 @@
   <includeBaseDirectory>false</includeBaseDirectory>
   <fileSets>
     <fileSet>
-      <directory>.</directory>
-      <outputDirectory>/</outputDirectory>
       <includes>
-        <include>scripts/*.xml</include>
         <include>src/**</include>
         <include>pom.xml</include>
       </includes>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/identity/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/identity/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/identity/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id$ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - Identity</name>
+  <name>jBPM3 - Identity</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jbpm-identity</artifactId>
   <packaging>jar</packaging>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/simulation/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/simulation/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/simulation/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id$ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - Simulation</name>
+  <name>jBPM3 - Simulation</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jbpm-simulation</artifactId>
   <packaging>jar</packaging>

Modified: jbpm3/branches/jbpm-3.2-soa/modules/userguide/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/modules/userguide/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/modules/userguide/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id$ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - Userguide</name>
+  <name>jBPM3 - Reference Guide</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jbpm-userguide</artifactId>
   <packaging>jdocbook</packaging>

Modified: jbpm3/branches/jbpm-3.2-soa/pom.xml
===================================================================
--- jbpm3/branches/jbpm-3.2-soa/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ jbpm3/branches/jbpm-3.2-soa/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,13 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id: pom.xml 7412 2008-06-06 13:42:30Z thomas.diesler at jboss.com $ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-
-  <name>JBoss jBPM3</name>
+  <name>jBPM3</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jbpm</artifactId>
   <packaging>pom</packaging>
@@ -391,13 +388,6 @@
           </systemProperties>
         </configuration>
       </plugin>
-
-      <plugin>
-        <artifactId>maven-release-plugin</artifactId>
-        <configuration>
-          <tagBase>https://svn.jboss.org/repos/jbpm/jbpm3/tags</tagBase>
-        </configuration>
-      </plugin>
     </plugins>
 
     <pluginManagement>
@@ -419,6 +409,10 @@
           <artifactId>sql-maven-plugin</artifactId>
           <version>1.4</version>
         </plugin>
+        <plugin>
+        	<artifactId>maven-assembly-plugin</artifactId>
+        	<version>2.2-beta-3</version>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>

Modified: projects/jsf-console/branches/jsf-console-3.2-soa/console/pom.xml
===================================================================
--- projects/jsf-console/branches/jsf-console-3.2-soa/console/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ projects/jsf-console/branches/jsf-console-3.2-soa/console/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -1,18 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-  <!-- ====================================================================== -->
-  <!--  jBPM: Workflow in Java                                                -->
-  <!--                                                                        -->
-  <!--  Distributable under LGPL license.                                     -->
-  <!--  See terms of license at http://www.gnu.org.                           -->
-  <!-- ====================================================================== -->
+<!-- ====================================================================== -->
+<!--  jBPM: Workflow in Java                                                -->
+<!--                                                                        -->
+<!--  Distributable under LGPL license.                                     -->
+<!--  See terms of license at http://www.gnu.org.                           -->
+<!-- ====================================================================== -->
 
-  <!-- $Id$ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - Console</name>
+  <name>jBPM3 - Console</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jsf-console</artifactId>
   <packaging>war</packaging>

Modified: projects/jsf-console/branches/jsf-console-3.2-soa/gpd-deployer/pom.xml
===================================================================
--- projects/jsf-console/branches/jsf-console-3.2-soa/gpd-deployer/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ projects/jsf-console/branches/jsf-console-3.2-soa/gpd-deployer/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id$ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - GPD Deployer</name>
+  <name>jBPM3 - GPD Deployer</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>gpd-deployer</artifactId>
   <packaging>war</packaging>

Modified: projects/jsf-console/branches/jsf-console-3.2-soa/jbpm4jsf/pom.xml
===================================================================
--- projects/jsf-console/branches/jsf-console-3.2-soa/jbpm4jsf/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ projects/jsf-console/branches/jsf-console-3.2-soa/jbpm4jsf/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id: pom.xml 2644 2008-10-28 13:15:01Z heiko.braun at jboss.com $ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - 4JSF</name>
+  <name>jBPM3 - 4JSF</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jsf-console-jbpm4jsf</artifactId>
   <packaging>jar</packaging>

Modified: projects/jsf-console/branches/jsf-console-3.2-soa/pom.xml
===================================================================
--- projects/jsf-console/branches/jsf-console-3.2-soa/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ projects/jsf-console/branches/jsf-console-3.2-soa/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id: pom.xml 7412 2008-06-06 13:42:30Z thomas.diesler at jboss.com $ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3</name>
+  <name>jBPM3</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>jsf-console-parent</artifactId>
   <packaging>pom</packaging>

Modified: projects/jsf-console/branches/jsf-console-3.2-soa/soa/pom.xml
===================================================================
--- projects/jsf-console/branches/jsf-console-3.2-soa/soa/pom.xml	2010-08-09 19:44:08 UTC (rev 6557)
+++ projects/jsf-console/branches/jsf-console-3.2-soa/soa/pom.xml	2010-08-10 08:03:43 UTC (rev 6558)
@@ -7,12 +7,10 @@
 <!--  See terms of license at http://www.gnu.org.                           -->
 <!-- ====================================================================== -->
 
-<!-- $Id: pom.xml 3298 2008-12-09 21:33:53Z thomas.diesler at jboss.com $ -->
-
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
-  <name>JBoss jBPM3 - SOA Overlay</name>
+  <name>jBPM3 - SOA Overlay</name>
   <groupId>org.jbpm.jbpm3</groupId>
   <artifactId>soa-webapp</artifactId>
   <packaging>war</packaging>



More information about the jbpm-commits mailing list