[jbpm-commits] JBoss JBPM SVN: r4142 - in jbpm4/branches/tbaeyens: modules/api and 4 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Mar 4 15:18:54 EST 2009


Author: tom.baeyens at jboss.com
Date: 2009-03-04 15:18:54 -0500 (Wed, 04 Mar 2009)
New Revision: 4142

Modified:
   jbpm4/branches/tbaeyens/modules/api/pom.xml
   jbpm4/branches/tbaeyens/modules/examples/pom.xml
   jbpm4/branches/tbaeyens/modules/log/pom.xml
   jbpm4/branches/tbaeyens/modules/pvm/pom.xml
   jbpm4/branches/tbaeyens/modules/test-db/pom.xml
   jbpm4/branches/tbaeyens/pom.xml
Log:
pom cleaning

Modified: jbpm4/branches/tbaeyens/modules/api/pom.xml
===================================================================
--- jbpm4/branches/tbaeyens/modules/api/pom.xml	2009-03-04 19:24:25 UTC (rev 4141)
+++ jbpm4/branches/tbaeyens/modules/api/pom.xml	2009-03-04 20:18:54 UTC (rev 4142)
@@ -11,7 +11,8 @@
 
 <!-- $Id: pom.xml 3182 2008-12-03 13:48:29Z tom.baeyens at jboss.com $ -->
 <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">
-  
+
+  <!-- Module info -->
   <modelVersion>4.0.0</modelVersion>
   <name>jBPM 4 - API</name>
   <groupId>org.jbpm.jbpm4</groupId>
@@ -26,16 +27,6 @@
     <relativePath>../../pom.xml</relativePath>
   </parent>
 
-  <!-- Properties -->
-  <properties>
-  </properties>
-  
-  <!-- DependencyManagement -->
-  <dependencyManagement>
-    <dependencies>
-    </dependencies>
-  </dependencyManagement>
-  
   <!-- Dependencies -->
   <dependencies>
     <dependency>
@@ -44,24 +35,10 @@
     </dependency>
   </dependencies>
   
-  <!-- Plugins -->
-  <build>
-    <plugins>
-    </plugins>
-  </build>
-  
-  <!-- Reporting -->
-  <reporting>
-    <plugins>
-    </plugins>
-  </reporting>
-
+  <!-- Profiles -->
   <profiles>
     <profile>
       <id>distro</id>
-      <properties>
-        <xsddocs>true</xsddocs>
-      </properties>
       <build>
         <plugins>
           <plugin>

Modified: jbpm4/branches/tbaeyens/modules/examples/pom.xml
===================================================================
--- jbpm4/branches/tbaeyens/modules/examples/pom.xml	2009-03-04 19:24:25 UTC (rev 4141)
+++ jbpm4/branches/tbaeyens/modules/examples/pom.xml	2009-03-04 20:18:54 UTC (rev 4142)
@@ -30,35 +30,24 @@
     <dependency>
       <groupId>org.jbpm.jbpm4</groupId>
       <artifactId>jbpm-api</artifactId>
-      <version>${version}</version>
     </dependency>
     <dependency>
       <groupId>org.jbpm.jbpm4</groupId>
       <artifactId>jbpm-test-base</artifactId>
-      <version>${version}</version>
+      <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.jbpm.jbpm4</groupId>
       <artifactId>jbpm-jpdl</artifactId>    
-      <version>${version}</version>
-      <scope>test</scope>
-      <!--exclusions> TODO: Re-enable when JBPM-1997 is done.
-        <exclusion>
-          <artifactId>org.jbpm.jbpm4</artifactId>
-          <groupId>jbpm-pvm</groupId>
-        </exclusion>        
-      </exclusions-->
+      <scope>runtime</scope>
     </dependency>
+
     <dependency>
-      <groupId>org.jbpm.jbpm4.dependencies.esb</groupId>
-      <artifactId>test-util</artifactId>
-      <scope>test</scope>
-    </dependency>
-     <dependency>
       <groupId>org.codehaus.woodstox</groupId>
       <artifactId>wstx-lgpl</artifactId>
       <scope>test</scope>
-    </dependency>   
+    </dependency>
+
     <dependency>
       <groupId>org.jbpm.jbpm4.dependencies.esb</groupId>
       <artifactId>jbossesb-rosetta</artifactId>
@@ -66,56 +55,8 @@
     <dependency>
       <groupId>org.jbpm.jbpm4.dependencies.esb</groupId>
       <artifactId>test-util</artifactId>
+      <scope>test</scope>
     </dependency>
   </dependencies>
 
-  <build>
-    <plugins>
-      <plugin>                                                   
-        <artifactId>maven-dependency-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>unpack.jbpm.db</id>
-            <phase>generate-test-resources</phase>
-            <goals>
-              <goal>unpack</goal>
-            </goals>
-            <configuration>
-              <artifactItems>
-                <artifactItem>
-                  <groupId>org.jbpm.jbpm4</groupId>
-                  <artifactId>jbpm-jpdl</artifactId>
-                  <classifier>config</classifier>
-                  <overWrite>true</overWrite>
-                </artifactItem>
-              </artifactItems>
-              <excludeTransitive>true</excludeTransitive>
-              <outputDirectory>target/jpdl-config</outputDirectory>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-
-      <plugin>
-        <artifactId>maven-antrun-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>install.hibernate.database.properties</id>
-            <phase>generate-test-resources</phase>
-            <goals>
-              <goal>run</goal>
-            </goals>
-            <configuration>
-              <tasks>
-                <copy file="target/jpdl-config/hibernate.cfg.${database}.xml"
-                      tofile="target/test-classes/examples-hibernate.cfg.xml"
-                      overwrite="true" />
-              </tasks>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-
-    </plugins>
-  </build>
 </project>
\ No newline at end of file

Modified: jbpm4/branches/tbaeyens/modules/log/pom.xml
===================================================================
--- jbpm4/branches/tbaeyens/modules/log/pom.xml	2009-03-04 19:24:25 UTC (rev 4141)
+++ jbpm4/branches/tbaeyens/modules/log/pom.xml	2009-03-04 20:18:54 UTC (rev 4142)
@@ -11,6 +11,8 @@
 
 <!-- $Id: pom.xml 2702 2008-10-31 10:49:02Z tom.baeyens at jboss.com $ -->
 <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">
+
+  <!-- Module Info -->
   <modelVersion>4.0.0</modelVersion>
   <name>jBPM 4 - Log</name>
   <groupId>org.jbpm.jbpm4</groupId>
@@ -33,10 +35,4 @@
       </dependency>
   </dependencies>
   
-  <!-- Plugins -->
-  <build>
-    <plugins>
-    </plugins>
-  </build>
-  
 </project>
\ No newline at end of file

Modified: jbpm4/branches/tbaeyens/modules/pvm/pom.xml
===================================================================
--- jbpm4/branches/tbaeyens/modules/pvm/pom.xml	2009-03-04 19:24:25 UTC (rev 4141)
+++ jbpm4/branches/tbaeyens/modules/pvm/pom.xml	2009-03-04 20:18:54 UTC (rev 4142)
@@ -126,23 +126,24 @@
 
   <!-- Profiles -->
   <profiles>
+    <profile>
+      <id>distro</id>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <configuration>
+              <quiet>true</quiet>
+              <source>1.5</source>
+              <verbose>false</verbose>
+              <noqualifier>all</noqualifier>
+              <excludePackageNames>*.internal:*.test</excludePackageNames>
+            </configuration>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
   </profiles>
 
-  <reporting>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration>
-          <quiet>true</quiet>
-          <source>1.5</source>
-          <verbose>false</verbose>
-          <noqualifier>all</noqualifier>
-          <excludePackageNames>*.internal:*.test</excludePackageNames>
-        </configuration>
-      </plugin>
-
-    </plugins>
-  </reporting>
-
 </project>
\ No newline at end of file

Modified: jbpm4/branches/tbaeyens/modules/test-db/pom.xml
===================================================================
--- jbpm4/branches/tbaeyens/modules/test-db/pom.xml	2009-03-04 19:24:25 UTC (rev 4141)
+++ jbpm4/branches/tbaeyens/modules/test-db/pom.xml	2009-03-04 20:18:54 UTC (rev 4142)
@@ -31,70 +31,14 @@
     <dependency>
       <groupId>org.jbpm.jbpm4</groupId>
       <artifactId>jbpm-api</artifactId>
-      <version>${version}</version>
     </dependency>
 
     <dependency>
       <groupId>org.jbpm.jbpm4</groupId>
       <artifactId>jbpm-jpdl</artifactId>
-      <version>${version}</version>
       <scope>runtime</scope>
     </dependency>
 
-    <dependency>
-      <groupId>org.jbpm.jbpm4</groupId>
-      <artifactId>jbpm-test-base</artifactId>
-      <version>${version}</version>
-    </dependency>
-
   </dependencies>
 
-  <!-- Plugins -->
-  <build>
-    <plugins>
-    <!-- 
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          this tells surefire that the test classes are 
-          to be found in the src directory src/main/java.
-          The test classes are in the source directory to make 
-          a distinction between the compile time classpath and the 
-          runtime test classpath.  The compile time classpath only should 
-          have the api module in its dependencies. 
-          <testSourceDirectory>src/main/java</testSourceDirectory>
-          <classesDirectory>target/classes</classesDirectory>
-          <testClassesDirectory>target/classes</testClassesDirectory>
-        </configuration>
-      </plugin>
-
-      <plugin>
-        <artifactId>maven-dependency-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>unpack.jbpm.db</id>
-            <phase>generate-test-resources</phase>
-            <goals>
-              <goal>unpack</goal>
-            </goals>
-            <configuration>
-              <artifactItems>
-                <artifactItem>
-                  <groupId>org.jbpm.jbpm4</groupId>
-                  <artifactId>jbpm-jpdl</artifactId>
-                  <classifier>config</classifier>
-                  <overWrite>true</overWrite>
-                </artifactItem>
-              </artifactItems>
-              <excludeTransitive>true</excludeTransitive>
-              <outputDirectory>target/jpdl-config</outputDirectory>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      -->
-      
-    </plugins>
-  </build>
-
 </project>
\ No newline at end of file

Modified: jbpm4/branches/tbaeyens/pom.xml
===================================================================
--- jbpm4/branches/tbaeyens/pom.xml	2009-03-04 19:24:25 UTC (rev 4141)
+++ jbpm4/branches/tbaeyens/pom.xml	2009-03-04 20:18:54 UTC (rev 4142)
@@ -102,6 +102,16 @@
         <artifactId>jbpm-db</artifactId>
         <version>${version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.jbpm.jbpm4</groupId>
+        <artifactId>jbpm-jpdl</artifactId>
+        <version>${version}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.jbpm.jbpm4</groupId>
+        <artifactId>jbpm-config</artifactId>
+        <version>${version}</version>
+      </dependency>
 
       <!-- GWT console -->
       <dependency>
@@ -283,12 +293,6 @@
 
   <!-- Plugins -->
   <build>
-    <resources>
-      <resource>
-        <directory>src/main/resources</directory>
-        <filtering>true</filtering>
-      </resource>
-    </resources>
     <plugins>
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>
@@ -321,6 +325,9 @@
               <value>${project.build.directory}</value>
             </property>
           </systemProperties>
+          <excludes>
+            <exclude>**/*TestCase.java</exclude>
+          </excludes>
         </configuration>
       </plugin>
 




More information about the jbpm-commits mailing list