[jbpm-commits] JBoss JBPM SVN: r4746 - jbpm4/branches/jimma/modules/migration.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed May 6 06:25:20 EDT 2009


Author: jim.ma
Date: 2009-05-06 06:25:20 -0400 (Wed, 06 May 2009)
New Revision: 4746

Modified:
   jbpm4/branches/jimma/modules/migration/pom.xml
Log:
Cleaned up dependencies

Modified: jbpm4/branches/jimma/modules/migration/pom.xml
===================================================================
--- jbpm4/branches/jimma/modules/migration/pom.xml	2009-05-06 07:30:56 UTC (rev 4745)
+++ jbpm4/branches/jimma/modules/migration/pom.xml	2009-05-06 10:25:20 UTC (rev 4746)
@@ -35,32 +35,50 @@
 
   <!-- Dependencies -->
   <dependencies>
-
-    <!-- JBPM4 -->
-    <dependency>
-      <groupId>org.jbpm.jbpm4</groupId>
-      <artifactId>jbpm-jpdl</artifactId>
-      <version>${version}</version>
-    </dependency>
-
-
    <dependency>
     <groupId>org.jbpm.jbpm3</groupId>
     <artifactId>jbpm-jpdl</artifactId>
     <version>3.3.1-SNAPSHOT</version>
+       <exclusions> 
+           <exclusion> 
+                <groupId>org.apache.ant</groupId>
+                <artifactId>ant</artifactId>
+           </exclusion>
+           <exclusion> 
+                <groupId>bsh</groupId>
+                <artifactId>bsh</artifactId>
+           </exclusion>
+
+           <exclusion> 
+                <groupId>org.apache.jackrabbit</groupId>
+                <artifactId>jackrabbit-core</artifactId>
+           </exclusion>
+           <exclusion> 
+                <groupId>org.hibernate</groupId>
+                <artifactId>hibernate</artifactId>
+           </exclusion>
+        </exclusions> 
    </dependency>
 
     <!-- 3rd Party -->
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-    </dependency>
-
-
      <dependency>
             <groupId>javax.xml.bind</groupId>
             <artifactId>jaxb-api</artifactId>
             <version>2.0</version>
+       <exclusions> 
+           <exclusion> 
+                <groupId>javax.activation</groupId>
+                <artifactId>activation</artifactId>
+           </exclusion>
+
+         <exclusion> 
+                <groupId>javax.xml.bind</groupId>
+                <artifactId>jsr173_api</artifactId>
+           </exclusion>
+
+        </exclusions> 
+
+
      </dependency>
 
      <dependency>
@@ -69,6 +87,21 @@
             <version>2.0.3</version>
      </dependency>
 
+
+    <!-- JBPM4 -->
+    <dependency>
+      <groupId>org.jbpm.jbpm4</groupId>
+      <artifactId>jbpm-jpdl</artifactId>
+      <version>${version}</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+
   </dependencies>
 
   <!-- Plugins -->
@@ -92,6 +125,21 @@
                <packageName>org.jbpm.jpdl4.model</packageName>
         </configuration>
       </plugin>
+     
+      <!--Add classpath to menifest -->
+       <!--plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <finalName>jbpm-migration</finalName>
+                    <archive>
+                        <manifest>
+                            <addClasspath>true</addClasspath>
+                        </manifest>
+                    </archive>
+                </configuration>
+       </plugin-->
+
     </plugins>
   </build>
 




More information about the jbpm-commits mailing list