[jbpm-commits] JBoss JBPM SVN: r5234 - jbpm4/branches/jimma.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Jul 6 02:37:17 EDT 2009


Author: jim.ma
Date: 2009-07-06 02:37:16 -0400 (Mon, 06 Jul 2009)
New Revision: 5234

Removed:
   jbpm4/branches/jimma/build.xml
   jbpm4/branches/jimma/eclipse/
   jbpm4/branches/jimma/modules/
   jbpm4/branches/jimma/pom.xml
   jbpm4/branches/jimma/qa/
Log:
Removed old migration code

Deleted: jbpm4/branches/jimma/build.xml
===================================================================
--- jbpm4/branches/jimma/build.xml	2009-07-05 14:27:27 UTC (rev 5233)
+++ jbpm4/branches/jimma/build.xml	2009-07-06 06:37:16 UTC (rev 5234)
@@ -1,173 +0,0 @@
-<project name="jbpm4" default="install" basedir=".">
-  
-  <!-- This ant build only serves as IDE integration to run maven jobs.
-       Now in eclipse it's possible to open the ant view and double click 
-       the targets in this ant build that will just delegate to the maven 
-       build.  Also, if there are html results being produced by a target, 
-       they are opened in a browser.
-  --> 
-  
-  <!-- Overwrite property values in your local 
-       file ${user.home}/.jbpm4/ant.properties 
-  -->
-  <property file="${user.home}/.jbpm4/ant.properties" />
-  
-  <property name="mvn.executable" value="mvn.bat" />
-  
-  <!-- BROWSER PROPERTIES -->
-  <!-- <property name="windows.browser" value="C:/Program Files/Internet Explorer/IEXPLORE.EXE" /> -->
-  <property name="windows.browser" value="C:/Program Files/Mozilla Firefox/firefox.exe" />
-  <property name="macos.browser" value="/usr/bin/open" />
-  <property name="linux.browser" value="mozilla" />
-
-  <property name="distro.installation.dir" value="c:/software" />
-  <property name="distro.version" value="4.0-SNAPSHOT" />
-  <property name="distro.jboss.version" value="5.0.0.GA" />
-  <property name="distro.eclipse" value="c:/downloads/eclipse/eclipse-jee-ganymede-SR1-win32.zip" />
-  <property name="distro.jboss" value="c:/downloads/jboss/jboss-${distro.jboss.version}.zip" />
-  <property name="distro.gef" value="c:/downloads/eclipse/GEF-runtime-3.4.1.zip" />
-
-  <target name="clean">
-    <exec executable="${mvn.executable}">
-      <arg line="clean" />
-    </exec>
-  </target>
-
-  <target name="install">
-    <exec executable="${mvn.executable}" os="Windows Vista, Windows XP,Windows 2000,Windows 98">
-      <arg line="-DskipTests install" />
-    </exec>
-  </target>
-  
-  <target name="javadoc">
-    <exec executable="${mvn.executable}" dir="modules/api" os="Windows Vista, Windows XP,Windows 2000,Windows 98">
-      <arg line="javadoc:javadoc" />
-    </exec>
-    <antcall target="show.html">
-      <param name="page" value="modules/api/target/site/apidocs/index.html"/>
-    </antcall>
-  </target>
-
-  <target name="test.pvm">
-    <exec dir="modules/pvm" executable="${mvn.executable}" os="Windows Vista, Windows XP,Windows 2000,Windows 98">
-      <arg line="${mvn.executable} surefire-report:report" />
-    </exec>
-    <antcall target="show.html">
-      <param name="page" value="modules/pvm/target/site/surefire-report.html"/>
-    </antcall>
-  </target>
-
-  <target name="distro.test" depends="distro.build, distro.install" />
-
-  <target name="distro.build">
-    <exec dir="." executable="cmd" os="Windows Vista, Windows XP,Windows 2000,Windows 98">
-      <arg line="/C ${mvn.executable} -Pdistro -Ddatabase=hsqldb -Djbpm.target.container=jboss500 -Djboss.home=${distro.installation.dir}/jbpm-${distro.version}/jboss-${distro.jboss.version}  clean install" />
-    </exec>
-  </target>
-
-  <target name="distro.install" >
-    <delete dir="${distro.installation.dir}/jbpm-${distro.version}" />
-    <unzip src="${distro.jboss}" dest="${distro.installation.dir}/jbpm-${distro.version}" />
-    <java jar="modules/distro/target/jbpm-installer-${distro.version}.jar" fork="true">
-    	<arg value="modules/distro/target/resources/auto-install-template.xml" />
-  	</java>
-  	
-  	<!-- 
-    <unzip src="${distro.eclipse}" dest="${distro.installation.dir}/jbpm-${distro.version}" />
-    <exec executable="cmd" os="Windows Vista, Windows XP,Windows 2000,Windows 98">
-      <arg line="/C start &quot;${distro.installation.dir}/jbpm-${distro.version}/eclipse/eclipse.exe&quot; &quot;-data&quot; &quot;${distro.installation.dir}/jbpm-${distro.version}/workspace&quot;" />
-    </exec>
-    <exec executable="cmd" os="Windows Vista, Windows XP,Windows 2000,Windows 98">
-      <arg line="/C start &quot;${windows.browser}&quot; &quot;file://${distro.installation.dir}/jbpm-${distro.version}&quot;" />
-    </exec>
-    -->
-  </target>
-
-  <target name="distro.eclipse.install">
-    <unzip src="${distro.eclipse}" dest="${distro.installation.dir}/jbpm-${distro.version}" />
-  </target>
-
-  <target name="distro.eclipse.start">
-    <exec executable="cmd" os="Windows Vista, Windows XP,Windows 2000,Windows 98">
-      <arg line="/C start &quot;${distro.installation.dir}/jbpm-${distro.version}/eclipse/eclipse.exe&quot; &quot;-data&quot; &quot;${distro.installation.dir}/jbpm-${distro.version}/workspace&quot;" />
-    </exec>
-  </target>
-
-  <target name="schemadocs">
-    <exec executable="${mvn.executable}" dir="modules/api">
-      <arg line="-Pschemadocs package" />
-    </exec>
-    <antcall target="show.html">
-      <param name="page" value="modules/api/target/schemadocs/index.html"/>
-    </antcall>
-  </target>
-    
-  <target name="devguide">
-    <exec executable="${mvn.executable}" dir="modules/devguide">
-      <arg line="jdocbook:resources jdocbook:generate" />
-    </exec>
-    <antcall target="show.html">
-      <param name="page" value="modules/devguide/target/docbook/publish/en/html_single/index.html"/>
-    </antcall>
-  </target>
-
-  <target name="userguide">
-    <exec executable="${mvn.executable}" dir="modules/userguide">
-      <arg line="jdocbook:resources jdocbook:generate" />
-    </exec>
-    <antcall target="show.html">
-      <param name="page" value="modules/userguide/target/docbook/publish/en/html_single/index.html"/>
-    </antcall>
-  </target>
-	
-  <!-- HTML -->
-  <target name="show.html">
-    <fail message="property page has to be specified to use this target" unless="page" />
-    <exec executable="cmd" os="Windows Vista, Windows XP,Windows 2000,Windows 98">
-      <arg value="/C start &quot;${windows.browser}&quot; &quot;file://${basedir}/${page}&quot;" />
-    </exec>
-    <exec executable="${macos.browser}" os="Mac OS X">
-      <arg value="file://${basedir}/${page}" />
-    </exec>
-    <exec executable="${linux.browser}" os="Linux">
-      <arg value="file://${basedir}/${page}" />
-    </exec>
-  </target>
-
-  <!-- target name="update.configurations" description="update the pvm, jpdl, example and test-db test resources by running the config tool">
-    <ant antfile="modules/distro/src/main/resources/config-tool/build.xml" target="create.configuration.files" inheritall="false">
-      <property name="config.files.dir" value="${basedir}/modules/pvm/src/test/resources" />
-      <property name="tmp.dir" value="${basedir}/modules/pvm/target/config-tmp" />
-      <property name="jpdl" value="exclude" />
-    </ant>
-    <ant antfile="modules/distro/src/main/resources/config-tool/build.xml" target="create.configuration.files" inheritall="false">
-      <property name="config.files.dir" value="${basedir}/modules/jpdl/src/test/resources" />
-      <property name="tmp.dir" value="${basedir}/modules/jpdl/target/config-tmp" />
-    </ant>
-    <ant antfile="modules/distro/src/main/resources/config-tool/build.xml" target="create.configuration.files" inheritall="false">
-    	<property name="config.files.dir" value="${basedir}/modules/examples/src/test/resources" />
-      <property name="tmp.dir" value="${basedir}/modules/examples/target/config-tmp" />
-  	</ant>
-    <ant antfile="modules/distro/src/main/resources/config-tool/build.xml" target="create.configuration.files" inheritall="false">
-      <property name="config.files.dir" value="${basedir}/modules/test-db/src/test/resources" />
-      <property name="tmp.dir" value="${basedir}/modules/test-db/target/config-tmp" />
-    </ant>
-  </target -->
-
-  <target name="test.configuration" description="create test configuration in target/config">
-    <ant antfile="modules/distro/src/main/resources/config-tool/build.xml" 
-    	   target="db.drop.create" inheritall="false">
-      <property name="jboss.bind.address" value="localhost" />
-      <property name="config.files.dir" value="${basedir}/target/config.tool/config.files" />
-      <property name="tmp.dir" value="${basedir}/target/config.tool/tmp" />
-      <property name="libs.dir" value="${basedir}/target/libs" />
-    </ant>
-  </target>
-
-	<target name="db.create.mysql">
-    <exec executable="${mvn.executable}">
-      <arg line=" -Ddatabase=mysql -DskipTests -Pdrop-tables -Pcreate-tables clean install" />
-    </exec>
-	</target>
-
-</project>
\ No newline at end of file

Deleted: jbpm4/branches/jimma/pom.xml
===================================================================
--- jbpm4/branches/jimma/pom.xml	2009-07-05 14:27:27 UTC (rev 5233)
+++ jbpm4/branches/jimma/pom.xml	2009-07-06 06:37:16 UTC (rev 5234)
@@ -1,792 +0,0 @@
-<?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>jBPM 4</name>
-  <groupId>org.jbpm.jbpm4</groupId>
-  <artifactId>jbpm</artifactId>
-  <packaging>pom</packaging>
-
-  <version>4.0-SNAPSHOT</version>
-
-  <organization>
-    <name>JBoss, a division of Red Hat</name>
-    <url>http://www.jboss.org</url>
-  </organization>
-
-  <!-- Modules -->
-  <modules>
-    <module>modules/log</module>
-    <module>modules/api</module>
-    <module>modules/test-base</module>
-    <module>modules/pvm</module>
-    <module>modules/jpdl</module>
-    <module>modules/integration</module>
-    <module>modules/examples</module>
-    <module>modules/test-db</module>
-    <module>modules/test-pojo</module>
-  </modules>
-
-  <!-- Properties -->
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <apache.ant.version>1.7.0</apache.ant.version>
-    <cactus.version>13-1.7.1</cactus.version>
-    <freemarker.version>2.3.15</freemarker.version>
-    <gwt.console.version>1.0.0.CR1</gwt.console.version>
-    <jbpm.gpd.version>4.0.0-SNAPSHOT</jbpm.gpd.version>
-    <hibernate.version>3.3.1.GA</hibernate.version>
-    <slf4j.version>1.5.2</slf4j.version>
-    <hsqldb.version>1.8.0.7</hsqldb.version>
-    <izpack.version>4.2.1</izpack.version>
-    <jboss.identity.version>1.0.0.Alpha8</jboss.identity.version>
-    <jboss.j2ee.version>4.2.2.GA</jboss.j2ee.version>
-    <jboss.client.version>5.0.1.GA</jboss.client.version>
-    <jsr233.version>2.0.5</jsr233.version>
-    <juel.version>2.1.0</juel.version>
-    <junit.version>3.8.1</junit.version>
-    <log4j.version>1.2.14</log4j.version>
-    <mail.version>1.4.1</mail.version>
-    <report.engine.version>2.3.2</report.engine.version>
-    <servlet-api.version>2.5</servlet-api.version>
-    <spring.version>2.0.8</spring.version>
-    <stax.api.version>1.0.1</stax.api.version>
-  	<wiser.version>1.2</wiser.version>
-    <woodstox.version>3.2.6</woodstox.version>
-    <!-- Database Driver Versions  -->
-    <hsqldb.version>1.8.0.7</hsqldb.version>
-    <mysql.connector.version>5.0.8</mysql.connector.version>
-    <postgresql.version>8.3-603.jdbc3</postgresql.version>
-    <jtds.version>1.2.2</jtds.version>
-    <oracle.version>10.0.2.0</oracle.version>
-	</properties>
-
-  <!-- DependencyManagement -->
-  <dependencyManagement>
-    <dependencies>
-
-      <!-- Core engine components -->
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-api</artifactId>
-        <version>${version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-db</artifactId>
-        <version>${version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-enterprise</artifactId>
-        <version>${version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-examples</artifactId>
-        <version>${version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-jpdl</artifactId>
-        <version>${version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-log</artifactId>
-        <version>${version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-pvm</artifactId>
-        <version>${version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-test-base</artifactId>
-        <version>${version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-test-db</artifactId>
-        <version>${version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-spi</artifactId>
-        <version>${version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-jboss5</artifactId>
-        <version>${version}</version>
-      </dependency>
-	    <dependency>
-	      <groupId>org.jbpm.jbpm4</groupId>
-	      <artifactId>jbpm-console-integration</artifactId>
-	      <version>${version}</version>      
-	    </dependency>
-	    <dependency>
-	      <groupId>org.jbpm.jbpm4</groupId>
-	      <artifactId>jbpm-console-form-plugin</artifactId>
-	      <version>${version}</version>
-	    </dependency>
-      <dependency>
-	      <groupId>org.jbpm.jbpm4</groupId>
-	      <artifactId>jbpm-console-graphView-plugin</artifactId>
-	      <version>${version}</version>
-	    </dependency>
-      <dependency>
-        <groupId>org.eclipse.birt</groupId>
-        <artifactId>report-engine</artifactId>
-        <type>zip</type>
-        <version>${report.engine.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-console-reports</artifactId>
-        <version>${version}</version>
-      </dependency>
-      <dependency>
-	      <groupId>org.jbpm.jbpm4</groupId>
-	      <artifactId>jbpm-jboss4</artifactId>
-	      <version>${version}</version>
-	    </dependency>
-
-
-      <!-- GWT console -->
-      <dependency>
-        <groupId>org.jboss.bpm</groupId>
-        <artifactId>gwt-console</artifactId>
-        <version>${gwt.console.version}</version>
-        <type>war</type>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.bpm</groupId>
-        <artifactId>gwt-console-server</artifactId>
-        <version>${gwt.console.version}</version>
-        <type>war</type>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.bpm</groupId>
-        <artifactId>gwt-console-server-integration</artifactId>
-        <version>${gwt.console.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.bpm</groupId>
-        <artifactId>gwt-console-rpc</artifactId>
-        <version>${gwt.console.version}</version>
-        <scope>provided</scope>
-      </dependency>
-
-      <!-- GPD -->
-      <dependency>
-        <groupId>org.jbpm.jbpm4</groupId>
-        <artifactId>jbpm-gpd</artifactId>
-        <type>zip</type>
-        <version>${jbpm.gpd.version}</version>
-      </dependency>
-
-      <!-- External dependencies -->
-      <!-- Please sort by groupid -->
-      <dependency>
-        <groupId>org.apache.ant</groupId>
-        <artifactId>ant</artifactId>
-        <version>${apache.ant.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>cactus</groupId>
-        <artifactId>cactus</artifactId>
-        <version>${cactus.version}</version>
-      </dependency>
-      <dependency>
-       <groupId>org.freemarker</groupId>
-       <artifactId>freemarker</artifactId>
-       <version>${freemarker.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.hibernate</groupId>
-        <artifactId>hibernate-core</artifactId>
-        <version>${hibernate.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.slf4j</groupId>
-        <artifactId>slf4j-api</artifactId>
-        <version>${slf4j.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.slf4j</groupId>
-        <artifactId>slf4j-jdk14</artifactId>
-        <version>${slf4j.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.identity.idm</groupId>
-        <artifactId>idm-core</artifactId>
-        <version>${jboss.identity.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.identity.idm</groupId>
-        <artifactId>idm-hibernate</artifactId>
-        <version>${jboss.identity.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>hsqldb</groupId>
-        <artifactId>hsqldb</artifactId>
-        <version>${hsqldb.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>izpack</groupId>
-        <artifactId>standalone-compiler</artifactId>
-        <version>${izpack.version}</version>
-      </dependency>
-
-      <!-- AS 5 dependencies -->
-      <dependency>
-        <groupId>org.jboss.javaee</groupId>
-        <artifactId>jboss-javaee</artifactId>
-        <version>${jboss.client.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.jbossas</groupId>
-        <artifactId>jboss-as-client</artifactId>
-        <version>${jboss.client.version}</version>
-        <type>pom</type>
-      </dependency>
-
-      <!-- enterprise module deepends on j2ee -->
-      <dependency>
-        <groupId>jboss</groupId>
-        <artifactId>jboss-j2ee</artifactId>
-        <version>${jboss.j2ee.version}</version>
-      </dependency>
-
-
-      <dependency>
-        <groupId>juel</groupId>
-        <artifactId>juel</artifactId>
-        <version>${juel.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>juel</groupId>
-        <artifactId>juel-impl</artifactId>
-        <version>${juel.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>juel</groupId>
-        <artifactId>juel-engine</artifactId>
-        <version>${juel.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <version>${junit.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>org.livetribe</groupId>
-        <artifactId>livetribe-jsr223</artifactId>
-        <version>${jsr233.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>javax.mail</groupId>
-        <artifactId>mail</artifactId>
-        <version>${mail.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.springframework</groupId>
-        <artifactId>spring</artifactId>
-        <version>${spring.version}</version>
-      </dependency>
-      <dependency>
-      	<groupId>org.subethamail</groupId>
-      	<artifactId>subethasmtp-wiser</artifactId>
-      	<version>${wiser.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>org.codehaus.woodstox</groupId>
-        <artifactId>wstx-lgpl</artifactId>
-        <version>${woodstox.version}</version>
-      </dependency>
-
-      <!-- Database Driver Versions  -->
-      <dependency>
-        <groupId>hsqldb</groupId>
-        <artifactId>hsqldb</artifactId>
-        <version>${hsqldb.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>mysql</groupId>
-        <artifactId>mysql-connector-java</artifactId>
-        <version>${mysql.connector.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>postgresql</groupId>
-        <artifactId>postgresql</artifactId>
-        <version>${postgresql.version}</version>
-      </dependency>
-      <dependency>
-        <groupId>net.sourceforge.jtds</groupId>
-        <artifactId>jtds</artifactId>
-        <version>${jtds.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>
-
-  <!-- Plugins -->
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.5</source>
-          <target>1.5</target>
-          <showDeprecation>true</showDeprecation>
-          <showWarnings>true</showWarnings>
-          <optimize>true</optimize>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-jar-plugin</artifactId>
-        <configuration>
-          <archive>
-            <manifest>
-              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-            </manifest>
-          </archive>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <failIfNoTests>false</failIfNoTests>
-          <trimStackTrace>false</trimStackTrace>
-          <systemProperties>
-            <property>
-              <name>log4j.output.dir</name>
-              <value>${project.build.directory}</value>
-            </property>
-          </systemProperties>
-          <excludes>
-            <exclude>**/*TestCase.java</exclude>
-          </excludes>
-        </configuration>
-      </plugin>
-
-    </plugins>
-
-    <!-- PluginManagement -->
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-compiler-plugin</artifactId>
-          <version>2.0.2.SP1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-assembly-plugin</artifactId>
-          <version>2.2-beta-2</version>
-        </plugin>
-        <plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>build-helper-maven-plugin</artifactId>
-          <version>1.1</version>
-        </plugin>
-        <plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>buildnumber-maven-plugin</artifactId>
-          <version>1.0-beta-1</version>
-        </plugin>
-        <plugin>
-          <groupId>net.sourceforge.maven-taglib</groupId>
-          <artifactId>maven-taglib-plugin</artifactId>
-          <version>2.3</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-resources-plugin</artifactId>
-          <version>2.3</version>
-        </plugin>
-      </plugins>
-    </pluginManagement>
-  </build>
-
-  <!-- Profiles -->
-  <profiles>
-
-    <profile>
-      <id>distro</id>
-      <modules>
-        <module>modules/enterprise</module>
-        <module>modules/db</module>
-        <module>modules/devguide</module>
-        <module>modules/userguide</module>
-        <module>modules/distro</module>
-      </modules>
-      <properties>
-        <skipTests>true</skipTests>
-      </properties>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <skipTests>true</skipTests>
-            </configuration>
-          </plugin>
-          <plugin>
-            <artifactId>maven-javadoc-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>attach-javadocs</id>
-                <goals>
-                  <goal>jar</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <artifactId>maven-source-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>attach-sources</id>
-                <goals>
-                  <goal>jar</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-
-    <profile>
-      <id>load</id>
-      <modules>
-        <module>modules/test-load</module>
-      </modules>
-    </profile>
-
-    <profile>
-      <id>skiptests</id>
-      <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <skipTests>true</skipTests>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-
-    <!--
-       Name:  no-database
-       Descr: Setup the default database
-       -->
-    <profile>
-      <id>no-database</id>
-      <activation>
-        <property>
-          <name>!database</name>
-        </property>
-      </activation>
-      <properties>
-        <database>hsqldb</database>
-      </properties>
-      <dependencies>
-        <dependency>
-          <groupId>hsqldb</groupId>
-          <artifactId>hsqldb</artifactId>
-          <scope>test</scope>
-        </dependency>
-      </dependencies>
-    </profile>
-
-    <!--
-       Name:  no-target-container
-       Descr: Setup the default target container
-       -->
-    <profile>
-      <id>no-target-container</id>
-      <activation>
-        <property>
-          <name>!jbpm.target.container</name>
-        </property>
-      </activation>
-      <properties>
-        <jbpm.target.container>jboss500</jbpm.target.container>
-      </properties>
-    </profile>
-
-    <profile>
-      <id>hsql</id>
-      <activation>
-        <property>
-          <name>database</name>
-          <value>hsqldb</value>
-        </property>
-      </activation>
-      <dependencies>
-        <dependency>
-          <groupId>hsqldb</groupId>
-          <artifactId>hsqldb</artifactId>
-          <scope>test</scope>
-        </dependency>
-      </dependencies>
-    </profile>
-
-    <!-- -Ddatabase=oracle -->
-    <profile>
-      <id>oracle</id>
-      <activation>
-        <property>
-          <name>database</name>
-          <value>oracle</value>
-        </property>
-      </activation>
-      <dependencies>
-        <dependency>
-          <groupId>com.oracle</groupId>
-          <artifactId>ojdbc14</artifactId>
-          <version>${oracle.version}</version>
-          <scope>test</scope>
-        </dependency>
-      </dependencies>
-      <repositories>
-        <repository>
-          <id>qa.jboss.com</id>
-          <url>http://www.qa.jboss.com/jdbc-drivers/maven2</url>
-        </repository>
-      </repositories>
-    </profile>
-
-    <!-- -Ddatabase=mysql -->
-    <profile>
-      <id>mysql</id>
-      <activation>
-        <property>
-          <name>database</name>
-          <value>mysql</value>
-        </property>
-      </activation>
-      <dependencies>
-        <dependency>
-          <groupId>mysql</groupId>
-          <artifactId>mysql-connector-java</artifactId>
-          <version>5.0.8</version>
-          <scope>test</scope>
-        </dependency>
-      </dependencies>
-    </profile>
-
-    <!-- -Ddatabase=postgresql -->
-    <profile>
-      <id>postgresql</id>
-      <activation>
-        <property>
-          <name>database</name>
-          <value>postgresql</value>
-        </property>
-      </activation>
-      <dependencies>
-        <dependency>
-          <groupId>postgresql</groupId>
-          <artifactId>postgresql</artifactId>
-          <scope>test</scope>
-        </dependency>
-      </dependencies>
-    </profile>
-
-    <!-- -Ddatabase=sybase -->
-    <profile>
-      <id>sybase</id>
-      <activation>
-        <property>
-          <name>database</name>
-          <value>sybase</value>
-        </property>
-      </activation>
-      <dependencies>
-        <dependency>
-          <groupId>net.sourceforge.jtds</groupId>
-          <artifactId>jtds</artifactId>
-          <scope>test</scope>
-        </dependency>
-        <dependency>
-          <groupId>com.sybase</groupId>
-          <artifactId>jconnect</artifactId>
-          <version>6.0.5</version>
-          <scope>test</scope>
-        </dependency>
-      </dependencies>
-      <repositories>
-        <repository>
-          <id>qa.jboss.com</id>
-          <url>http://www.qa.jboss.com/jdbc-drivers/maven2</url>
-        </repository>
-      </repositories>
-    </profile>
-
-    <profile>
-      <id>report</id>
-      <!-- Report Customization 'mvn site:site'-->
-      <reporting>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-project-info-reports-plugin</artifactId>
-            <version>2.0.1</version>
-            <reportSets>
-              <reportSet>
-                <reports>
-                  <report>index</report>
-                  <report>summary</report>
-                  <report>issue-tracking</report>
-                  <report>mailing-list</report>
-                  <report>scm</report>
-                  <report>project-team</report>
-                  <report>license</report>
-                  <report>javadoc</report>
-                </reports>
-              </reportSet>
-            </reportSets>
-          </plugin>
-
-          <plugin>
-            <artifactId>maven-javadoc-plugin</artifactId>
-          </plugin>
-          <plugin>
-            <groupId>org.codehaus.mojo</groupId>
-            <artifactId>jxr-maven-plugin</artifactId>
-          </plugin>
-        </plugins>
-      </reporting>
-    </profile>
-  </profiles>
-
-  <!-- Repositories -->
-  <repositories>
-    <repository>
-      <id>maven1.java.net</id>
-      <url>http://download.java.net/maven/1/</url>
-      <layout>legacy</layout>
-    </repository>
-    <repository>
-      <id>repository.jboss.org</id>
-      <url>http://repository.jboss.com/maven2</url>
-      <snapshots>
-        <enabled>false</enabled>
-      </snapshots>
-    </repository>
-    <repository>
-      <id>snapshots.jboss.org</id>
-      <url>http://snapshots.jboss.org/maven2</url>
-      <snapshots>
-        <enabled>true</enabled>
-      </snapshots>
-    </repository>
-    <repository>
-      <id>repository.codehaus.org</id>
-      <url>http://repository.codehaus.org</url>
-      <snapshots>
-        <enabled>false</enabled>
-      </snapshots>
-    </repository>
-    <repository>
-      <id>maven2.java.net</id>
-      <name>Java.net Repository for Maven 2</name>
-      <url>http://download.java.net/maven/2/</url>
-    </repository>
-    <repository>
-      <id>gwt-maven</id>
-      <url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo/</url>
-    </repository>
-  </repositories>
-
-  <!-- PluginRepositories -->
-  <pluginRepositories>
-    <pluginRepository>
-      <id>maven2.java.net</id>
-      <name>Java.net Repository for Maven 2</name>
-      <url>http://download.java.net/maven/2/</url>
-    </pluginRepository>
-    <pluginRepository>
-      <id>repository.jboss.com</id>
-      <url>http://repository.jboss.com/maven2</url>
-      <snapshots>
-        <enabled>false</enabled>
-      </snapshots>
-    </pluginRepository>
-    <pluginRepository>
-      <id>snapshots.jboss.org</id>
-      <url>http://snapshots.jboss.org/maven2</url>
-      <snapshots>
-        <enabled>true</enabled>
-      </snapshots>
-    </pluginRepository>
-    <pluginRepository>
-      <id>gwt-maven</id>
-      <url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo/</url>
-    </pluginRepository>
-  </pluginRepositories>
-
-  <!-- DistributionManagement -->
-  <distributionManagement>
-    <repository>
-      <id>repository.jboss.org</id>
-      <name>JBoss Maven Repository</name>
-      <url>file://${jboss.maven.repository}</url>
-    </repository>
-    <snapshotRepository>
-      <id>snapshots.jboss.org</id>
-      <name>JBoss Snapshot Repository</name>
-      <url>dav:https://snapshots.jboss.org/maven2</url>
-    </snapshotRepository>
-  </distributionManagement>
-
-</project>




More information about the jbpm-commits mailing list