[seam-commits] Seam SVN: r11862 - in build/trunk: module-archetype and 6 other directories.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Thu Dec 17 13:15:54 EST 2009
Author: pete.muir at jboss.org
Date: 2009-12-17 13:15:54 -0500 (Thu, 17 Dec 2009)
New Revision: 11862
Added:
build/trunk/module-archetype/
build/trunk/module-archetype/pom.xml
build/trunk/module-archetype/src/
build/trunk/module-archetype/src/main/
build/trunk/module-archetype/src/main/resources/
build/trunk/module-archetype/src/main/resources/META-INF/
build/trunk/module-archetype/src/main/resources/META-INF/maven/
build/trunk/module-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
build/trunk/module-archetype/src/main/resources/archetype-resources/
build/trunk/module-archetype/src/main/resources/archetype-resources/pom.xml
build/trunk/module-archetype/src/main/resources/archetype-resources/readme.txt
Modified:
build/trunk/checkout.sh
Log:
remove old modules
Modified: build/trunk/checkout.sh
===================================================================
--- build/trunk/checkout.sh 2009-12-17 16:38:55 UTC (rev 11861)
+++ build/trunk/checkout.sh 2009-12-17 18:15:54 UTC (rev 11862)
@@ -23,7 +23,7 @@
SVNARGS=
SVNUPDATE=1
-MODULES="remoting bpm captcha drools excel faces framework international jms mail pdf persistence resteasy security"
+MODULES="remoting drools faces international persistence security"
while getopts “h:r:d:v” OPTION
do
Property changes on: build/trunk/module-archetype
___________________________________________________________________
Name: svn:ignore
+ target
Added: build/trunk/module-archetype/pom.xml
===================================================================
--- build/trunk/module-archetype/pom.xml (rev 0)
+++ build/trunk/module-archetype/pom.xml 2009-12-17 18:15:54 UTC (rev 11862)
@@ -0,0 +1,29 @@
+<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
+ </description>
+
+ <url>http://www.seamframework.org</url>
+
+ <licenses>
+ <license>
+ <name>GNU Lesser General Public License, Version 2.1</name>
+ <distribution>repo</distribution>
+ <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
+ </license>
+ </licenses>
+
+ <developers>
+ <developer>
+ <name>Seam committers</name>
+ </developer>
+ </developers>
+
+</project>
Added: build/trunk/module-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
===================================================================
--- build/trunk/module-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml (rev 0)
+++ build/trunk/module-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml 2009-12-17 18:15:54 UTC (rev 11862)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<archetype-descriptor name="seam-module-archetype">
+ <requiredProperties>
+ <requiredProperty key="seamVersion" />
+ <requiredProperty key="parentVersion" />
+ <requiredProperty key="groupId">
+ <defaultValue>a</defaultValue>
+ </requiredProperty>
+ <requiredProperty key="package">
+ <defaultValue>a</defaultValue>
+ </requiredProperty>
+ </requiredProperties>
+ <fileSets>
+ <fileSet filtered="true" packaged="false">
+ <directory>src/main/resources</directory>
+ <includes>
+ <include>**/*.xml</include>
+ </includes>
+ </fileSet>
+ <fileSet filtered="true" packaged="false">
+ <directory></directory>
+ <includes>
+ <include>readme.txt</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+</archetype-descriptor>
Added: build/trunk/module-archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- build/trunk/module-archetype/src/main/resources/archetype-resources/pom.xml (rev 0)
+++ build/trunk/module-archetype/src/main/resources/archetype-resources/pom.xml 2009-12-17 18:15:54 UTC (rev 11862)
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+ <groupId>org.jboss.seam</groupId>
+ <artifactId>seam-parent</artifactId>
+ <version>${parentVersion}</version>
+ </parent>
+
+ <groupId>org.jboss.seam</groupId>
+ <artifactId>seam-${artifactId}</artifactId>
+ <name>${artifactId}</name>
+ <version>${version}</version>
+
+ <properties>
+ <seam.version>${seamVersion}</seam.version>
+ </properties>
+
+ <!-- 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>
+
+ <dependencies>
+ <!-- CDI (JSR-299) -->
+ <dependency>
+ <groupId>javax.enterprise</groupId>
+ <artifactId>cdi-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/seam/artifactIds/${artifactId}/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/seam/artifactIds/${artifactId}/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Seam/artifactIds/${artifactId}/trunk</url>
+ </scm>
+
+</project>
Added: build/trunk/module-archetype/src/main/resources/archetype-resources/readme.txt
===================================================================
--- build/trunk/module-archetype/src/main/resources/archetype-resources/readme.txt (rev 0)
+++ build/trunk/module-archetype/src/main/resources/archetype-resources/readme.txt 2009-12-17 18:15:54 UTC (rev 11862)
@@ -0,0 +1,4 @@
+Seam ${artifactId}
+=============
+
+TODO
More information about the seam-commits
mailing list