[jbpm-commits] JBoss JBPM SVN: r2716 - in jbpm4/trunk/modules: test-base and 7 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Oct 31 12:36:43 EDT 2008


Author: tom.baeyens at jboss.com
Date: 2008-10-31 12:36:43 -0400 (Fri, 31 Oct 2008)
New Revision: 2716

Added:
   jbpm4/trunk/modules/test-db/
   jbpm4/trunk/modules/test-db/.classpath
   jbpm4/trunk/modules/test-db/.project
   jbpm4/trunk/modules/test-db/pom.xml
   jbpm4/trunk/modules/test-db/src/
   jbpm4/trunk/modules/test-db/src/test/
   jbpm4/trunk/modules/test-db/src/test/java/
   jbpm4/trunk/modules/test-load/
   jbpm4/trunk/modules/test-load/.classpath
   jbpm4/trunk/modules/test-load/.project
   jbpm4/trunk/modules/test-load/pom.xml
   jbpm4/trunk/modules/test-load/src/
   jbpm4/trunk/modules/test-load/src/test/
   jbpm4/trunk/modules/test-load/src/test/java/
Modified:
   jbpm4/trunk/modules/test-base/
   jbpm4/trunk/modules/test-base/.project
   jbpm4/trunk/modules/test-pojo/.project
Log:
unification api proposals


Property changes on: jbpm4/trunk/modules/test-base
___________________________________________________________________
Name: svn:ignore
   + target


Modified: jbpm4/trunk/modules/test-base/.project
===================================================================
--- jbpm4/trunk/modules/test-base/.project	2008-10-31 16:24:20 UTC (rev 2715)
+++ jbpm4/trunk/modules/test-base/.project	2008-10-31 16:36:43 UTC (rev 2716)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <projectDescription>
-	<name>test</name>
+	<name>test-base</name>
 	<comment></comment>
 	<projects>
 	</projects>

Added: jbpm4/trunk/modules/test-db/.classpath
===================================================================
--- jbpm4/trunk/modules/test-db/.classpath	                        (rev 0)
+++ jbpm4/trunk/modules/test-db/.classpath	2008-10-31 16:36:43 UTC (rev 2716)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<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/test-classes"/>
+</classpath>

Added: jbpm4/trunk/modules/test-db/.project
===================================================================
--- jbpm4/trunk/modules/test-db/.project	                        (rev 0)
+++ jbpm4/trunk/modules/test-db/.project	2008-10-31 16:36:43 UTC (rev 2716)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>test-db</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
+	</natures>
+</projectDescription>

Added: jbpm4/trunk/modules/test-db/pom.xml
===================================================================
--- jbpm4/trunk/modules/test-db/pom.xml	                        (rev 0)
+++ jbpm4/trunk/modules/test-db/pom.xml	2008-10-31 16:36:43 UTC (rev 2716)
@@ -0,0 +1,103 @@
+<?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.                           -->
+<!--                                                                        -->
+<!-- ====================================================================== -->
+
+<!-- $Id$ -->
+<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>
+  <name>jBPM 4 - CTS DB</name>
+  <groupId>org.jbpm.jbpm4</groupId>
+  <artifactId>jbpm-test-db</artifactId>
+  <packaging>jar</packaging>
+
+  <version>1.0.0-SNAPSHOT</version>
+  
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jbpm.jbpm4</groupId>
+    <artifactId>jbpm</artifactId>
+    <version>4.0.0-SNAPSHOT</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+
+  <!-- Dependencies -->
+  <dependencies>
+    <dependency>
+      <groupId>org.jbpm.jbpm4</groupId>
+      <artifactId>jbpm-api</artifactId>
+      <version>${version}</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+    </dependency>
+  </dependencies>
+  
+  <!-- Plugins -->
+  <build>
+    <plugins>
+    </plugins>
+  </build>
+  
+  <!-- Profiles -->
+  <profiles>
+  
+    <!--
+    Name: no-impl
+    Descr: The default implementation profile
+    -->
+    <profile>
+      <id>no-impl</id>
+      <activation>
+        <property>
+          <name>!impl</name>
+        </property>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.jbpm.jbpm4</groupId>
+          <artifactId>jbpm-pvm</artifactId>
+          <version>4.0.0-SNAPSHOT</version>
+        </dependency>
+      </dependencies>
+    </profile>
+    
+    <!--
+    Name: impl-ri
+    Descr: The RI implementation profile
+    -->
+    <profile>
+      <id>impl-ri</id>
+      <activation>
+        <property>
+          <name>impl</name>
+          <value>ri</value>
+        </property>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.jbpm.spec</groupId>
+          <artifactId>jbpm-spec-ri</artifactId>
+          <version>1.0.0-SNAPSHOT</version>
+        </dependency>
+      </dependencies>
+    </profile>
+  
+  </profiles>
+  
+</project>
\ No newline at end of file


Property changes on: jbpm4/trunk/modules/test-db/pom.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: jbpm4/trunk/modules/test-load/.classpath
===================================================================
--- jbpm4/trunk/modules/test-load/.classpath	                        (rev 0)
+++ jbpm4/trunk/modules/test-load/.classpath	2008-10-31 16:36:43 UTC (rev 2716)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<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/test-classes"/>
+</classpath>

Added: jbpm4/trunk/modules/test-load/.project
===================================================================
--- jbpm4/trunk/modules/test-load/.project	                        (rev 0)
+++ jbpm4/trunk/modules/test-load/.project	2008-10-31 16:36:43 UTC (rev 2716)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>test-load</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
+	</natures>
+</projectDescription>

Added: jbpm4/trunk/modules/test-load/pom.xml
===================================================================
--- jbpm4/trunk/modules/test-load/pom.xml	                        (rev 0)
+++ jbpm4/trunk/modules/test-load/pom.xml	2008-10-31 16:36:43 UTC (rev 2716)
@@ -0,0 +1,103 @@
+<?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.                           -->
+<!--                                                                        -->
+<!-- ====================================================================== -->
+
+<!-- $Id$ -->
+<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>
+  <name>jBPM 4 - CTS DB</name>
+  <groupId>org.jbpm.jbpm4</groupId>
+  <artifactId>jbpm-test-load</artifactId>
+  <packaging>jar</packaging>
+
+  <version>1.0.0-SNAPSHOT</version>
+  
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jbpm.jbpm4</groupId>
+    <artifactId>jbpm</artifactId>
+    <version>4.0.0-SNAPSHOT</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+
+  <!-- Dependencies -->
+  <dependencies>
+    <dependency>
+      <groupId>org.jbpm.jbpm4</groupId>
+      <artifactId>jbpm-api</artifactId>
+      <version>${version}</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+    </dependency>
+  </dependencies>
+  
+  <!-- Plugins -->
+  <build>
+    <plugins>
+    </plugins>
+  </build>
+  
+  <!-- Profiles -->
+  <profiles>
+  
+    <!--
+    Name: no-impl
+    Descr: The default implementation profile
+    -->
+    <profile>
+      <id>no-impl</id>
+      <activation>
+        <property>
+          <name>!impl</name>
+        </property>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.jbpm.jbpm4</groupId>
+          <artifactId>jbpm-pvm</artifactId>
+          <version>4.0.0-SNAPSHOT</version>
+        </dependency>
+      </dependencies>
+    </profile>
+    
+    <!--
+    Name: impl-ri
+    Descr: The RI implementation profile
+    -->
+    <profile>
+      <id>impl-ri</id>
+      <activation>
+        <property>
+          <name>impl</name>
+          <value>ri</value>
+        </property>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.jbpm.spec</groupId>
+          <artifactId>jbpm-spec-ri</artifactId>
+          <version>1.0.0-SNAPSHOT</version>
+        </dependency>
+      </dependencies>
+    </profile>
+  
+  </profiles>
+  
+</project>
\ No newline at end of file


Property changes on: jbpm4/trunk/modules/test-load/pom.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Modified: jbpm4/trunk/modules/test-pojo/.project
===================================================================
--- jbpm4/trunk/modules/test-pojo/.project	2008-10-31 16:24:20 UTC (rev 2715)
+++ jbpm4/trunk/modules/test-pojo/.project	2008-10-31 16:36:43 UTC (rev 2716)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <projectDescription>
-	<name>cts</name>
+	<name>test-pojo</name>
 	<comment></comment>
 	<projects>
 	</projects>




More information about the jbpm-commits mailing list