[jbpm-commits] JBoss JBPM SVN: r5437 - in jbpm4/trunk/modules/bpmn: src/main/lib and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Aug 6 16:25:44 EDT 2009


Author: kukeltje
Date: 2009-08-06 16:25:44 -0400 (Thu, 06 Aug 2009)
New Revision: 5437

Added:
   jbpm4/trunk/modules/bpmn/src/main/lib/bsh-engine-1.0.1.jar
Modified:
   jbpm4/trunk/modules/bpmn/pom.xml
Log:
bsh-engine and pom change

Modified: jbpm4/trunk/modules/bpmn/pom.xml
===================================================================
--- jbpm4/trunk/modules/bpmn/pom.xml	2009-08-06 20:16:12 UTC (rev 5436)
+++ jbpm4/trunk/modules/bpmn/pom.xml	2009-08-06 20:25:44 UTC (rev 5437)
@@ -1,59 +1,107 @@
 <?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 5246 2009-07-06 11:07:48Z tom.baeyens at 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">
+	<!-- $Id: pom.xml 5246 2009-07-06 11:07:48Z tom.baeyens at 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">
 
-  <!-- Module Info -->
-  <modelVersion>4.0.0</modelVersion>
-  <name>jBPM 4 - BPMN</name>
-  <groupId>org.jbpm.jbpm4</groupId>
-  <artifactId>jbpm-bpmn</artifactId>
-  <packaging>jar</packaging>
+	<!-- Module Info -->
+	<modelVersion>4.0.0</modelVersion>
+	<name>jBPM 4 - BPMN</name>
+	<groupId>org.jbpm.jbpm4</groupId>
+	<artifactId>jbpm-bpmn</artifactId>
+	<packaging>jar</packaging>
 
-  <!-- Parent -->
-  <parent>
-    <groupId>org.jbpm.jbpm4</groupId>
-    <artifactId>jbpm</artifactId>
-    <version>4.1-SNAPSHOT</version>
-    <relativePath>../../pom.xml</relativePath>
-  </parent>
+	<!-- Parent -->
+	<parent>
+		<groupId>org.jbpm.jbpm4</groupId>
+		<artifactId>jbpm</artifactId>
+		<version>4.1-SNAPSHOT</version>
+		<relativePath>../../pom.xml</relativePath>
+	</parent>
 
-  <!-- Dependencies -->
-  <dependencies>
+	<!--
+		mvn install:install-file -DgroupId=com.sun.script
+		-DartifactId=bsh-engine -Dversion=1.0.1 -Dpackaging=jar
+		-Dfile=bsh-engine-1.0.1.jar
+	-->
+	<!-- Dependencies -->
+	<dependencies>
 
-    <dependency>
-      <groupId>org.jbpm.jbpm4</groupId>
-      <artifactId>jbpm-api</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.jbpm.jbpm4</groupId>
-      <artifactId>jbpm-test-base</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.jbpm.jbpm4</groupId>
-      <artifactId>jbpm-jpdl</artifactId>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.jbpm.jbpm4</groupId>
-      <artifactId>jbpm-test-base</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-    	<groupId>org.beanshell</groupId>
-    	<artifactId>bsh</artifactId>
-    	<version>2.0b4</version>
-    </dependency>
-  </dependencies>
+		<dependency>
+			<groupId>org.jbpm.jbpm4</groupId>
+			<artifactId>jbpm-pvm</artifactId>
+			<version>${version}</version>
+		</dependency>
+		<dependency>
+			<groupId>org.beanshell</groupId>
+			<artifactId>bsh</artifactId>
+			<version>2.0b4</version>
+		</dependency>
+		<!-- 3rd Party -->
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>com.sun.script</groupId>
+			<artifactId>bsh-engine</artifactId>
+			<version>1.0.1</version>
+		</dependency>
+	</dependencies>
 
+	<!-- Plugins -->
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<excludes>
+						<exclude>org/jbpm/test/xml/DbGenTest.java</exclude>
+					</excludes>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+
+	<!-- Profiles -->
+	<profiles>
+		<!--
+			skip tests if this is an integration test run (only examples and
+			test-db are part of the integration test runs)
+		-->
+		<profile>
+			<id>integration.test</id>
+			<activation>
+				<property>
+					<name>jboss.bind.address</name>
+				</property>
+			</activation>
+			<properties>
+				<skipTests>true</skipTests>
+			</properties>
+		</profile>
+	</profiles>
+
 </project>
\ No newline at end of file

Added: jbpm4/trunk/modules/bpmn/src/main/lib/bsh-engine-1.0.1.jar
===================================================================
(Binary files differ)


Property changes on: jbpm4/trunk/modules/bpmn/src/main/lib/bsh-engine-1.0.1.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream



More information about the jbpm-commits mailing list