JBoss JBPM SVN: r2345 - jbpm4/trunk.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-09-24 09:51:40 -0400 (Wed, 24 Sep 2008)
New Revision: 2345
Added:
jbpm4/trunk/profiles.xml.example
Modified:
jbpm4/trunk/.project
Log:
Add profiles.examples
Modified: jbpm4/trunk/.project
===================================================================
--- jbpm4/trunk/.project 2008-09-24 13:46:02 UTC (rev 2344)
+++ jbpm4/trunk/.project 2008-09-24 13:51:40 UTC (rev 2345)
@@ -6,18 +6,12 @@
</projects>
<buildSpec>
<buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
<name>org.maven.ide.eclipse.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.maven.ide.eclipse.maven2Nature</nature>
</natures>
</projectDescription>
Added: jbpm4/trunk/profiles.xml.example
===================================================================
--- jbpm4/trunk/profiles.xml.example (rev 0)
+++ jbpm4/trunk/profiles.xml.example 2008-09-24 13:51:40 UTC (rev 2345)
@@ -0,0 +1,21 @@
+<profilesXml 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/profiles-1.0.0.xsd">
+ <profiles>
+
+ <!-- This profile can also be defined in ~/.m2/settings.xml -->
+ <profile>
+ <id>jboss-home-profile</id>
+ <activation>
+ <property>
+ <name>user.name</name>
+ </property>
+ </activation>
+ <properties>
+ <jboss422.home>/home/tdiesler/svn/jbossas/tags/JBoss_4_2_2_GA/build/output/jboss-4.2.2.GA</jboss422.home>
+ <jboss423.home>/home/tdiesler/svn/jbossas/tags/JBoss_4_2_3_GA/build/output/jboss-4.2.3.GA</jboss423.home>
+ <jboss500.home>/home/tdiesler/svn/jbossas/tags/JBoss_5_0_0_CR2/build/output/jboss-5.0.0.CR2</jboss500.home>
+ </properties>
+ </profile>
+
+ </profiles>
+</profilesXml>
17 years, 6 months
JBoss JBPM SVN: r2344 - jbpm4/trunk/hudson/hudson-home.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-09-24 09:46:02 -0400 (Wed, 24 Sep 2008)
New Revision: 2344
Modified:
jbpm4/trunk/hudson/hudson-home/command.sh
Log:
Add clean
Modified: jbpm4/trunk/hudson/hudson-home/command.sh
===================================================================
--- jbpm4/trunk/hudson/hudson-home/command.sh 2008-09-24 13:41:21 UTC (rev 2343)
+++ jbpm4/trunk/hudson/hudson-home/command.sh 2008-09-24 13:46:02 UTC (rev 2344)
@@ -16,7 +16,7 @@
#
cd $JBPMDIR
cp profiles.xml.example profiles.xml
-MVN_CMD="mvn $ENVIRONMENT process-test-classes"
+MVN_CMD="mvn $ENVIRONMENT clean process-test-classes"
echo $MVN_CMD; $MVN_CMD 2>&1; MVN_STATUS=$?
if [ $MVN_STATUS -ne 0 ]; then
echo maven exit status $MVN_STATUS
@@ -35,4 +35,3 @@
MVN_CMD="mvn -o $ENVIRONMENT -DtestFailureIgnore=true test"
echo $MVN_CMD; $MVN_CMD 2>&1 | tee $WORKSPACE/tests.log
cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
-cat $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$CONTAINER.txt
17 years, 6 months
JBoss JBPM SVN: r2343 - in jbpm4/trunk: hudson/hudson-home and 3 other directories.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-09-24 09:41:21 -0400 (Wed, 24 Sep 2008)
New Revision: 2343
Added:
jbpm4/trunk/hudson/hudson-home/jobs/jBPM4-JDK1.5/
jbpm4/trunk/hudson/hudson-home/jobs/jBPM4-JDK1.6/
Removed:
jbpm4/trunk/hudson/hudson-home/jobs/jBPM-Matrix/
jbpm4/trunk/hudson/hudson-home/jobs/jBPM3-JDK1.5/
jbpm4/trunk/hudson/hudson-home/jobs/jBPM3-JDK1.6/
Modified:
jbpm4/trunk/.project
jbpm4/trunk/hudson/hudson-home/command.sh
jbpm4/trunk/hudson/hudson-home/jobs/jBPM4-JDK1.5/config.xml
jbpm4/trunk/hudson/hudson-home/jobs/jBPM4-JDK1.6/config.xml
Log:
Fix hudson jobs
Modified: jbpm4/trunk/.project
===================================================================
--- jbpm4/trunk/.project 2008-09-24 13:25:31 UTC (rev 2342)
+++ jbpm4/trunk/.project 2008-09-24 13:41:21 UTC (rev 2343)
@@ -1,17 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>pvm</name>
+ <name>jbpm</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
<name>org.maven.ide.eclipse.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.maven.ide.eclipse.maven2Nature</nature>
</natures>
</projectDescription>
Modified: jbpm4/trunk/hudson/hudson-home/command.sh
===================================================================
--- jbpm4/trunk/hudson/hudson-home/command.sh 2008-09-24 13:25:31 UTC (rev 2342)
+++ jbpm4/trunk/hudson/hudson-home/command.sh 2008-09-24 13:41:21 UTC (rev 2343)
@@ -9,7 +9,7 @@
JBPMDIR=$WORKSPACE/jbpm
DISTRODIR=$JBPMDIR/modules/distribution/target
-ENVIRONMENT="-Ddatabase=$DATABASE -Djbpm.target.container=$CONTAINER -Djboss.home=$JBOSS_HOME -Djboss.bind.address=$JBOSS_BINDADDR"
+ENVIRONMENT=""
#
# build the tests
Copied: jbpm4/trunk/hudson/hudson-home/jobs/jBPM4-JDK1.5 (from rev 2341, jbpm4/trunk/hudson/hudson-home/jobs/jBPM3-JDK1.5)
Modified: jbpm4/trunk/hudson/hudson-home/jobs/jBPM4-JDK1.5/config.xml
===================================================================
--- jbpm4/trunk/hudson/hudson-home/jobs/jBPM3-JDK1.5/config.xml 2008-09-24 13:25:00 UTC (rev 2341)
+++ jbpm4/trunk/hudson/hudson-home/jobs/jBPM4-JDK1.5/config.xml 2008-09-24 13:41:21 UTC (rev 2343)
@@ -8,20 +8,6 @@
</logRotator>
<keepDependencies>false</keepDependencies>
<properties>
- <hudson.model.ParametersDefinitionProperty>
- <parameterDefinitions>
- <hudson.model.StringParameterDefinition>
- <name>CONTAINER</name>
- <optional>false</optional>
- <defaultValue>jboss422</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.StringParameterDefinition>
- <name>DATABASE</name>
- <optional>false</optional>
- <defaultValue>hsqldb</defaultValue>
- </hudson.model.StringParameterDefinition>
- </parameterDefinitions>
- </hudson.model.ParametersDefinitionProperty>
<hudson.security.AuthorizationMatrixProperty />
</properties>
<scm class="hudson.scm.SubversionSCM">
Copied: jbpm4/trunk/hudson/hudson-home/jobs/jBPM4-JDK1.6 (from rev 2341, jbpm4/trunk/hudson/hudson-home/jobs/jBPM3-JDK1.6)
Modified: jbpm4/trunk/hudson/hudson-home/jobs/jBPM4-JDK1.6/config.xml
===================================================================
--- jbpm4/trunk/hudson/hudson-home/jobs/jBPM3-JDK1.6/config.xml 2008-09-24 13:25:00 UTC (rev 2341)
+++ jbpm4/trunk/hudson/hudson-home/jobs/jBPM4-JDK1.6/config.xml 2008-09-24 13:41:21 UTC (rev 2343)
@@ -8,20 +8,6 @@
</logRotator>
<keepDependencies>false</keepDependencies>
<properties>
- <hudson.model.ParametersDefinitionProperty>
- <parameterDefinitions>
- <hudson.model.StringParameterDefinition>
- <name>CONTAINER</name>
- <optional>false</optional>
- <defaultValue>jboss422</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.StringParameterDefinition>
- <name>DATABASE</name>
- <optional>false</optional>
- <defaultValue>hsqldb</defaultValue>
- </hudson.model.StringParameterDefinition>
- </parameterDefinitions>
- </hudson.model.ParametersDefinitionProperty>
<hudson.security.AuthorizationMatrixProperty />
</properties>
<scm class="hudson.scm.SubversionSCM">
17 years, 6 months
JBoss JBPM SVN: r2342 - jbpm4/trunk.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-09-24 09:25:31 -0400 (Wed, 24 Sep 2008)
New Revision: 2342
Removed:
jbpm4/trunk/.classpath
Modified:
jbpm4/trunk/.project
Log:
Remove java nature
Deleted: jbpm4/trunk/.classpath
===================================================================
--- jbpm4/trunk/.classpath 2008-09-24 13:25:00 UTC (rev 2341)
+++ jbpm4/trunk/.classpath 2008-09-24 13:25:31 UTC (rev 2342)
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
- <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
- <classpathentry kind="output" path="target/classes"/>
-</classpath>
Modified: jbpm4/trunk/.project
===================================================================
--- jbpm4/trunk/.project 2008-09-24 13:25:00 UTC (rev 2341)
+++ jbpm4/trunk/.project 2008-09-24 13:25:31 UTC (rev 2342)
@@ -6,18 +6,12 @@
</projects>
<buildSpec>
<buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
<name>org.maven.ide.eclipse.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.maven.ide.eclipse.maven2Nature</nature>
</natures>
</projectDescription>
17 years, 6 months
JBoss JBPM SVN: r2341 - in jbpm4/trunk: hudson/hudson-home and 1 other directory.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-09-24 09:25:00 -0400 (Wed, 24 Sep 2008)
New Revision: 2341
Added:
jbpm4/trunk/hudson/
jbpm4/trunk/hudson/hudson-home/command.sh
Removed:
jbpm4/trunk/hudson/hudson-home/command.sh
Log:
Add hudson
Copied: jbpm4/trunk/hudson (from rev 2315, jbpm3/trunk/hudson)
Deleted: jbpm4/trunk/hudson/hudson-home/command.sh
===================================================================
--- jbpm3/trunk/hudson/hudson-home/command.sh 2008-09-23 17:36:43 UTC (rev 2315)
+++ jbpm4/trunk/hudson/hudson-home/command.sh 2008-09-24 13:25:00 UTC (rev 2341)
@@ -1,96 +0,0 @@
-#!/bin/sh
-#
-# A script that uses Maven to build the project and
-# execute its test suite against a given target container
-#
-# $Id$
-
-WORKSPACE=`pwd`
-JBPMDIR=$WORKSPACE/jbpm
-DISTRODIR=$JBPMDIR/modules/distribution/target
-
-case "$CONTAINER" in
- jboss422*)
- JBOSS_BUILD=jboss-4.2.2.GA
- ;;
-
- jboss423*)
- JBOSS_BUILD=jboss-4.2.3.GA
- ;;
-
- jboss500*)
- JBOSS_BUILD=jboss-5.0.0.CR2
- ;;
-esac
-
-#
-# Unzip the JBoss build
-#
-rm -rf $JBOSS_BUILD
-unzip -q $HUDSON_BASE/jboss/$JBOSS_BUILD.zip
-
-JBOSS_HOME=$WORKSPACE/$JBOSS_BUILD
-ENVIRONMENT="-Ddatabase=$DATABASE -Djboss.id=$CONTAINER -Djboss.home=$JBOSS_HOME -Djboss.bind.address=$JBOSS_BINDADDR"
-
-#
-# Build distro
-#
-cd $JBPMDIR
-cp profiles.xml.example profiles.xml
-MVN_CMD="mvn $ENVIRONMENT -Pdistro clean install"
-echo $MVN_CMD; $MVN_CMD; MVN_STATUS=$?
-if [ $MVN_STATUS -ne 0 ]; then
- echo maven exit status $MVN_STATUS
- exit 1
-fi
-
-#
-# build the tests
-#
-MVN_CMD="mvn -o $ENVIRONMENT process-test-classes"
-echo $MVN_CMD; $MVN_CMD 2>&1; MVN_STATUS=$?
-if [ $MVN_STATUS -ne 0 ]; then
- echo maven exit status $MVN_STATUS
- exit 1
-fi
-
-#
-# Deploy distro
-#
-AUTO_INSTALL=modules/distribution/target/resources/auto-install-template.xml; cat $AUTO_INSTALL;
-JAVA_CMD="java -jar $DISTRODIR/jbpm-distribution-$JBPM_VERSION-izpack.jar $AUTO_INSTALL"
-echo $JAVA_CMD; $JAVA_CMD
-
-#
-# start jbossas
-#
-$JBPMDIR/hudson/jboss/bin/jboss.sh $JBOSS_HOME start $JBOSS_BINDADDR
-
-# Was it successfully started?
-$JBPMDIR/hudson/jboss/bin/http-spider.sh $JBOSS_BINDADDR:8080 $WORKSPACE
-if [ -e $WORKSPACE/spider.failed ]; then
- tail -n 100 $JBOSS_HOME/server/$JBOSS_SERVER/log/server.log
- $JBPMDIR/hudson/jboss/bin/jboss.sh $JBOSS_HOME stop $JBOSS_BINDADDR
- exit 1
-fi
-
-#
-# log dependency tree
-#
-MVN_CMD="mvn -o $ENVIRONMENT dependency:tree"
-echo $MVN_CMD; $MVN_CMD | tee $WORKSPACE/dependency-tree.txt
-
-#
-# execute tests
-#
-MVN_CMD="mvn -o $ENVIRONMENT -DtestFailureIgnore=true test"
-echo $MVN_CMD; $MVN_CMD 2>&1 | tee $WORKSPACE/tests.log
-cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
-cat $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$CONTAINER.txt
-
-#
-# stop jbossas
-#
-$JBPMDIR/hudson/jboss/bin/jboss.sh $JBOSS_HOME stop
-cp $JBOSS_HOME/server/$JBOSS_SERVER/log/boot.log $WORKSPACE/jboss-boot.log
-cp $JBOSS_HOME/server/$JBOSS_SERVER/log/server.log $WORKSPACE/jboss-server.log
Copied: jbpm4/trunk/hudson/hudson-home/command.sh (from rev 2317, jbpm3/trunk/hudson/hudson-home/command.sh)
===================================================================
--- jbpm4/trunk/hudson/hudson-home/command.sh (rev 0)
+++ jbpm4/trunk/hudson/hudson-home/command.sh 2008-09-24 13:25:00 UTC (rev 2341)
@@ -0,0 +1,38 @@
+#!/bin/sh
+#
+# A script that uses Maven to build the project and
+# execute its test suite against a given target container
+#
+# $Id$
+
+WORKSPACE=`pwd`
+JBPMDIR=$WORKSPACE/jbpm
+DISTRODIR=$JBPMDIR/modules/distribution/target
+
+ENVIRONMENT="-Ddatabase=$DATABASE -Djbpm.target.container=$CONTAINER -Djboss.home=$JBOSS_HOME -Djboss.bind.address=$JBOSS_BINDADDR"
+
+#
+# build the tests
+#
+cd $JBPMDIR
+cp profiles.xml.example profiles.xml
+MVN_CMD="mvn $ENVIRONMENT process-test-classes"
+echo $MVN_CMD; $MVN_CMD 2>&1; MVN_STATUS=$?
+if [ $MVN_STATUS -ne 0 ]; then
+ echo maven exit status $MVN_STATUS
+ exit 1
+fi
+
+#
+# log dependency tree
+#
+MVN_CMD="mvn -o $ENVIRONMENT dependency:tree"
+echo $MVN_CMD; $MVN_CMD | tee $WORKSPACE/dependency-tree.txt
+
+#
+# execute tests
+#
+MVN_CMD="mvn -o $ENVIRONMENT -DtestFailureIgnore=true test"
+echo $MVN_CMD; $MVN_CMD 2>&1 | tee $WORKSPACE/tests.log
+cat $WORKSPACE/tests.log | egrep FIXME\|FAILED | sort -u | tee $WORKSPACE/fixme.txt
+cat $WORKSPACE/fixme.txt | egrep "\[\S*]" > $WORKSPACE/errata-$CONTAINER.txt
17 years, 6 months
JBoss JBPM SVN: r2340 - jbpm4/trunk/modules/jpdl.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-09-24 09:16:20 -0400 (Wed, 24 Sep 2008)
New Revision: 2340
Added:
jbpm4/trunk/modules/jpdl/.classpath
Log:
Add jpdl
Added: jbpm4/trunk/modules/jpdl/.classpath
===================================================================
--- jbpm4/trunk/modules/jpdl/.classpath (rev 0)
+++ jbpm4/trunk/modules/jpdl/.classpath 2008-09-24 13:16:20 UTC (rev 2340)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" output="target/classes" path="src/main/java"/>
+ <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
+ <classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
+ <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+ <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+ <classpathentry kind="output" path="target/classes"/>
+</classpath>
17 years, 6 months
JBoss JBPM SVN: r2339 - in jbpm4/trunk: modules and 2 other directories.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-09-24 09:16:01 -0400 (Wed, 24 Sep 2008)
New Revision: 2339
Added:
jbpm4/trunk/modules/jpdl/
Modified:
jbpm4/trunk/modules/jpdl/.project
jbpm4/trunk/modules/jpdl/pom.xml
jbpm4/trunk/modules/pvm/pom.xml
jbpm4/trunk/pom.xml
Log:
Add jpdl
Copied: jbpm4/trunk/modules/jpdl (from rev 2323, jbpm4/jpdl/trunk/modules/core)
Modified: jbpm4/trunk/modules/jpdl/.project
===================================================================
--- jbpm4/jpdl/trunk/modules/core/.project 2008-09-24 07:13:10 UTC (rev 2323)
+++ jbpm4/trunk/modules/jpdl/.project 2008-09-24 13:16:01 UTC (rev 2339)
@@ -1,17 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>jpdl</name>
+ <name>jpdl-core</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
<name>org.maven.ide.eclipse.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.maven.ide.eclipse.maven2Nature</nature>
</natures>
</projectDescription>
Modified: jbpm4/trunk/modules/jpdl/pom.xml
===================================================================
--- jbpm4/jpdl/trunk/modules/core/pom.xml 2008-09-24 07:13:10 UTC (rev 2323)
+++ jbpm4/trunk/modules/jpdl/pom.xml 2008-09-24 13:16:01 UTC (rev 2339)
@@ -1,47 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- ====================================================================== -->
-<!-- -->
-<!-- JBoss, the OpenSource J2EE webOS -->
-<!-- -->
-<!-- Distributable under LGPL license. -->
-<!-- See terms of license at http://www.gnu.org. -->
-<!-- -->
-<!-- ====================================================================== -->
+ <!-- ====================================================================== -->
+ <!-- -->
+ <!-- JBoss, the OpenSource J2EE webOS -->
+ <!-- -->
+ <!-- Distributable under LGPL license. -->
+ <!-- See terms of license at http://www.gnu.org. -->
+ <!-- -->
+ <!-- ====================================================================== -->
-<!-- $Id: pom.xml 1790 2008-07-31 12:13:06Z tom.baeyens(a)jboss.com $ -->
+ <!-- $Id: pom.xml 1790 2008-07-31 12:13:06Z tom.baeyens(a)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">
-
+<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>
-
- <!-- ### GENERAL PROJECT INFO ########################################### -->
+
<name>JBoss jBPM4 - jPDL Core</name>
<groupId>org.jbpm.jbpm4</groupId>
- <artifactId>jpdl-core</artifactId>
+ <artifactId>jbpm-jpdl</artifactId>
<packaging>jar</packaging>
-
- <!-- ### PARENT ######################################################### -->
+
+ <!-- Parent -->
<parent>
<groupId>org.jbpm.jbpm4</groupId>
- <artifactId>jpdl</artifactId>
+ <artifactId>jbpm</artifactId>
<version>4.0.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
-
- <!-- ### PROPERTIES ##################################################### -->
+
+ <!-- Properties -->
<properties>
<surefire.gc.args>-XX:MaxPermSize=128m</surefire.gc.args>
<surefire.jdwp.args>-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</surefire.jdwp.args>
</properties>
-
- <!-- ### DEPENDENCIES ################################################### -->
+
+ <!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.jbpm.jbpm4</groupId>
- <artifactId>pvm-core</artifactId>
+ <artifactId>jbpm-pvm</artifactId>
+ <version>${version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
@@ -49,19 +48,10 @@
</dependency>
</dependencies>
+ <!-- Plugins -->
<build>
- <!-- ### PLUGINS ###################################################### -->
<plugins>
<plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <showDeprecation>false</showDeprecation>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- </plugin>
- <plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${surefire.jvm.args}</argLine>
@@ -81,12 +71,10 @@
</goals>
<configuration>
<tasks>
- <taskdef name="xsddoc" classname="net.sf.xframe.xsddoc.Task" classpathref="maven.plugin.classpath" />
- <mkdir dir="${basedir}/target/doc/jpdlxsd" />
- <xsddoc file="${basedir}/src/main/resources/org/jbpm/jpdl/jpdl.xsd"
- out="${basedir}/target/doc/jpdlxsd"
- title="jPDL: jBPM's Process Definition Language"
- verbose="false" />
+ <taskdef name="xsddoc" classname="net.sf.xframe.xsddoc.Task" classpathref="maven.plugin.classpath" />
+ <mkdir dir="${basedir}/target/doc/jpdlxsd" />
+ <xsddoc file="${basedir}/src/main/resources/org/jbpm/jpdl/jpdl.xsd" out="${basedir}/target/doc/jpdlxsd" title="jPDL: jBPM's Process Definition Language"
+ verbose="false" />
</tasks>
</configuration>
</execution>
@@ -98,16 +86,16 @@
<version>1.0</version>
</dependency>
<dependency>
- <groupId>xalan</groupId>
- <artifactId>xalan</artifactId>
- <version>2.7.0</version>
- </dependency>
+ <groupId>xalan</groupId>
+ <artifactId>xalan</artifactId>
+ <version>2.7.0</version>
+ </dependency>
</dependencies>
</plugin>
</plugins>
</build>
-
- <!-- ### PROFILES ####################################################### -->
+
+ <!-- Profiles -->
<profiles>
<profile>
<id>debug</id>
@@ -132,5 +120,5 @@
</properties>
</profile>
</profiles>
-
+
</project>
\ No newline at end of file
Modified: jbpm4/trunk/modules/pvm/pom.xml
===================================================================
--- jbpm4/trunk/modules/pvm/pom.xml 2008-09-24 11:34:27 UTC (rev 2338)
+++ jbpm4/trunk/modules/pvm/pom.xml 2008-09-24 13:16:01 UTC (rev 2339)
@@ -17,12 +17,12 @@
<modelVersion>4.0.0</modelVersion>
<!-- ### GENERAL PROJECT INFO ########################################### -->
- <name>JBoss jBPM4 - jBPM PVM</name>
+ <name>JBoss jBPM4 - PVM Core</name>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-pvm</artifactId>
<packaging>jar</packaging>
- <!-- ### PARENT ######################################################### -->
+ <!-- Parent -->
<parent>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm</artifactId>
@@ -30,7 +30,7 @@
<relativePath>../../pom.xml</relativePath>
</parent>
- <!-- ### PROPERTIES ##################################################### -->
+ <!-- Properties -->
<properties>
<table.prefix>JBPM_</table.prefix>
<surefire.gc.args>-XX:MaxPermSize=128m</surefire.gc.args>
Modified: jbpm4/trunk/pom.xml
===================================================================
--- jbpm4/trunk/pom.xml 2008-09-24 11:34:27 UTC (rev 2338)
+++ jbpm4/trunk/pom.xml 2008-09-24 13:16:01 UTC (rev 2339)
@@ -34,6 +34,7 @@
<!-- Modules -->
<modules>
<module>modules/pvm</module>
+ <module>modules/jpdl</module>
</modules>
<!-- Properties -->
17 years, 6 months
JBoss JBPM SVN: r2338 - in jbpm4/trunk: modules and 1 other directories.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-09-24 07:34:27 -0400 (Wed, 24 Sep 2008)
New Revision: 2338
Added:
jbpm4/trunk/.classpath
jbpm4/trunk/.project
jbpm4/trunk/modules/
jbpm4/trunk/modules/pvm/
jbpm4/trunk/pom.xml
Modified:
jbpm4/trunk/
jbpm4/trunk/modules/pvm/pom.xml
Log:
jBPM4 trunk, first cut
Property changes on: jbpm4/trunk
___________________________________________________________________
Name: svn:ignore
+ .settings
Added: jbpm4/trunk/.classpath
===================================================================
--- jbpm4/trunk/.classpath (rev 0)
+++ jbpm4/trunk/.classpath 2008-09-24 11:34:27 UTC (rev 2338)
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+ <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+ <classpathentry kind="output" path="target/classes"/>
+</classpath>
Added: jbpm4/trunk/.project
===================================================================
--- jbpm4/trunk/.project (rev 0)
+++ jbpm4/trunk/.project 2008-09-24 11:34:27 UTC (rev 2338)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>pvm</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Copied: jbpm4/trunk/modules/pvm (from rev 2333, jbpm4/pvm/trunk/modules/core)
Modified: jbpm4/trunk/modules/pvm/pom.xml
===================================================================
--- jbpm4/pvm/trunk/modules/core/pom.xml 2008-09-24 08:08:15 UTC (rev 2333)
+++ jbpm4/trunk/modules/pvm/pom.xml 2008-09-24 11:34:27 UTC (rev 2338)
@@ -1,49 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- ====================================================================== -->
-<!-- -->
-<!-- JBoss, the OpenSource J2EE webOS -->
-<!-- -->
-<!-- Distributable under LGPL license. -->
-<!-- See terms of license at http://www.gnu.org. -->
-<!-- -->
-<!-- ====================================================================== -->
+ <!-- ====================================================================== -->
+ <!-- -->
+ <!-- JBoss, the OpenSource J2EE webOS -->
+ <!-- -->
+ <!-- Distributable under LGPL license. -->
+ <!-- See terms of license at http://www.gnu.org. -->
+ <!-- -->
+ <!-- ====================================================================== -->
-<!-- $Id$ -->
+ <!-- $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">
-
+<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>
-
+
<!-- ### GENERAL PROJECT INFO ########################################### -->
- <name>JBoss jBPM4 - PVM Core</name>
+ <name>JBoss jBPM4 - jBPM PVM</name>
<groupId>org.jbpm.jbpm4</groupId>
- <artifactId>pvm-core</artifactId>
+ <artifactId>jbpm-pvm</artifactId>
<packaging>jar</packaging>
- <version>1.0.beta1</version>
-
+
<!-- ### PARENT ######################################################### -->
<parent>
<groupId>org.jbpm.jbpm4</groupId>
- <artifactId>pvm</artifactId>
- <version>1.0.beta1</version>
+ <artifactId>jbpm</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
-
+
<!-- ### PROPERTIES ##################################################### -->
<properties>
- <project.build.finalName>jbpm-pvm-${version}</project.build.finalName>
<table.prefix>JBPM_</table.prefix>
<surefire.gc.args>-XX:MaxPermSize=128m</surefire.gc.args>
<surefire.jdwp.args>-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005</surefire.jdwp.args>
<test.resources.directory>${project.build.directory}/test-resources</test.resources.directory>
</properties>
-
- <!-- ### DEPENDENCIES ################################################### -->
+
+ <!-- Dependencies -->
<dependencies>
<dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+ <dependency>
<groupId>juel</groupId>
<artifactId>juel</artifactId>
</dependency>
@@ -79,10 +80,6 @@
<!-- <scope>test</scope> -->
</dependency>
<dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- </dependency>
- <dependency>
<groupId>org.livetribe</groupId>
<artifactId>livetribe-jsr223</artifactId>
</dependency>
@@ -114,9 +111,9 @@
<scope>test</scope>
</dependency>
</dependencies>
-
+
+ <!-- Plugins -->
<build>
- <!-- ### PLUGINS ###################################################### -->
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
@@ -125,49 +122,6 @@
</configuration>
</plugin>
<plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <id>test-jar</id>
- <goals>
- <goal>test-jar</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <finalName>jbpm-pvm-${version}</finalName>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- <configuration>
- <finalName>jbpm-pvm-${version}</finalName>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- <configuration>
- <finalName>jbpm-pvm-${version}</finalName>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
<artifactId>maven-ear-plugin</artifactId>
<configuration>
<applicationXml>${basedir}/src/main/etc/ear/META-INF/application.xml</applicationXml>
@@ -207,8 +161,7 @@
</goals>
<configuration>
<tasks>
- <replace dir="target/classes" includes="**/hibernate.*.hbm.xml"
- token="table="JBPM_" value="table="${table.prefix}" />
+ <replace dir="target/classes" includes="**/hibernate.*.hbm.xml" token="table="JBPM_" value="table="${table.prefix}" />
</tasks>
</configuration>
</execution>
@@ -225,12 +178,10 @@
</goals>
<configuration>
<tasks>
- <taskdef name="xsddoc" classname="net.sf.xframe.xsddoc.Task" classpathref="maven.plugin.classpath" />
- <mkdir dir="${basedir}/target/doc-wirexsd" />
- <xsddoc file="${basedir}/src/main/resources/org/jbpm/pvm/wire.xsd"
- out="${basedir}/target/doc-wirexsd"
- title="Process Virtual Machine: Wiring Schema"
- verbose="false" />
+ <taskdef name="xsddoc" classname="net.sf.xframe.xsddoc.Task" classpathref="maven.plugin.classpath" />
+ <mkdir dir="${basedir}/target/doc-wirexsd" />
+ <xsddoc file="${basedir}/src/main/resources/org/jbpm/pvm/wire.xsd" out="${basedir}/target/doc-wirexsd" title="Process Virtual Machine: Wiring Schema"
+ verbose="false" />
</tasks>
</configuration>
</execution>
@@ -242,15 +193,15 @@
<version>1.0</version>
</dependency>
<dependency>
- <groupId>xalan</groupId>
- <artifactId>xalan</artifactId>
- <version>2.7.0</version>
- </dependency>
+ <groupId>xalan</groupId>
+ <artifactId>xalan</artifactId>
+ <version>2.7.0</version>
+ </dependency>
</dependencies>
</plugin>
</plugins>
</build>
-
+
<!-- ### PROFILES ####################################################### -->
<profiles>
<profile>
@@ -276,5 +227,5 @@
</properties>
</profile>
</profiles>
-
+
</project>
\ No newline at end of file
Added: jbpm4/trunk/pom.xml
===================================================================
--- jbpm4/trunk/pom.xml (rev 0)
+++ jbpm4/trunk/pom.xml 2008-09-24 11:34:27 UTC (rev 2338)
@@ -0,0 +1,158 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ====================================================================== -->
+<!-- -->
+<!-- JBoss, the OpenSource J2EE webOS -->
+<!-- -->
+<!-- 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 jBPM4</name>
+ <groupId>org.jbpm.jbpm4</groupId>
+ <artifactId>jbpm</artifactId>
+ <packaging>pom</packaging>
+
+ <version>4.0.0-SNAPSHOT</version>
+
+ <!-- Parent -->
+ <parent>
+ <groupId>org.jbpm</groupId>
+ <artifactId>jbpm-parent</artifactId>
+ <version>1.0.0.GA</version>
+ </parent>
+
+ <!-- Modules -->
+ <modules>
+ <module>modules/pvm</module>
+ </modules>
+
+ <!-- Properties -->
+ <properties>
+ <cactus.version>13-1.7.1</cactus.version>
+ <clover.version>2.3.1</clover.version>
+ <hibernate.version>3.2.5.ga</hibernate.version>
+ <hsqldb.version>1.8.0.7</hsqldb.version>
+ <jboss.j2ee.version>4.2.1.GA</jboss.j2ee.version>
+ <jboss.seam.version>2.0.1.GA</jboss.seam.version>
+ <jsr233.version>2.0.3</jsr233.version>
+ <juel.version>2.1.0</juel.version>
+ <log4j.version>1.2.14</log4j.version>
+ <spring.version>2.5.4</spring.version>
+ <servlet-api.version>2.5</servlet-api.version>
+ </properties>
+
+ <!-- DependencyManagement -->
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>juel</groupId>
+ <artifactId>juel</artifactId>
+ <version>${juel.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>juel</groupId>
+ <artifactId>juel-engine</artifactId>
+ <version>${juel.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>juel</groupId>
+ <artifactId>juel-impl</artifactId>
+ <version>${juel.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate</artifactId>
+ <version>${hibernate.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>hsqldb</groupId>
+ <artifactId>hsqldb</artifactId>
+ <version>${hsqldb.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>${junit.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.cenqua.clover</groupId>
+ <artifactId>clover</artifactId>
+ <version>${clover.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>${servlet-api.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>${log4j.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jboss-j2ee</artifactId>
+ <version>${jboss.j2ee.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring</artifactId>
+ <version>${spring.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.livetribe</groupId>
+ <artifactId>livetribe-jsr223</artifactId>
+ <version>${jsr233.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.seam</groupId>
+ <artifactId>jboss-seam</artifactId>
+ <version>${jboss.seam.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>cactus</groupId>
+ <artifactId>cactus</artifactId>
+ <version>${cactus.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbpm/jbpm4</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbpm/jbpm4</developerConnection>
+ <url>http://fisheye.jboss.com/browse/JbpmSvn/jbpm4</url>
+ </scm>
+
+ <!-- IssueManagement -->
+ <issueManagement>
+ <system>jira</system>
+ <url>http://jira.jboss.org/jira/browse/JBPM</url>
+ </issueManagement>
+
+ <!-- Licenses -->
+ <licenses>
+ <license>
+ <name>lgpl</name>
+ <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+ </license>
+ </licenses>
+
+ <!-- DistributionManagement -->
+ <distributionManagement>
+ <site>
+ <id>local.site</id>
+ <url>file:///${publications}/pvm/site</url>
+ </site>
+ </distributionManagement>
+
+</project>
\ No newline at end of file
Property changes on: jbpm4/trunk/pom.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
17 years, 6 months
JBoss JBPM SVN: r2337 - jbpm4.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-09-24 06:34:53 -0400 (Wed, 24 Sep 2008)
New Revision: 2337
Added:
jbpm4/trunk/
Log:
Restructure jBPM4
17 years, 6 months
JBoss JBPM SVN: r2336 - projects and 1 other directory.
by do-not-reply@jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2008-09-24 06:34:29 -0400 (Wed, 24 Sep 2008)
New Revision: 2336
Added:
projects/task/
Removed:
jbpm4/task/
Log:
Restructure jBPM4
Copied: projects/task (from rev 2335, jbpm4/task)
17 years, 6 months