[richfaces-svn-commits] JBoss Rich Faces SVN: r14586 - in branches/sandbox/rf4_build/cdk/trunk/archetypes: ui-multimodule and 15 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Wed Jun 10 14:19:01 EDT 2009


Author: nbelaevski
Date: 2009-06-10 14:19:01 -0400 (Wed, 10 Jun 2009)
New Revision: 14586

Added:
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/pom.xml
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype-metadata.xml
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype.xml
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api/pom.xml
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/pom.xml
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui/pom.xml
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/pom.xml
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype-metadata.xml
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype.xml
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/archetype-resources/
   branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/archetype-resources/pom.xml
Modified:
   branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml
Log:
UI archetypes committed

Modified: branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml	2009-06-10 15:47:51 UTC (rev 14585)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/pom.xml	2009-06-10 18:19:01 UTC (rev 14586)
@@ -14,5 +14,10 @@
 	<groupId>org.richfaces.cdk</groupId>
 	<artifactId>maven-archetypes</artifactId>
 	<packaging>pom</packaging>
+	
+	<modules>
+		<module>ui-singlemodule</module>
+		<module>ui-multimodule</module>
+	</modules>
 
 </project>
\ No newline at end of file


Property changes on: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule
___________________________________________________________________
Name: svn:ignore
   + .project
.checkstyle
target
.metadata
.settings


Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/pom.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/pom.xml	2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	
+	<parent>
+		<groupId>org.richfaces.cdk</groupId>
+		<artifactId>maven-archetypes</artifactId>
+		<version>4.0.0-SNAPSHOT</version>
+	</parent>
+	
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.richfaces.cdk.maven-archetypes</groupId>
+	<artifactId>richfaces-ui-multimodule-archetype</artifactId>
+
+	<build>
+		<extensions>
+			<extension>
+				<groupId>org.apache.maven.archetype</groupId>
+				<artifactId>archetype-packaging</artifactId>
+			</extension>
+		</extensions>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-archetype-plugin</artifactId>
+			</plugin>
+		</plugins>
+	</build>
+</project>

Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype-metadata.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype-metadata.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype-metadata.xml	2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<archetype-descriptor name="richfaces-ui-multimodule-archetype">
+  <modules>
+    <module id="${parent.artifactId}-api" dir="${parent.artifactId}-api" name="${parent.artifactId}-api" />
+    <module id="${parent.artifactId}-ui" dir="${parent.artifactId}-ui" name="${parent.artifactId}-ui" />
+  </modules>
+</archetype-descriptor>
\ No newline at end of file

Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/META-INF/maven/archetype.xml	2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<archetype>
+  <id>richfaces-ui-multimodule-archetype</id>
+  <resources>
+    <resource>api\pom.xml</resource>
+    <resource>ui\pom.xml</resource>
+  </resources>
+</archetype>
\ No newline at end of file

Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api/pom.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/api/pom.xml	2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,13 @@
+<?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">
+
+	<parent>
+		<groupId>${groupId}</groupId>
+		<artifactId>${artifactId}</artifactId>
+		<version>${version}</version>
+	</parent>
+	
+	<modelVersion>4.0.0</modelVersion>
+	<artifactId>${parent.artifactId}-api</artifactId>
+
+</project>

Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/pom.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/pom.xml	2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,15 @@
+<?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>
+	<groupId>${groupId}</groupId>
+	<artifactId>${artifactId}</artifactId>
+	<version>${version}</version>
+	<packaging>pom</packaging>
+
+	<modules>
+		<module>api</module>
+		<module>ui</module>
+	</modules>
+
+</project>

Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui/pom.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-multimodule/src/main/resources/archetype-resources/ui/pom.xml	2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,21 @@
+<?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">
+
+	<parent>
+		<groupId>${groupId}</groupId>
+		<artifactId>${artifactId}</artifactId>
+		<version>${version}</version>
+	</parent>
+	
+	<modelVersion>4.0.0</modelVersion>
+	<artifactId>${parent.artifactId}-ui</artifactId>
+
+	<dependencies>
+		<dependency>
+			<groupId>${project.groupId}</groupId>
+			<version>${project.version}</version>
+			<artifactId>${parent.artifactId}-api</artifactId>
+		</dependency>
+	</dependencies>
+	
+</project>


Property changes on: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule
___________________________________________________________________
Name: svn:ignore
   + .project
.checkstyle
target
.metadata
.settings


Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/pom.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/pom.xml	2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	
+	<parent>
+		<groupId>org.richfaces.cdk</groupId>
+		<artifactId>maven-archetypes</artifactId>
+		<version>4.0.0-SNAPSHOT</version>
+	</parent>
+	
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.richfaces.cdk.maven-archetypes</groupId>
+	<artifactId>richfaces-ui-singlemodule-archetype</artifactId>
+
+	<build>
+		<extensions>
+			<extension>
+				<groupId>org.apache.maven.archetype</groupId>
+				<artifactId>archetype-packaging</artifactId>
+			</extension>
+		</extensions>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-archetype-plugin</artifactId>
+			</plugin>
+		</plugins>
+	</build>
+</project>

Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype-metadata.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype-metadata.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype-metadata.xml	2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,3 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<archetype-descriptor name="richfaces-ui-singlemodule-archetype" />
\ No newline at end of file

Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/META-INF/maven/archetype.xml	2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<archetype>
+  <id>richfaces-ui-singlemodule-archetype</id>
+</archetype>
\ No newline at end of file

Added: branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/archetype-resources/pom.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/cdk/trunk/archetypes/ui-singlemodule/src/main/resources/archetype-resources/pom.xml	2009-06-10 18:19:01 UTC (rev 14586)
@@ -0,0 +1,12 @@
+<?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>
+	<groupId>${groupId}</groupId>
+	<artifactId>${artifactId}</artifactId>
+	<packaging>jar</packaging>
+
+</project>
\ No newline at end of file




More information about the richfaces-svn-commits mailing list