[weld-commits] Weld SVN: r5007 - in extensions/trunk/archetypes: weld-jsf-minimal and 1 other directory.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Thu Nov 12 20:08:00 EST 2009


Author: sboscarine
Date: 2009-11-12 20:07:55 -0500 (Thu, 12 Nov 2009)
New Revision: 5007

Added:
   extensions/trunk/archetypes/pom.xml
   extensions/trunk/archetypes/weld-jsf-minimal/
   extensions/trunk/archetypes/weld-jsf-minimal/pom.xml
   extensions/trunk/archetypes/weld-jsf-minimal/src/
Log:
Initial import


Added: extensions/trunk/archetypes/pom.xml
===================================================================
--- extensions/trunk/archetypes/pom.xml	                        (rev 0)
+++ extensions/trunk/archetypes/pom.xml	2009-11-13 01:07:55 UTC (rev 5007)
@@ -0,0 +1,46 @@
+<?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/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<parent>
+		<groupId>org.jboss.weld</groupId>
+		<artifactId>weld-parent</artifactId>
+		<version>5</version>
+	</parent>
+	<groupId>org.jboss.weld.archetype</groupId>
+	<artifactId>weld-archetype-parent</artifactId>
+	<version>0.0.1-BETA-SNAPSHOT</version>
+	<name>Weld Parent Archetype</name>
+	<description>This POM is the future home of configuration common to all archetypes.</description>
+	<url>http://sfwk.org/Documentation/WeldArchetypeProposal</url>
+   <!-- SCM and distribution management -->
+<!--   <scm>-->
+<!--      <connection>scm:svn:http://anonsvn.jboss.org/repos/weld/extensions/trunk</connection>-->
+<!--      <developerConnection>scm:svn:https://svn.jboss.org/repos/weld/extensions/trunk</developerConnection>-->
+<!--      <url>http://fisheye.jboss.org/browse/Weld</url>-->
+<!--   </scm>-->
+	<packaging>pom</packaging>
+	<developers>
+		<developer>
+			<name>Steven Boscarine</name>
+			<roles>
+				<role>Developer</role>
+				<role>Volunteer</role>
+			</roles>
+			<email>steven.boscarine at childrens.harvard.edu</email>
+			<organization>Children's Hospital Boston: Informatics Program</organization>
+			<organizationUrl>http://chip.org/</organizationUrl>
+			<url>http://info.rmatics.org/</url>
+		</developer>
+	</developers>
+	<dependencies />
+	<properties>
+		<!--
+			eliminates [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform
+			dependent!
+		-->
+		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+	</properties>
+	<modules>
+		<module>weld-jsf-minimal</module>
+	</modules>
+</project>

Added: extensions/trunk/archetypes/weld-jsf-minimal/pom.xml
===================================================================
--- extensions/trunk/archetypes/weld-jsf-minimal/pom.xml	                        (rev 0)
+++ extensions/trunk/archetypes/weld-jsf-minimal/pom.xml	2009-11-13 01:07:55 UTC (rev 5007)
@@ -0,0 +1,34 @@
+<?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/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<parent>
+		<groupId>org.jboss.weld.archetype</groupId>
+		<artifactId>weld-archetype-parent</artifactId>
+		<version>0.0.1-BETA-SNAPSHOT</version>
+	</parent>
+	<artifactId>weld-jsf-minimal</artifactId>
+	<name>Archetype for JSF 2.0 and Weld 1.0</name>
+	<packaging>maven-archetype</packaging>
+	<build>
+		<extensions>
+			<!-- TODO:  Explain what I do. -->
+			<extension>
+				<groupId>org.apache.maven.archetype</groupId>
+				<artifactId>archetype-packaging</artifactId>
+			</extension>
+		</extensions>
+		<plugins>
+			<!-- TODO:  Explain what I do. -->
+			<plugin>
+				<artifactId>maven-archetype-plugin</artifactId>
+				<!--
+					Ommitting a version throws this error:
+					[WARNING] Rule 1: org.apache.maven.plugins.enforcer.RequirePluginVersions failed with message:
+					Some plugins are missing valid versions:(LATEST RELEASE SNAPSHOT are not allowed )
+				-->
+				<version>2.0-alpha-4</version>
+				<extensions>true</extensions>
+			</plugin>
+		</plugins>
+	</build>
+</project>



More information about the weld-commits mailing list