[jbpm-commits] JBoss JBPM SVN: r6273 - projects/exception_framework/trunk.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Apr 21 15:12:33 EDT 2010


Author: eschabell
Date: 2010-04-21 15:12:33 -0400 (Wed, 21 Apr 2010)
New Revision: 6273

Modified:
   projects/exception_framework/trunk/pom.xml
Log:
Fixed maven pom.xml to create resource dirs for config and jpdl.

Modified: projects/exception_framework/trunk/pom.xml
===================================================================
--- projects/exception_framework/trunk/pom.xml	2010-04-21 16:51:07 UTC (rev 6272)
+++ projects/exception_framework/trunk/pom.xml	2010-04-21 19:12:33 UTC (rev 6273)
@@ -8,9 +8,33 @@
   <build>
   	<plugins>
   		<plugin>
-  			<groupId>org.codehaus.mojo</groupId>
-  			<artifactId>surefire-report-maven-plugin</artifactId>
-  			<version>2.0-beta-1</version>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>build-helper-maven-plugin</artifactId>
+            <version>1.5</version>
+            <executions>
+                <execution>
+                    <id>add-resource</id>
+                    <phase>generate-resources</phase>
+                    <goals>
+                        <goal>add-resource</goal>
+                    </goals>
+                    <configuration>
+                        <resources>
+                            <resource>
+                                <directory>src/main/config</directory>
+                            </resource>
+                            <resource>
+                                <directory>src/main/jpdl</directory>
+                            </resource>
+                        </resources>
+                    </configuration>
+                </execution>
+            </executions>
+         </plugin>
+  		<plugin>
+  			<groupId>org.apache.maven.plugins</groupId>
+  			<artifactId>maven-surefire-plugin</artifactId>
+  			<version>2.5</version>
   		</plugin>
   	</plugins>
   </build>



More information about the jbpm-commits mailing list