[richfaces-svn-commits] JBoss Rich Faces SVN: r14562 - in branches/sandbox/rf4_build: docs/trunk/commons/resources and 7 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Mon Jun 8 14:08:41 EDT 2009


Author: nbelaevski
Date: 2009-06-08 14:08:41 -0400 (Mon, 08 Jun 2009)
New Revision: 14562

Added:
   branches/sandbox/rf4_build/docs/trunk/guides/
   branches/sandbox/rf4_build/docs/trunk/guides/cdkguide/
   branches/sandbox/rf4_build/docs/trunk/guides/cdkguide/en/
   branches/sandbox/rf4_build/docs/trunk/guides/cdkguide/pom.xml
   branches/sandbox/rf4_build/docs/trunk/guides/pom.xml
Modified:
   branches/sandbox/rf4_build/docs/trunk/commons/resources/pom.xml
   branches/sandbox/rf4_build/docs/trunk/pom.xml
   branches/sandbox/rf4_build/examples/trunk/components/calendar-demo/pom.xml
   branches/sandbox/rf4_build/examples/trunk/components/panel-demo/pom.xml
   branches/sandbox/rf4_build/examples/trunk/components/tree-demo/pom.xml
   branches/sandbox/rf4_build/ui/trunk/components/panel/pom.xml
   branches/sandbox/rf4_build/version-matrix/trunk/pom.xml
Log:
Build system: ${example.componentName} added

Modified: branches/sandbox/rf4_build/docs/trunk/commons/resources/pom.xml
===================================================================
--- branches/sandbox/rf4_build/docs/trunk/commons/resources/pom.xml	2009-06-08 17:01:10 UTC (rev 14561)
+++ branches/sandbox/rf4_build/docs/trunk/commons/resources/pom.xml	2009-06-08 18:08:41 UTC (rev 14562)
@@ -16,7 +16,7 @@
 	<packaging>pom</packaging>
 
 	<modules>
-		<module>${translation}</module>
+		<module>${docs.translation}</module>
 	</modules>
 
 </project>
\ No newline at end of file

Added: branches/sandbox/rf4_build/docs/trunk/guides/cdkguide/pom.xml
===================================================================
--- branches/sandbox/rf4_build/docs/trunk/guides/cdkguide/pom.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/docs/trunk/guides/cdkguide/pom.xml	2009-06-08 18:08:41 UTC (rev 14562)
@@ -0,0 +1,22 @@
+<?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>org.richfaces.docs</groupId>
+		<artifactId>guides</artifactId>
+		<version>4.0.0-SNAPSHOT</version>	
+	</parent>
+
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.richfaces.docs.guides</groupId>
+	<artifactId>cdkguide</artifactId>
+	<packaging>pom</packaging>
+
+	<modules>
+		<!-- module>${docs.translation}</module -->
+	</modules>
+
+</project>
\ No newline at end of file

Added: branches/sandbox/rf4_build/docs/trunk/guides/pom.xml
===================================================================
--- branches/sandbox/rf4_build/docs/trunk/guides/pom.xml	                        (rev 0)
+++ branches/sandbox/rf4_build/docs/trunk/guides/pom.xml	2009-06-08 18:08:41 UTC (rev 14562)
@@ -0,0 +1,26 @@
+<?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>org.richfaces</groupId>
+		<artifactId>docs</artifactId>
+		<version>4.0.0-SNAPSHOT</version>	
+	</parent>
+
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.richfaces.docs</groupId>
+	<artifactId>guides</artifactId>
+	<packaging>pom</packaging>
+
+	<!-- 
+		TODO: all production modules should be reflected in version-matrix also - is it still true 
+		(depends on assembly)?
+	-->
+	<modules>
+		<module>cdkguide</module>
+	</modules>
+
+</project>
\ No newline at end of file

Modified: branches/sandbox/rf4_build/docs/trunk/pom.xml
===================================================================
--- branches/sandbox/rf4_build/docs/trunk/pom.xml	2009-06-08 17:01:10 UTC (rev 14561)
+++ branches/sandbox/rf4_build/docs/trunk/pom.xml	2009-06-08 18:08:41 UTC (rev 14562)
@@ -17,10 +17,7 @@
 
 	<modules>
 		<module>commons</module>
+		<module>guides</module>
 	</modules>
 
-	<properties>
-		<translation>en</translation>
-	</properties>
-
 </project>
\ No newline at end of file

Modified: branches/sandbox/rf4_build/examples/trunk/components/calendar-demo/pom.xml
===================================================================
--- branches/sandbox/rf4_build/examples/trunk/components/calendar-demo/pom.xml	2009-06-08 17:01:10 UTC (rev 14561)
+++ branches/sandbox/rf4_build/examples/trunk/components/calendar-demo/pom.xml	2009-06-08 18:08:41 UTC (rev 14562)
@@ -12,7 +12,18 @@
 
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>org.richfaces.examples.components</groupId>
-	<artifactId>calendar-demo</artifactId>
+	<artifactId>${example.componentName}-demo</artifactId>
 	<packaging>war</packaging>
+	
+	<dependencies>
+		<dependency>
+			<groupId>org.richfaces.ui.components</groupId>
+			<artifactId>${example.componentName}-ui</artifactId>
+		</dependency>
+	</dependencies>
 
+	<properties>
+		<example.componentName>calendar</example.componentName>
+	</properties>
+
 </project>
\ No newline at end of file

Modified: branches/sandbox/rf4_build/examples/trunk/components/panel-demo/pom.xml
===================================================================
--- branches/sandbox/rf4_build/examples/trunk/components/panel-demo/pom.xml	2009-06-08 17:01:10 UTC (rev 14561)
+++ branches/sandbox/rf4_build/examples/trunk/components/panel-demo/pom.xml	2009-06-08 18:08:41 UTC (rev 14562)
@@ -12,7 +12,18 @@
 
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>org.richfaces.examples.components</groupId>
-	<artifactId>panel-demo</artifactId>
+	<artifactId>${example.componentName}-demo</artifactId>
 	<packaging>war</packaging>
+	
+	<dependencies>
+		<dependency>
+			<groupId>org.richfaces.ui.components</groupId>
+			<artifactId>${example.componentName}-ui</artifactId>
+		</dependency>
+	</dependencies>
 
+	<properties>
+		<example.componentName>panel</example.componentName>
+	</properties>
+	
 </project>
\ No newline at end of file

Modified: branches/sandbox/rf4_build/examples/trunk/components/tree-demo/pom.xml
===================================================================
--- branches/sandbox/rf4_build/examples/trunk/components/tree-demo/pom.xml	2009-06-08 17:01:10 UTC (rev 14561)
+++ branches/sandbox/rf4_build/examples/trunk/components/tree-demo/pom.xml	2009-06-08 18:08:41 UTC (rev 14562)
@@ -12,7 +12,18 @@
 
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>org.richfaces.examples.components</groupId>
-	<artifactId>tree-demo</artifactId>
+	<artifactId>${example.componentName}-demo</artifactId>
 	<packaging>war</packaging>
+	
+	<dependencies>
+		<dependency>
+			<groupId>org.richfaces.ui.components</groupId>
+			<artifactId>${example.componentName}-ui</artifactId>
+		</dependency>
+	</dependencies>
 
+	<properties>
+		<example.componentName>tree</example.componentName>
+	</properties>
+
 </project>
\ No newline at end of file

Modified: branches/sandbox/rf4_build/ui/trunk/components/panel/pom.xml
===================================================================
--- branches/sandbox/rf4_build/ui/trunk/components/panel/pom.xml	2009-06-08 17:01:10 UTC (rev 14561)
+++ branches/sandbox/rf4_build/ui/trunk/components/panel/pom.xml	2009-06-08 18:08:41 UTC (rev 14562)
@@ -12,7 +12,7 @@
 	
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>org.richfaces.ui.components</groupId>
-	<artifactId>panel</artifactId>
+	<artifactId>panel-ui</artifactId>
 	<packaging>jar</packaging>
 
 </project>
\ No newline at end of file

Modified: branches/sandbox/rf4_build/version-matrix/trunk/pom.xml
===================================================================
--- branches/sandbox/rf4_build/version-matrix/trunk/pom.xml	2009-06-08 17:01:10 UTC (rev 14561)
+++ branches/sandbox/rf4_build/version-matrix/trunk/pom.xml	2009-06-08 18:08:41 UTC (rev 14562)
@@ -21,6 +21,10 @@
 		<framework.version>${project.version}</framework.version>
 		<ui.version>${project.version}</ui.version>
 		<cdk.version>${project.version}</cdk.version>
+		<docs.version>${project.version}</docs.version>
+		<docs.translation>en</docs.translation>
+
+		<!-- Referenced property: example.componentName - is redefined by downstream example project -->
 	</properties>
 
 	<repositories>
@@ -66,14 +70,30 @@
 				<version>${framework.version}</version>
 				<scope>test</scope>
 			</dependency>
-			<!-- TODO: uncomment when assembly will be ready -->
-			<!-- dependency>
+			
+			<dependency>
+				<groupId>org.richfaces.ui.components</groupId>
+				<artifactId>${example.componentName}-ui</artifactId>
+				<version>${ui.version}</version>
+			</dependency>
+			<dependency>
 				<groupId>org.richfaces.ui</groupId>
 				<artifactId>richfaces-ui</artifactId>
 				<version>${ui.version}</version>
-			</dependency -->
+			</dependency>
 
 			<dependency>
+				<groupId>org.richfaces.docs.commons</groupId>
+				<artifactId>highlight</artifactId>
+				<version>${docs.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>org.richfaces.docs.commons.resources</groupId>
+				<artifactId>${docs.translation}</artifactId>
+				<version>${docs.version}</version>
+			</dependency>
+
+			<dependency>
 				<groupId>javax.faces</groupId>
 				<artifactId>jsf-api</artifactId>
 				<version>${jsf.version}</version>




More information about the richfaces-svn-commits mailing list