[seam-commits] Seam SVN: r11863 - in build/trunk/module-archetype: src/main/resources/archetype-resources and 4 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Thu Dec 17 13:19:41 EST 2009


Author: pete.muir at jboss.org
Date: 2009-12-17 13:19:41 -0500 (Thu, 17 Dec 2009)
New Revision: 11863

Added:
   build/trunk/module-archetype/src/main/resources/archetype-resources/src/
   build/trunk/module-archetype/src/main/resources/archetype-resources/src/main/
   build/trunk/module-archetype/src/main/resources/archetype-resources/src/main/resources/
   build/trunk/module-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/
   build/trunk/module-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/beans.xml
Modified:
   build/trunk/module-archetype/pom.xml
Log:
more

Modified: build/trunk/module-archetype/pom.xml
===================================================================
--- build/trunk/module-archetype/pom.xml	2009-12-17 18:15:54 UTC (rev 11862)
+++ build/trunk/module-archetype/pom.xml	2009-12-17 18:19:41 UTC (rev 11863)
@@ -1,13 +1,19 @@
 <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>
-  <groupId>org.jboss.seam.build</groupId>
-  <artifactId>seam-module-archetype</artifactId>
-  <version>3.0.0-SNAPSHOT</version>
-  <name>Seam Module Archetype</name>
-  
-  <description>
-      The Parent for Seam modules
+   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+   <modelVersion>4.0.0</modelVersion>
+   <groupId>org.jboss.seam.build</groupId>
+   <artifactId>seam-module-archetype</artifactId>
+   <version>3.0.0-SNAPSHOT</version>
+   <name>Seam Module Archetype</name>
+
+   <parent>
+      <groupId>org.jboss.weld</groupId>
+      <artifactId>weld-parent</artifactId>
+      <version>8</version>
+   </parent>
+
+   <description>
+      The Seam Module Archetype
    </description>
 
    <url>http://www.seamframework.org</url>
@@ -25,5 +31,27 @@
          <name>Seam committers</name>
       </developer>
    </developers>
-  
+
+   <!-- Snapshots repo to get parent -->
+   <repositories>
+      <repository>
+         <id>oss.sonatype.org/jboss-snapshots</id>
+         <name>JBoss (Nexus) Snapshots Repository</name>
+         <url>http://oss.sonatype.org/content/repositories/jboss-snapshots</url>
+         <releases>
+            <enabled>false</enabled>
+         </releases>
+         <snapshots>
+            <enabled>true</enabled>
+            <updatePolicy>never</updatePolicy>
+         </snapshots>
+      </repository>
+   </repositories>
+
+   <scm>
+      <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/build/trunk/parent</connection>
+      <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/build/trunk/parent</developerConnection>
+      <url>http://fisheye.jboss.org/browse/Seam/build/trunk/parent</url>
+   </scm>
+
 </project>

Added: build/trunk/module-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/beans.xml
===================================================================
--- build/trunk/module-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/beans.xml	                        (rev 0)
+++ build/trunk/module-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/beans.xml	2009-12-17 18:19:41 UTC (rev 11863)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+   <!--
+      The contents of this file is permitted to be empty. The schema
+      definition is provided for your convenience.
+   -->
+<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+   xsi:schemaLocation="
+      http://java.sun.com/xml/ns/javaee 
+      http://java.sun.com/xml/ns/javaee/beans_1_0.xsd">
+</beans>



More information about the seam-commits mailing list