[jbpm-commits] JBoss JBPM SVN: r3058 - in jbpm3/trunk/modules: distribution/src/main/resources/installer and 4 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Nov 24 10:16:07 EST 2008


Author: thomas.diesler at jboss.com
Date: 2008-11-24 10:16:07 -0500 (Mon, 24 Nov 2008)
New Revision: 3058

Added:
   jbpm3/trunk/modules/integration/jboss42/src/test/java/
   jbpm3/trunk/modules/integration/jboss42/src/test/java/org/jbpm/test/integration/deployment/
   jbpm3/trunk/modules/integration/jboss42/src/test/java/org/jbpm/test/integration/deployment/SimpleDeploymentTest.java
Removed:
   jbpm3/trunk/modules/integration/jboss42/src/test/java/org/jbpm/test/integration/jpdl/
Modified:
   jbpm3/trunk/modules/distribution/pom.xml
   jbpm3/trunk/modules/distribution/src/main/resources/installer/install-definition.xml
   jbpm3/trunk/modules/integration/jboss42/.classpath
Log:
Add SimpleDeploymentTest

Modified: jbpm3/trunk/modules/distribution/pom.xml
===================================================================
--- jbpm3/trunk/modules/distribution/pom.xml	2008-11-24 14:46:27 UTC (rev 3057)
+++ jbpm3/trunk/modules/distribution/pom.xml	2008-11-24 15:16:07 UTC (rev 3058)
@@ -167,6 +167,14 @@
       <artifactId>ant</artifactId>
     </dependency>
     <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+    </dependency>
+    <dependency>
       <groupId>hsqldb</groupId>
       <artifactId>hsqldb</artifactId>
     </dependency>

Modified: jbpm3/trunk/modules/distribution/src/main/resources/installer/install-definition.xml
===================================================================
--- jbpm3/trunk/modules/distribution/src/main/resources/installer/install-definition.xml	2008-11-24 14:46:27 UTC (rev 3057)
+++ jbpm3/trunk/modules/distribution/src/main/resources/installer/install-definition.xml	2008-11-24 15:16:07 UTC (rev 3058)
@@ -159,6 +159,8 @@
         <include name="hibernate.jar" />
         <include name="hsqldb.jar" />
         <include name="junit.jar" />
+        <include name="slf4j-api.jar" />
+        <include name="slf4j-log4j12.jar" />
         <include name="log4j.jar" />
       </fileset>
 
@@ -189,6 +191,8 @@
         <include name="jbpm-integration-api.jar" />
         <include name="jbpm-integration-jboss42.jar" />
         <include name="jbpm-spec-api.jar" />
+        <include name="slf4j-api.jar" />
+        <include name="slf4j-log4j12.jar" />
       </fileset>
       <file src="@{deploy.artifacts.dir}/lib/jbpm-identity-service.zip" targetdir="${installPath}/server/${jbossTargetServer}/deploy/jbpm/jbpm-service.sar"
         unpack="true" override="true" />

Modified: jbpm3/trunk/modules/integration/jboss42/.classpath
===================================================================
--- jbpm3/trunk/modules/integration/jboss42/.classpath	2008-11-24 14:46:27 UTC (rev 3057)
+++ jbpm3/trunk/modules/integration/jboss42/.classpath	2008-11-24 15:16:07 UTC (rev 3058)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
-	<classpathentry kind="src" output="target/classes" path="src/main/java"/>
-	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
+	<classpathentry kind="src" path="src/main/java"/>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
 	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
 	<classpathentry kind="output" path="target/classes"/>

Copied: jbpm3/trunk/modules/integration/jboss42/src/test/java (from rev 3057, jbpm3/trunk/modules/integration/api/src/test/java)

Added: jbpm3/trunk/modules/integration/jboss42/src/test/java/org/jbpm/test/integration/deployment/SimpleDeploymentTest.java
===================================================================
--- jbpm3/trunk/modules/integration/jboss42/src/test/java/org/jbpm/test/integration/deployment/SimpleDeploymentTest.java	                        (rev 0)
+++ jbpm3/trunk/modules/integration/jboss42/src/test/java/org/jbpm/test/integration/deployment/SimpleDeploymentTest.java	2008-11-24 15:16:07 UTC (rev 3058)
@@ -0,0 +1,48 @@
+/*
+ * 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.test.integration.deployment;
+
+// $Id$
+
+import org.jbpm.api.test.IntegrationTestCase;
+
+/**
+ * Test simple jPDL process deployment
+ * 
+ * @author thomas.diesler at jboss.com
+ * @since 24-Nov-2008
+ */
+public class SimpleDeploymentTest extends IntegrationTestCase
+{
+  String PAR_ARCHIVE = "simple/simple-process.xml";
+
+  public void testSimpleDeploy() throws Exception
+  {
+    deploy(PAR_ARCHIVE);
+
+  }
+
+  public void testSimpleUndeploy() throws Exception
+  {
+    undeploy(PAR_ARCHIVE);
+  }
+}


Property changes on: jbpm3/trunk/modules/integration/jboss42/src/test/java/org/jbpm/test/integration/deployment/SimpleDeploymentTest.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF




More information about the jbpm-commits mailing list