[jbpm-commits] JBoss JBPM SVN: r6675 - projects/jbpm-ejb3.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Sep 24 17:35:06 EDT 2010


Author: bradsdavis
Date: 2010-09-24 17:35:05 -0400 (Fri, 24 Sep 2010)
New Revision: 6675

Added:
   projects/jbpm-ejb3/pom.xml
Log:
Adding the POM for the build.

Added: projects/jbpm-ejb3/pom.xml
===================================================================
--- projects/jbpm-ejb3/pom.xml	                        (rev 0)
+++ projects/jbpm-ejb3/pom.xml	2010-09-24 21:35:05 UTC (rev 6675)
@@ -0,0 +1,65 @@
+<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/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.jbpm.ejb3</groupId>
+	<artifactId>jbpm-ejb3</artifactId>
+	<version>1.0.0</version>
+	<name>jBPM EJB3 Module</name>
+	<description>EJB3 Services for jBPM	</description>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.6</source>
+					<target>1.6</target>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-ejb-plugin</artifactId>
+				<configuration>
+					<ejbVersion>3.1</ejbVersion>
+					<!--
+						<generateClient>true</generateClient> <clientIncludes>
+						<clientInclude>...</clientInclude> </clientIncludes>
+					-->
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+	<dependencies>
+		<dependency>
+			<groupId>javax.ejb</groupId>
+			<artifactId>ejb-api</artifactId>
+			<version>3.0</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>javax.jms</groupId>
+			<artifactId>jms</artifactId>
+			<version>1.1</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.jbpm.jbpm3</groupId>
+			<artifactId>jbpm-jpdl</artifactId>
+			<version>3.2.8</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+	    	<groupId>org.jboss.ejb3</groupId>
+	    	<artifactId>jboss-ejb3-ext-api</artifactId>
+	    	<version>1.1.1</version>
+	    	<scope>provided</scope>
+	    </dependency>
+		<dependency>
+			<groupId>commons-logging</groupId>
+			<artifactId>commons-logging</artifactId>
+			<version>1.1.1</version>
+			<type>jar</type>
+			<scope>provided</scope>
+		</dependency>
+	</dependencies>
+</project>
\ No newline at end of file



More information about the jbpm-commits mailing list