[jboss-svn-commits] JBL Code SVN: r10855 - in labs/jbossesb/trunk/product/services/jbpm: lib/ext and 1 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Apr 10 12:59:38 EDT 2007


Author: kurt.stam at jboss.com
Date: 2007-04-10 12:59:38 -0400 (Tue, 10 Apr 2007)
New Revision: 10855

Added:
   labs/jbossesb/trunk/product/services/jbpm/build.properties
   labs/jbossesb/trunk/product/services/jbpm/build.xml
   labs/jbossesb/trunk/product/services/jbpm/hibernate.cfg.xml
   labs/jbossesb/trunk/product/services/jbpm/jboss-esb.xml
   labs/jbossesb/trunk/product/services/jbpm/jbpm.cfg.xml
   labs/jbossesb/trunk/product/services/jbpm/m2/
   labs/jbossesb/trunk/product/services/jbpm/m2/README.txt
   labs/jbossesb/trunk/product/services/jbpm/m2/pom.xml
   labs/jbossesb/trunk/product/services/jbpm/m2/project.properties
Removed:
   labs/jbossesb/trunk/product/services/jbpm/lib/ext/jbossesb-listeners.jar
   labs/jbossesb/trunk/product/services/jbpm/lib/ext/jbossesb-rosetta.jar
   labs/jbossesb/trunk/product/services/jbpm/lib/ext/jbossesb-services.jar
Modified:
   labs/jbossesb/trunk/product/services/jbpm/
   labs/jbossesb/trunk/product/services/jbpm/.classpath
Log:
Adding build.xml


Property changes on: labs/jbossesb/trunk/product/services/jbpm
___________________________________________________________________
Name: svn:ignore
   + target
build


Modified: labs/jbossesb/trunk/product/services/jbpm/.classpath
===================================================================
--- labs/jbossesb/trunk/product/services/jbpm/.classpath	2007-04-10 16:17:32 UTC (rev 10854)
+++ labs/jbossesb/trunk/product/services/jbpm/.classpath	2007-04-10 16:59:38 UTC (rev 10855)
@@ -20,8 +20,8 @@
 	<classpathentry kind="lib" path="lib/ext/jta.jar"/>
 	<classpathentry kind="lib" path="lib/ext/junit-4.1.jar"/>
 	<classpathentry kind="lib" path="lib/ext/log4j.jar"/>
-	<classpathentry kind="lib" path="lib/ext/jbossesb-rosetta.jar"/>
-	<classpathentry kind="lib" path="lib/ext/jbossesb-listeners.jar"/>
-	<classpathentry kind="lib" path="lib/ext/jbossesb-services.jar"/>
+	<classpathentry kind="var" path="ESB_HOME/jbossesb-listeners.jar"/>
+	<classpathentry kind="var" path="ESB_HOME/jbossesb-rosetta.jar"/>
+	<classpathentry kind="var" path="ESB_HOME/jbossesb-services.jar"/>
 	<classpathentry kind="output" path="bin"/>
 </classpath>

Added: labs/jbossesb/trunk/product/services/jbpm/build.properties
===================================================================
--- labs/jbossesb/trunk/product/services/jbpm/build.properties	                        (rev 0)
+++ labs/jbossesb/trunk/product/services/jbpm/build.properties	2007-04-10 16:59:38 UTC (rev 10855)
@@ -0,0 +1,2 @@
+esb.product.lib.dir=../jbossesb/product/build/jbossesb/lib
+#esb.product.lib.dir=../../../lib
\ No newline at end of file


Property changes on: labs/jbossesb/trunk/product/services/jbpm/build.properties
___________________________________________________________________
Name: svn:mime-type
   + text/plain
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/services/jbpm/build.xml
===================================================================
--- labs/jbossesb/trunk/product/services/jbpm/build.xml	                        (rev 0)
+++ labs/jbossesb/trunk/product/services/jbpm/build.xml	2007-04-10 16:59:38 UTC (rev 10855)
@@ -0,0 +1,40 @@
+<project name="Base" default="esb" basedir=".">
+
+    <property file="build.properties" />
+    
+	<target name="clean">
+		<delete dir="build" />
+	</target>
+	
+	<target name="prepare" depends="clean">
+		<mkdir dir="build/jbpm.esb/META-INF" />
+	</target>
+	
+	<path id="classpath">
+		<fileset dir="lib/ext" includes="*.jar" />
+		<fileset dir="${esb.product.lib.dir}" includes="*.jar" /> <!-- Product Jars. -->
+	</path>
+
+	<target name="compile" depends="prepare">
+		<javac srcdir="src/main/java" destdir="build/jbpm.esb">
+			<classpath refid="classpath" />
+		</javac>
+	</target>
+
+    <target name="esb" depends="compile">
+        <copy todir="build/jbpm.esb/META-INF">
+            <fileset dir="." includes="jboss-esb.xml" />
+        </copy>
+        <copy todir="build/jbpm.esb/" >
+        	<fileset dir="." includes="hibernate.cfg.xml,jbpm.cfg.xml"/>
+        </copy>
+        <copy todir="build/jbpm.esb/" >
+        	<fileset dir="lib/ext" includes="ant-1.6.2-stripped.jar,asm.jar,bsh-1.3.0.jar,cglib-2.1_2jboss.jar
+          		clover.jar,commons-beanutils-1.6.1.jar,commons-digester-1.5.jar,commons-fileupload-1.0.jar,
+          		dom4j-1.6.1.jar,hibernate3.jar,jaxen-1.1-beta-4.jar,jbpm-3.1.3.jar,jbpm-identity-3.1.3.jar,
+          		jdbc2_0-stdext.jar,jta.jar"/>
+         </copy>
+    </target>
+	
+
+</project>
\ No newline at end of file


Property changes on: labs/jbossesb/trunk/product/services/jbpm/build.xml
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/services/jbpm/hibernate.cfg.xml
===================================================================
--- labs/jbossesb/trunk/product/services/jbpm/hibernate.cfg.xml	                        (rev 0)
+++ labs/jbossesb/trunk/product/services/jbpm/hibernate.cfg.xml	2007-04-10 16:59:38 UTC (rev 10855)
@@ -0,0 +1,178 @@
+<?xml version='1.0' encoding='utf-8'?>
+
+<!DOCTYPE hibernate-configuration PUBLIC
+          "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
+          "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
+
+<hibernate-configuration>
+  <session-factory>
+    <!-- jdbc connection properties -->
+    <property name="hibernate.dialect">org.hibernate.dialect.HSQLDialect</property>
+    <property name="hibernate.connection.driver_class">org.hsqldb.jdbcDriver</property>
+    <property name="hibernate.connection.url">jdbc:hsqldb:mem:.;sql.enforce_strict_size=true</property>
+<!--
+    <property name="hibernate.connection.url">jdbc:hsqldb:hsql://localhost/juddi</property>
+-->
+    <property name="hibernate.connection.username">sa</property>
+    <property name="hibernate.connection.password"></property>
+<!--
+    <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
+    <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
+    <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/JbpmDB</property>
+    <property name="hibernate.connection.username">postgres</property>
+    <property name="hibernate.connection.password"></property>
+-->
+
+
+    <property name="hibernate.cache.provider_class">org.hibernate.cache.HashtableCacheProvider</property>
+        
+    <!-- other hibernate properties 
+    <property name="hibernate.show_sql">true</property>
+    <property name="hibernate.format_sql">true</property>
+    <property name="hibernate.use_sql_comments">true</property>
+    -->
+
+    <!-- ############################################ -->
+    <!-- # mapping files with external dependencies # -->
+    <!-- ############################################ -->
+
+    <!-- following mapping file has a dependendy on   -->
+    <!-- 'bsh-{version}.jar'.                         -->
+    <!-- uncomment this if you don't have bsh on your -->
+    <!-- classpath.  you won't be able to use the     -->
+    <!-- script element in process definition files   -->
+    <mapping resource="org/jbpm/graph/action/Script.hbm.xml"/>
+
+    <!-- following mapping files have a dependendy on  -->
+    <!-- 'jbpm-identity-{version}.jar', mapping files  -->
+    <!-- of the pluggable jbpm identity component.     -->
+    <!-- comment out the following 3 lines if you don't-->
+    <!-- want to use the default jBPM identity mgmgt   -->
+    <!-- component                                     -->
+    <mapping resource="org/jbpm/identity/User.hbm.xml"/>
+    <mapping resource="org/jbpm/identity/Group.hbm.xml"/>
+    <mapping resource="org/jbpm/identity/Membership.hbm.xml"/>
+
+    <!-- ###################### -->
+    <!-- # jbpm mapping files # -->
+    <!-- ###################### -->
+
+    <!-- hql queries and type defs -->
+    <mapping resource="org/jbpm/db/hibernate.queries.hbm.xml" />
+    
+    <!-- graph.def mapping files -->
+    <mapping resource="org/jbpm/graph/def/ProcessDefinition.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/def/Node.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/def/Transition.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/def/Event.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/def/Action.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/def/SuperState.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/def/ExceptionHandler.hbm.xml"/>
+    <mapping resource="org/jbpm/instantiation/Delegation.hbm.xml"/>
+
+    <!-- graph.node mapping files -->
+    <mapping resource="org/jbpm/graph/node/StartState.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/node/EndState.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/node/ProcessState.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/node/Decision.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/node/Fork.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/node/Join.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/node/State.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/node/TaskNode.hbm.xml"/>
+
+    <!-- context.def mapping files -->
+    <mapping resource="org/jbpm/context/def/ContextDefinition.hbm.xml"/>
+    <mapping resource="org/jbpm/context/def/VariableAccess.hbm.xml"/>
+
+    <!-- taskmgmt.def mapping files -->
+    <mapping resource="org/jbpm/taskmgmt/def/TaskMgmtDefinition.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/def/Swimlane.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/def/Task.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/def/TaskController.hbm.xml"/>
+
+    <!-- module.def mapping files -->
+    <mapping resource="org/jbpm/module/def/ModuleDefinition.hbm.xml"/>
+
+    <!-- bytes mapping files -->
+    <mapping resource="org/jbpm/bytes/ByteArray.hbm.xml"/>
+
+    <!-- file.def mapping files -->
+    <mapping resource="org/jbpm/file/def/FileDefinition.hbm.xml"/>
+
+    <!-- scheduler.def mapping files -->
+    <mapping resource="org/jbpm/scheduler/def/CreateTimerAction.hbm.xml"/>
+    <mapping resource="org/jbpm/scheduler/def/CancelTimerAction.hbm.xml"/>
+
+    <!-- graph.exe mapping files -->
+    <mapping resource="org/jbpm/graph/exe/Comment.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/exe/ProcessInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/exe/Token.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/exe/RuntimeAction.hbm.xml"/>
+
+    <!-- module.exe mapping files -->
+    <mapping resource="org/jbpm/module/exe/ModuleInstance.hbm.xml"/>
+        
+    <!-- context.exe mapping files -->
+    <mapping resource="org/jbpm/context/exe/ContextInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/context/exe/TokenVariableMap.hbm.xml"/>
+    <mapping resource="org/jbpm/context/exe/VariableInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/context/exe/variableinstance/ByteArrayInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/context/exe/variableinstance/DateInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/context/exe/variableinstance/DoubleInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/context/exe/variableinstance/HibernateLongInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/context/exe/variableinstance/HibernateStringInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/context/exe/variableinstance/LongInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/context/exe/variableinstance/NullInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml"/>
+
+    <!-- msg.db mapping files -->
+    <mapping resource="org/jbpm/msg/Message.hbm.xml"/>
+    <mapping resource="org/jbpm/msg/db/TextMessage.hbm.xml"/>
+    <mapping resource="org/jbpm/command/ExecuteActionCommand.hbm.xml"/>
+    <mapping resource="org/jbpm/command/ExecuteNodeCommand.hbm.xml"/>
+    <mapping resource="org/jbpm/command/SignalCommand.hbm.xml"/>
+    <mapping resource="org/jbpm/command/TaskInstanceEndCommand.hbm.xml"/>
+
+    <!-- taskmgmt.exe mapping files -->
+    <mapping resource="org/jbpm/taskmgmt/exe/TaskMgmtInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/exe/PooledActor.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/exe/SwimlaneInstance.hbm.xml"/>
+
+    <!-- scheduler.exe mapping files -->
+    <mapping resource="org/jbpm/scheduler/exe/Timer.hbm.xml"/>
+
+    <!-- logging mapping files -->
+    <mapping resource="org/jbpm/logging/log/ProcessLog.hbm.xml"/>
+    <mapping resource="org/jbpm/logging/log/MessageLog.hbm.xml"/>
+    <mapping resource="org/jbpm/logging/log/CompositeLog.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/log/ActionLog.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/log/NodeLog.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/log/ProcessInstanceCreateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/log/ProcessInstanceEndLog.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/log/ProcessStateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/log/SignalLog.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/log/TokenCreateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/log/TokenEndLog.hbm.xml"/>
+    <mapping resource="org/jbpm/graph/log/TransitionLog.hbm.xml"/>
+    <mapping resource="org/jbpm/context/log/VariableLog.hbm.xml"/>
+    <mapping resource="org/jbpm/context/log/VariableCreateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/context/log/VariableDeleteLog.hbm.xml"/>
+    <mapping resource="org/jbpm/context/log/VariableUpdateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/context/log/variableinstance/ByteArrayUpdateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/context/log/variableinstance/DateUpdateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/context/log/variableinstance/DoubleUpdateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/context/log/variableinstance/HibernateLongUpdateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/context/log/variableinstance/HibernateStringUpdateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/context/log/variableinstance/LongUpdateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/log/TaskLog.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/log/TaskCreateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/log/TaskAssignLog.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/log/TaskEndLog.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/log/SwimlaneLog.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/log/SwimlaneCreateLog.hbm.xml"/>
+    <mapping resource="org/jbpm/taskmgmt/log/SwimlaneAssignLog.hbm.xml"/>
+    
+  </session-factory>
+</hibernate-configuration>


Property changes on: labs/jbossesb/trunk/product/services/jbpm/hibernate.cfg.xml
___________________________________________________________________
Name: svn:mime-type
   + text/xml

Added: labs/jbossesb/trunk/product/services/jbpm/jboss-esb.xml
===================================================================
--- labs/jbossesb/trunk/product/services/jbpm/jboss-esb.xml	                        (rev 0)
+++ labs/jbossesb/trunk/product/services/jbpm/jboss-esb.xml	2007-04-10 16:59:38 UTC (rev 10855)
@@ -0,0 +1,36 @@
+<?xml version = "1.0" encoding = "UTF-8"?>
+<jbossesb xmlns="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml/jbossesb-1.0.1.xsd" parameterReloadSecs="5">
+
+	<providers>
+          <jms-provider name="JBossESB-JBM" connection-factory="ConnectionFactory">
+                      
+              <jms-bus busid="toJbpmJmsChannel">
+                  <jms-message-filter
+                      dest-type="QUEUE"
+                      dest-name="queue/B"
+                      selector="type='toJbpm'"
+                  />
+              </jms-bus>
+          </jms-provider>
+      </providers>
+      
+      <services>
+        <service 
+        	category="categoryJbpmService" 
+        	name="nameJbpmService" 
+        	description="jBPM-ESB Service">
+            <listeners>
+                <jms-listener name="jmsToJbpmInterface"
+                    busidref="toJbpmJmsChannel"                         
+                    maxThreads="1"
+                />
+            </listeners>
+            <actions>
+                   <action name="jbpmCommand"  
+                   	class="org.jboss.soa.esb.jbpm.actions.CommandInterpreter" 
+                   />      
+            </actions>
+        </service>
+      </services>
+     
+</jbossesb>


Property changes on: labs/jbossesb/trunk/product/services/jbpm/jboss-esb.xml
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:eol-style
   + native

Added: labs/jbossesb/trunk/product/services/jbpm/jbpm.cfg.xml
===================================================================
--- labs/jbossesb/trunk/product/services/jbpm/jbpm.cfg.xml	                        (rev 0)
+++ labs/jbossesb/trunk/product/services/jbpm/jbpm.cfg.xml	2007-04-10 16:59:38 UTC (rev 10855)
@@ -0,0 +1,9 @@
+<jbpm-configuration>
+
+  <!-- 
+    The default configurations can be found in org/jbpm/default.jbpm.cfg.xml 
+    Those configurations can be overwritten by putting this file called 
+    jbpm.cfg.xml on the root of the classpath and put in the customized values.
+  -->
+
+</jbpm-configuration>


Property changes on: labs/jbossesb/trunk/product/services/jbpm/jbpm.cfg.xml
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:eol-style
   + native

Deleted: labs/jbossesb/trunk/product/services/jbpm/lib/ext/jbossesb-listeners.jar
===================================================================
(Binary files differ)

Deleted: labs/jbossesb/trunk/product/services/jbpm/lib/ext/jbossesb-rosetta.jar
===================================================================
(Binary files differ)

Deleted: labs/jbossesb/trunk/product/services/jbpm/lib/ext/jbossesb-services.jar
===================================================================
(Binary files differ)

Added: labs/jbossesb/trunk/product/services/jbpm/m2/README.txt
===================================================================
--- labs/jbossesb/trunk/product/services/jbpm/m2/README.txt	                        (rev 0)
+++ labs/jbossesb/trunk/product/services/jbpm/m2/README.txt	2007-04-10 16:59:38 UTC (rev 10855)
@@ -0,0 +1 @@
+For when we start using Maven. Right now the pom is incomplete.
\ No newline at end of file

Added: labs/jbossesb/trunk/product/services/jbpm/m2/pom.xml
===================================================================
--- labs/jbossesb/trunk/product/services/jbpm/m2/pom.xml	                        (rev 0)
+++ labs/jbossesb/trunk/product/services/jbpm/m2/pom.xml	2007-04-10 16:59:38 UTC (rev 10855)
@@ -0,0 +1,90 @@
+<?xml version="1.0" encoding="UTF-8"?><project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.soa.esb</groupId>
+  <artifactId>org.jboss.soa.esb.jbpm</artifactId>
+  <version>4.2.MR2</version>
+  <description>Plugin to add jBPM to ESB</description>
+  <build>
+    <defaultGoal>package</defaultGoal>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <version>2.1</version>
+        <configuration>
+          <archive>
+            <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-clean-plugin</artifactId>
+        <version>2.1</version>
+        <configuration>
+          <filesets>
+            <fileset>
+              <directory>${basedir}/output</directory>
+            </fileset>
+          </filesets>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.3</version>
+        <configuration>
+          <includes>
+            <include>**/*Test.java</include>
+          </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>asm</groupId>
+      <artifactId>asm</artifactId>
+      <version>2.2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>bsh</groupId>
+      <artifactId>bsh</artifactId>
+      <version>1.3.0</version>
+    </dependency>
+    <dependency>
+      <groupId>clover</groupId>
+      <artifactId>clover</artifactId>
+      <version>1.3.11</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+      <version>1.6.1</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-digester</groupId>
+      <artifactId>commons-digester</artifactId>
+      <version>1.5</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+      <version>1.0</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.1</version>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.8</version>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file


Property changes on: labs/jbossesb/trunk/product/services/jbpm/m2/pom.xml
___________________________________________________________________
Name: svn:mime-type
   + text/xml

Added: labs/jbossesb/trunk/product/services/jbpm/m2/project.properties
===================================================================
--- labs/jbossesb/trunk/product/services/jbpm/m2/project.properties	                        (rev 0)
+++ labs/jbossesb/trunk/product/services/jbpm/m2/project.properties	2007-04-10 16:59:38 UTC (rev 10855)
@@ -0,0 +1 @@
+maven.repo.remote=http://repository.jboss.com/maven2/jboss


Property changes on: labs/jbossesb/trunk/product/services/jbpm/m2/project.properties
___________________________________________________________________
Name: svn:mime-type
   + text/plain
Name: svn:eol-style
   + native




More information about the jboss-svn-commits mailing list