[seam-commits] Seam SVN: r13114 - in modules/jbpm/trunk/impl: src and 20 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Thu Jun 10 11:49:51 EDT 2010


Author: tsurdilovic
Date: 2010-06-10 11:49:51 -0400 (Thu, 10 Jun 2010)
New Revision: 13114

Added:
   modules/jbpm/trunk/impl/pom.xml
   modules/jbpm/trunk/impl/src/
   modules/jbpm/trunk/impl/src/main/
   modules/jbpm/trunk/impl/src/main/java/
   modules/jbpm/trunk/impl/src/main/java/META-INF/
   modules/jbpm/trunk/impl/src/main/java/META-INF/MANIFEST.MF
   modules/jbpm/trunk/impl/src/main/java/org/
   modules/jbpm/trunk/impl/src/main/java/org/jboss/
   modules/jbpm/trunk/impl/src/main/java/org/jboss/seam/
   modules/jbpm/trunk/impl/src/main/java/org/jboss/seam/jbpm/
   modules/jbpm/trunk/impl/src/main/resources/
   modules/jbpm/trunk/impl/src/main/resources/META-INF/
   modules/jbpm/trunk/impl/src/main/resources/META-INF/beans.xml
   modules/jbpm/trunk/impl/src/main/resources/META-INF/services/
   modules/jbpm/trunk/impl/src/main/resources/META-INF/services/javax.enterprise.inject.spi.Extension
   modules/jbpm/trunk/impl/src/test/
   modules/jbpm/trunk/impl/src/test/java/
   modules/jbpm/trunk/impl/src/test/java/org/
   modules/jbpm/trunk/impl/src/test/java/org/jboss/
   modules/jbpm/trunk/impl/src/test/java/org/jboss/seam/
   modules/jbpm/trunk/impl/src/test/java/org/jboss/seam/jbpm/
   modules/jbpm/trunk/impl/src/test/java/org/jboss/seam/jbpm/test/
   modules/jbpm/trunk/impl/src/test/resources/
   modules/jbpm/trunk/impl/src/test/resources/org/
   modules/jbpm/trunk/impl/src/test/resources/org/jboss/
   modules/jbpm/trunk/impl/src/test/resources/org/jboss/seam/
   modules/jbpm/trunk/impl/src/test/resources/org/jboss/seam/jbpm/
   modules/jbpm/trunk/impl/src/test/resources/org/jboss/seam/jbpm/test/
Log:
added impl folders and files.

Added: modules/jbpm/trunk/impl/pom.xml
===================================================================
--- modules/jbpm/trunk/impl/pom.xml	                        (rev 0)
+++ modules/jbpm/trunk/impl/pom.xml	2010-06-10 15:49:51 UTC (rev 13114)
@@ -0,0 +1,73 @@
+<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">
+   <modelVersion>4.0.0</modelVersion>
+
+   <parent>
+      <groupId>org.jboss.seam.jbpm</groupId>
+      <artifactId>seam-jbpm-parent</artifactId>
+      <version>3.0.0-SNAPSHOT</version>
+      <relativePath>../pom.xml</relativePath>
+   </parent>
+
+   <groupId>org.jboss.seam.jbpm</groupId>
+   <artifactId>seam-jbpm-impl</artifactId>
+   <version>3.0.0-SNAPSHOT</version>
+   <packaging>jar</packaging>
+   <name>Seam jBPM Module Core Implementation</name>
+
+   <dependencies>
+      <dependency>
+         <groupId>javax.el</groupId>
+         <artifactId>el-api</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>javax.validation</groupId>
+         <artifactId>validation-api</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>javax.enterprise</groupId>
+         <artifactId>cdi-api</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.spec.javax.interceptor</groupId>
+         <artifactId>jboss-interceptors-api_1.1_spec</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.slf4j</groupId>
+         <artifactId>slf4j-api</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.weld</groupId>
+         <artifactId>weld-extensions</artifactId>
+      </dependency>
+      <!-- Test Dependencies -->
+      <dependency>
+         <groupId>junit</groupId>
+         <artifactId>junit</artifactId>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.seam.xml</groupId>
+         <artifactId>seam-xml-config</artifactId>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.arquillian</groupId>
+         <artifactId>arquillian-junit</artifactId>
+         <scope>test</scope>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.arquillian.container</groupId>
+         <artifactId>arquillian-weld-embedded</artifactId>
+         <scope>test</scope>
+      </dependency>
+
+      <dependency>
+         <artifactId>seam-jbpm-api</artifactId>
+         <groupId>org.jboss.seam.jbpm</groupId>
+         <scope>compile</scope>
+      </dependency>
+      
+   </dependencies>
+
+</project>

Added: modules/jbpm/trunk/impl/src/main/java/META-INF/MANIFEST.MF
===================================================================
--- modules/jbpm/trunk/impl/src/main/java/META-INF/MANIFEST.MF	                        (rev 0)
+++ modules/jbpm/trunk/impl/src/main/java/META-INF/MANIFEST.MF	2010-06-10 15:49:51 UTC (rev 13114)
@@ -0,0 +1,2 @@
+Manifest-Version: 1.0
+Class-Path: 

Added: modules/jbpm/trunk/impl/src/main/resources/META-INF/beans.xml
===================================================================
--- modules/jbpm/trunk/impl/src/main/resources/META-INF/beans.xml	                        (rev 0)
+++ modules/jbpm/trunk/impl/src/main/resources/META-INF/beans.xml	2010-06-10 15:49:51 UTC (rev 13114)
@@ -0,0 +1,22 @@
+	<!--
+		JBoss, Home of Professional Open Source Copyright ${year}, Red Hat,
+		Inc., and individual contributors by the @authors tag. See the
+		copyright.txt in the distribution for a full listing of individual
+		contributors. This is free software; you can redistribute it and/or
+		modify it under the terms of the GNU Lesser General Public License as
+		published by the Free Software Foundation; either version 2.1 of the
+		License, or (at your option) any later version. This software is
+		distributed in the hope that it will be useful, but WITHOUT ANY
+		WARRANTY; without even the implied warranty of MERCHANTABILITY or
+		FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+		License for more details. You should have received a copy of the GNU
+		Lesser General Public License along with this software; if not, write
+		to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+		Boston, MA 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+	-->
+<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xmlns:s="urn:java:seam:core"
+	xmlns:j="urn:java:org.jboss.seam.jbpm:org.jboss.seam.jbpm.config:org.jboss.seam.jbpm.qualifiers.config"
+	xmlns:jbpm="urn:java:org.drools:org.jbpm.runtime">
+
+</beans>
\ No newline at end of file

Added: modules/jbpm/trunk/impl/src/main/resources/META-INF/services/javax.enterprise.inject.spi.Extension
===================================================================



More information about the seam-commits mailing list