[jbpm-commits] JBoss JBPM SVN: r2358 - in projects/jbpm-spec/trunk/modules/ri: src/main/java/org and 4 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Sep 24 12:17:51 EDT 2008


Author: thomas.diesler at jboss.com
Date: 2008-09-24 12:17:51 -0400 (Wed, 24 Sep 2008)
New Revision: 2358

Added:
   projects/jbpm-spec/trunk/modules/ri/src/main/java/org/jbpm/
   projects/jbpm-spec/trunk/modules/ri/src/main/java/org/jbpm/ri/
   projects/jbpm-spec/trunk/modules/ri/src/main/java/org/jbpm/ri/client/
   projects/jbpm-spec/trunk/modules/ri/src/main/java/org/jbpm/ri/client/ProcessEngineImpl.java
   projects/jbpm-spec/trunk/modules/ri/src/main/resources/jbpm-cfg-beans.xml
Modified:
   projects/jbpm-spec/trunk/modules/ri/pom.xml
Log:
Add jbpm-cfg-beans.xml

Modified: projects/jbpm-spec/trunk/modules/ri/pom.xml
===================================================================
--- projects/jbpm-spec/trunk/modules/ri/pom.xml	2008-09-24 15:06:21 UTC (rev 2357)
+++ projects/jbpm-spec/trunk/modules/ri/pom.xml	2008-09-24 16:17:51 UTC (rev 2358)
@@ -34,10 +34,14 @@
   <!-- Dependencies -->
   <dependencies>
     <dependency>
+      <groupId>org.jbpm.jbpm4</groupId>
+      <artifactId>jbpm-api</artifactId>
+      <version>4.0.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
       <groupId>org.jbpm.spec</groupId>
       <artifactId>jbpm-spec-api</artifactId>
       <version>${version}</version>
-      <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.mvel</groupId>

Added: projects/jbpm-spec/trunk/modules/ri/src/main/java/org/jbpm/ri/client/ProcessEngineImpl.java
===================================================================
--- projects/jbpm-spec/trunk/modules/ri/src/main/java/org/jbpm/ri/client/ProcessEngineImpl.java	                        (rev 0)
+++ projects/jbpm-spec/trunk/modules/ri/src/main/java/org/jbpm/ri/client/ProcessEngineImpl.java	2008-09-24 16:17:51 UTC (rev 2358)
@@ -0,0 +1,37 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * 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.
+ */
+package org.jbpm.ri.client;
+
+//$Id$
+
+import org.jbpm.api.client.ProcessEngine;
+
+/**
+ * A process engine with public access
+ * 
+ * @author thomas.diesler at jboss.com
+ * @since 18-Jun-2008
+ */
+public class ProcessEngineImpl extends ProcessEngine
+{
+
+}


Property changes on: projects/jbpm-spec/trunk/modules/ri/src/main/java/org/jbpm/ri/client/ProcessEngineImpl.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: projects/jbpm-spec/trunk/modules/ri/src/main/resources/jbpm-cfg-beans.xml
===================================================================
--- projects/jbpm-spec/trunk/modules/ri/src/main/resources/jbpm-cfg-beans.xml	                        (rev 0)
+++ projects/jbpm-spec/trunk/modules/ri/src/main/resources/jbpm-cfg-beans.xml	2008-09-24 16:17:51 UTC (rev 2358)
@@ -0,0 +1,10 @@
+<deployment xmlns="urn:jboss:bean-deployer:2.0">
+ 
+  <!-- The KernelLocator -->
+  <bean name="KernelLocator" class="org.jboss.kernel.plugins.util.KernelLocator"/>
+  
+  <!-- The ProcessEngine -->
+  <bean name="jBPMProcessEngine" class="org.jbpm.ri.client.ProcessEngineImpl">
+  </bean>
+  
+</deployment>


Property changes on: projects/jbpm-spec/trunk/modules/ri/src/main/resources/jbpm-cfg-beans.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF




More information about the jbpm-commits mailing list