[jbpm-commits] JBoss JBPM SVN: r1837 - in jbpm3/trunk/modules: enterprise and 3 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Aug 6 15:49:08 EDT 2008


Author: alex.guizar at jboss.com
Date: 2008-08-06 15:49:08 -0400 (Wed, 06 Aug 2008)
New Revision: 1837

Modified:
   jbpm3/trunk/modules/console/pom.xml
   jbpm3/trunk/modules/enterprise/pom.xml
   jbpm3/trunk/modules/jbpm4jsf/pom.xml
   jbpm3/trunk/modules/jpdl/simulation/pom.xml
   jbpm3/trunk/modules/jpdl/ws/pom.xml
Log:
some more dependency scope modifications: JBPM-1446

Modified: jbpm3/trunk/modules/console/pom.xml
===================================================================
--- jbpm3/trunk/modules/console/pom.xml	2008-08-06 13:06:04 UTC (rev 1836)
+++ jbpm3/trunk/modules/console/pom.xml	2008-08-06 19:49:08 UTC (rev 1837)
@@ -48,6 +48,11 @@
          <artifactId>servlet-api</artifactId>
          <scope>provided</scope>
       </dependency>
+      <dependency>
+      	<groupId>commons-logging</groupId>
+      	<artifactId>commons-logging</artifactId>
+      	<scope>provided</scope>
+      </dependency>
    </dependencies>
 
    <!-- Plugins -->

Modified: jbpm3/trunk/modules/enterprise/pom.xml
===================================================================
--- jbpm3/trunk/modules/enterprise/pom.xml	2008-08-06 13:06:04 UTC (rev 1836)
+++ jbpm3/trunk/modules/enterprise/pom.xml	2008-08-06 19:49:08 UTC (rev 1837)
@@ -64,6 +64,16 @@
       <artifactId>log4j</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+    	<groupId>commons-logging</groupId>
+    	<artifactId>commons-logging</artifactId>
+    	<scope>provided</scope>
+    </dependency>
+    <dependency>
+    	<groupId>org.hibernate</groupId>
+    	<artifactId>hibernate</artifactId>
+    	<scope>provided</scope>
+    </dependency>
   </dependencies>
   
   <!-- Plugins -->

Modified: jbpm3/trunk/modules/jbpm4jsf/pom.xml
===================================================================
--- jbpm3/trunk/modules/jbpm4jsf/pom.xml	2008-08-06 13:06:04 UTC (rev 1836)
+++ jbpm3/trunk/modules/jbpm4jsf/pom.xml	2008-08-06 19:49:08 UTC (rev 1837)
@@ -68,6 +68,11 @@
       <artifactId>servlet-api</artifactId>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+    	<groupId>org.hibernate</groupId>
+    	<artifactId>hibernate</artifactId>
+    	<scope>provided</scope>
+    </dependency>
   </dependencies>
 
   <!-- Plugins -->

Modified: jbpm3/trunk/modules/jpdl/simulation/pom.xml
===================================================================
--- jbpm3/trunk/modules/jpdl/simulation/pom.xml	2008-08-06 13:06:04 UTC (rev 1836)
+++ jbpm3/trunk/modules/jpdl/simulation/pom.xml	2008-08-06 19:49:08 UTC (rev 1837)
@@ -45,6 +45,19 @@
       <groupId>jasperreports</groupId>
       <artifactId>jasperreports</artifactId>
     </dependency>
+    <dependency>
+    	<groupId>dom4j</groupId>
+    	<artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+    	<groupId>org.hibernate</groupId>
+    	<artifactId>hibernate</artifactId>
+    </dependency>
+    <dependency>
+    	<groupId>junit</groupId>
+    	<artifactId>junit</artifactId>
+    	<scope>test</scope>
+    </dependency>
   </dependencies>
   
   <!-- Plugins -->

Modified: jbpm3/trunk/modules/jpdl/ws/pom.xml
===================================================================
--- jbpm3/trunk/modules/jpdl/ws/pom.xml	2008-08-06 13:06:04 UTC (rev 1836)
+++ jbpm3/trunk/modules/jpdl/ws/pom.xml	2008-08-06 19:49:08 UTC (rev 1837)
@@ -31,14 +31,6 @@
   <dependencies>
     <!-- jBPM Dependencies -->
     <dependency>
-      <groupId>org.jboss.jbpm</groupId>
-      <artifactId>jbpm-jpdl-identity</artifactId>
-      <version>${version}</version>
-      <scope>provided</scope>
-    </dependency>
-
-    <!-- Provided Dependencies -->
-    <dependency>
       <groupId>javax.jws</groupId>
       <artifactId>jsr181-api</artifactId>
       <scope>provided</scope>
@@ -48,6 +40,18 @@
       <artifactId>jaxb-api</artifactId>
       <scope>provided</scope>
     </dependency>
+    <dependency>
+    	<groupId>org.jboss.jbpm</groupId>
+    	<artifactId>jbpm-jpdl-core</artifactId>
+    	<version>${version}</version>
+    </dependency>
+    <dependency>
+    	<groupId>commons-logging</groupId>
+    	<artifactId>commons-logging</artifactId>
+    	<scope>provided</scope>
+    </dependency>
+
+    <!-- Provided Dependencies -->
   </dependencies>
   
   <!-- Plugins -->




More information about the jbpm-commits mailing list