[seam-commits] Seam SVN: r10860 - modules/trunk.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Mon May 11 16:15:29 EDT 2009


Author: dan.j.allen
Date: 2009-05-11 16:15:29 -0400 (Mon, 11 May 2009)
New Revision: 10860

Added:
   modules/trunk/pom-module-template.xml
Log:
pom template when creating new module


Added: modules/trunk/pom-module-template.xml
===================================================================
--- modules/trunk/pom-module-template.xml	                        (rev 0)
+++ modules/trunk/pom-module-template.xml	2009-05-11 20:15:29 UTC (rev 10860)
@@ -0,0 +1,50 @@
+<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>
+
+   <parent>
+      <artifactId>seam-parent</artifactId>
+      <groupId>org.jboss.seam</groupId>
+      <version>3.0.0-SNAPSHOT</version>
+   </parent>
+
+   <artifactId>seam-%MODULE_ALIAS%</artifactId>
+   <packaging>jar</packaging>
+   <version>3.0.0-SNAPSHOT</version>
+   <name>Seam %MODULE_NAME% Module</name>
+
+   <build>
+      <plugins>
+
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+               <suiteXmlFiles>
+                  <suiteXmlFile>src/test/resources/test-suite.xml</suiteXmlFile>
+               </suiteXmlFiles>
+            </configuration>
+         </plugin>
+
+      </plugins>
+   </build>
+
+   <dependencies>
+
+      <dependency>
+         <groupId>${webbeans.groupId}</groupId>
+         <artifactId>jsr299-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+
+      <dependency>
+         <groupId>${webbeans.groupId}</groupId>
+         <artifactId>webbeans-logging</artifactId>
+         <!-- assumes use of Web Beans impl -->
+         <scope>provided</scope> 
+      </dependency>
+
+   </dependencies>
+
+</project>




More information about the seam-commits mailing list