[richfaces-svn-commits] JBoss Rich Faces SVN: r13818 - in trunk/docs/common-resources/en/src/main: archetypes and 15 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Fri Apr 24 07:58:42 EDT 2009


Author: msorokin
Date: 2009-04-24 07:58:42 -0400 (Fri, 24 Apr 2009)
New Revision: 13818

Added:
   trunk/docs/common-resources/en/src/main/archetypes/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/readme.txt
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/META-INF/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/META-INF/maven/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/META-INF/maven/archetype.xml
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/includes/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/includes/page1.xml
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/includes/page2.xml
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/master.xml
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/modules/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/modules/intro.xml
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/resources/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/resources/examples/
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/resources/examples/example.xml
   trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
Log:
https://jira.jboss.org/jira/browse/RF-6135
added a richfacesguide prototype


Added: trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml	                        (rev 0)
+++ trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml	2009-04-24 11:58:42 UTC (rev 13818)
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?><project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.richfaces.docs</groupId>
+  <artifactId>richfacesguide-archetype</artifactId>
+  <packaging>maven-archetype</packaging>
+  <name>richfacesguide-archetype</name>
+  <version>3.3.1-SNAPSHOT</version>
+  <build>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.wagon</groupId>
+        <artifactId>wagon-webdav</artifactId>
+        <version>1.0-beta-2</version>
+      </extension>
+      <extension>
+        <groupId>postgresql</groupId>
+        <artifactId>postgresql</artifactId>
+        <version>8.2-504.jdbc3</version>
+      </extension>
+      <extension>
+        <groupId>org.apache.maven.archetype</groupId>
+        <artifactId>archetype-packaging</artifactId>
+        <version>2.0-alpha-4</version>
+      </extension>
+    </extensions>
+    <plugins>
+      <plugin>
+        <artifactId>maven-archetype-plugin</artifactId>
+        <version>2.0-alpha-4</version>
+        <extensions>true</extensions>
+      </plugin>
+    </plugins>
+  </build>
+  <distributionManagement>
+    <repository>
+      <uniqueVersion>false</uniqueVersion>
+      <id>repository.jboss.org</id>
+      <url>${releaseRepository}</url>
+    </repository>
+    <snapshotRepository>
+      <id>snapshots.jboss.org</id>
+      <url>dav:https://snapshots.jboss.org/maven2</url>
+    </snapshotRepository>
+    <downloadUrl>http://labs.jboss.com/portal/jbossrichfaces/downloads</downloadUrl>
+  </distributionManagement>
+</project>
\ No newline at end of file

Added: trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/readme.txt
===================================================================
--- trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/readme.txt	                        (rev 0)
+++ trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/readme.txt	2009-04-24 11:58:42 UTC (rev 13818)
@@ -0,0 +1,8 @@
+How to use the richfacesguide archetype.
+1.	Build the archetype with “mvn clean install”
+2.	Make a empty folder and run 
+mvn archetype:generate -DarchetypeGroupId=org.richfaces.docs -DarchetypeArtifactId=richfacesguide-archetype -DarchetypeVersion=3.3.1-SNAPSHOT -DartifactId=RichFacesGuide -DgroupId=org.richfaces.docs
+artifactId – project folder name
+When the build is finished you will see the RichFacesGuide. 
+3.	Copy the RichFacesGuide to RichFaces_trunk\docs\
+4.	Run “mvn clean install” to build the guide

Added: trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
===================================================================
--- trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/META-INF/maven/archetype-metadata.xml	                        (rev 0)
+++ trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/META-INF/maven/archetype-metadata.xml	2009-04-24 11:58:42 UTC (rev 13818)
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?><archetype-descriptor name="richfacesguide">
+  <modules>
+    <module id="en" dir="en" name="en">
+      <fileSets>
+        <fileSet filtered="true" encoding="UTF-8">
+          <directory>src/main/docbook</directory>
+          <includes>
+            <include>**/*.xml</include>
+          </includes>
+        </fileSet>
+        <fileSet filtered="true" encoding="UTF-8">
+          <directory>src/main/resources</directory>
+          <includes>
+            <include>**/*.*</include>
+          </includes>
+        </fileSet>
+      </fileSets>
+    </module>
+  </modules>
+</archetype-descriptor>
\ No newline at end of file

Added: trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/META-INF/maven/archetype.xml
===================================================================
--- trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/META-INF/maven/archetype.xml	                        (rev 0)
+++ trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/META-INF/maven/archetype.xml	2009-04-24 11:58:42 UTC (rev 13818)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><archetype>
+  <id>richfacesguide</id>
+  <resources>
+    <resource>en\pom.xml</resource>
+    <resource>en\src\main\docbook\includes\page1.xml</resource>
+    <resource>en\src\main\docbook\includes\page2.xml</resource>
+    <resource>en\src\main\docbook\master.xml</resource>
+    <resource>en\src\main\docbook\modules\intro.xml</resource>
+    <resource>en\src\main\resources\examples\example.xml</resource>
+  </resources>
+</archetype>
\ No newline at end of file

Added: trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml	                        (rev 0)
+++ trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml	2009-04-24 11:58:42 UTC (rev 13818)
@@ -0,0 +1,50 @@
+<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.richfaces.docs</groupId>
+		<artifactId>richfacesguide</artifactId>
+		<version>3.3.1-SNAPSHOT</version>
+		<relativePath>../pom.xml</relativePath>
+	</parent>
+	<groupId>org.richfaces.docs.richfacesguide</groupId>
+	<artifactId>${translation}</artifactId>
+	<version>3.3.1-SNAPSHOT</version>
+	<packaging>jar</packaging>
+	<name>Richfaces Guide Template</name>
+
+	<properties>
+		<translation>en</translation>
+	</properties>
+	<build>
+		<finalName>
+			${project.parent.artifactId}_${translation}-${version}
+		</finalName>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-dependency-plugin</artifactId>
+			</plugin>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>xml-maven-plugin</artifactId>
+				<version>1.0-beta-2</version>
+			</plugin>
+
+			<plugin>
+				<groupId>org.jboss.maven.plugins</groupId>
+				<artifactId>maven-jdocbook-plugin</artifactId>
+				<extensions>true</extensions>
+			</plugin>
+			<!--
+				<plugin>
+				<groupId>org.jboss.maven.plugins</groupId>
+				<artifactId>maven-jdocbook-style-plugin</artifactId>
+				<version>1.0.0</version>
+				<extensions>true</extensions>
+				</plugin>
+			-->
+		</plugins>
+	</build>
+</project>
\ No newline at end of file

Added: trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/includes/page1.xml
===================================================================
--- trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/includes/page1.xml	                        (rev 0)
+++ trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/includes/page1.xml	2009-04-24 11:58:42 UTC (rev 13818)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section id="ccreate" xreflabel="ccreate">
+    <?dbhtml filename="ccreate.html"?>
+    <sectioninfo>
+        <keywordset>
+            <keyword>Key Word</keyword>
+            </keywordset>
+    </sectioninfo>
+    <title>Page one</title>
+    <para> Page one text </para>
+   
+</section>

Added: trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/includes/page2.xml
===================================================================
--- trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/includes/page2.xml	                        (rev 0)
+++ trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/includes/page2.xml	2009-04-24 11:58:42 UTC (rev 13818)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<section id="pcreate" xreflabel="pcreate">
+    <?dbhtml filename="pcreate.html"?>
+    <sectioninfo>
+        <keywordset>
+            <keyword>Page two keywords</keyword>
+        </keywordset>
+    </sectioninfo>
+    <title>Page two</title>
+    <para>
+ Page two title
+    </para>
+   
+</section>
+

Added: trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/master.xml
===================================================================
--- trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/master.xml	                        (rev 0)
+++ trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/master.xml	2009-04-24 11:58:42 UTC (rev 13818)
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
+"http://www.docbook.org/xml/4.3CR3/docbookx.dtd"
+[	
+<!ENTITY intro SYSTEM "modules/intro.xml">
+<!ENTITY page1 SYSTEM "includes/page1.xml">
+<!ENTITY page2 SYSTEM "includes/page2.xml">
+]>
+
+<book>
+    <bookinfo>
+        <title>Richfaces Guide Template</title>
+	<author>
+		<firstname>Author</firstname>
+		<surname>BurnsWishNapalm</surname>
+		<email>BurnsWishNapalm at exadel.com</email>
+	</author>   
+        <copyright>
+            <year>2008, 2009</year>
+            <holder>Red Hat</holder>
+        </copyright>
+
+<abstract>
+   <title/>
+       <para>
+       	<ulink url="http://www.jboss.org/your_online_pdf_version.pdf">PDF version</ulink>
+       </para>
+</abstract>
+
+
+    </bookinfo>
+	<toc/> 
+    
+    &intro; 
+    
+    <chapter id="compdev" xreflabel="compdev">
+        <?dbhtml filename="compdev.html"?>
+        <chapterinfo>
+            <keywordset>
+                <keyword>KeyWords</keyword>
+             </keywordset>
+        </chapterinfo>
+        <title>Title</title>
+
+        <para>  </para> 
+	    <?forseChanks?>
+		&page1; 
+		&page2;
+
+		</chapter> 
+
+</book>
\ No newline at end of file

Added: trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/modules/intro.xml
===================================================================
--- trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/modules/intro.xml	                        (rev 0)
+++ trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/docbook/modules/intro.xml	2009-04-24 11:58:42 UTC (rev 13818)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<chapter id="introduction" xreflabel="introduction">
+    <?dbhtml filename="intro.html"?>
+    <chapterinfo>
+        <keywordset>
+            <keyword>Introduction keywords</keyword>
+        </keywordset>
+    </chapterinfo>
+
+    <title>Introduction</title>
+    <para>
+	Introduction text
+	</para>
+    
+</chapter>
\ No newline at end of file

Added: trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/resources/examples/example.xml
===================================================================
--- trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/resources/examples/example.xml	                        (rev 0)
+++ trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/src/main/resources/examples/example.xml	2009-04-24 11:58:42 UTC (rev 13818)
@@ -0,0 +1 @@
+code example
\ No newline at end of file

Added: trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml	                        (rev 0)
+++ trunk/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml	2009-04-24 11:58:42 UTC (rev 13818)
@@ -0,0 +1,237 @@
+<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">
+	<parent>
+		<artifactId>docs</artifactId>
+		<groupId>org.richfaces</groupId>
+		<version>3.3.1-SNAPSHOT</version>
+	</parent>
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.richfaces.docs</groupId>
+	<artifactId>richfacesguide</artifactId>
+	<packaging>pom</packaging>
+	<version>3.3.1-SNAPSHOT</version>
+	<name>richfacesguide</name>
+	<description>Richfaces Guide Template</description>
+	<pluginRepositories>
+		<pluginRepository>
+			<releases>
+				<enabled>true</enabled>
+			</releases>
+			<snapshots>
+				<enabled>false</enabled>
+				<updatePolicy>never</updatePolicy>
+			</snapshots>
+			<id>repository.jboss.com</id>
+			<name>Jboss Repository for Maven</name>
+			<url>http://repository.jboss.com/maven2/</url>
+			<layout>default</layout>
+		</pluginRepository>
+	</pluginRepositories>
+
+	<build>
+		<pluginManagement>
+			<plugins>
+					
+				<plugin>
+					<groupId>org.apache.maven.plugins</groupId>
+					<artifactId>maven-dependency-plugin</artifactId>
+					<executions>
+						<execution>
+							<id>unpack</id>
+							<phase>generate-resources</phase>
+							<goals>
+								<goal>unpack</goal>
+							</goals>
+							<configuration>
+								<artifactItems>
+										<artifactItem>
+										<groupId>
+											org.richfaces.docs.common-resources
+										</groupId>
+										<artifactId>
+											${project.translation}
+										</artifactId>
+										<version>
+											${project.version}
+										</version>
+										<type>jar</type>
+										<overWrite>true</overWrite>
+										<outputDirectory>
+											${project.build.directory}
+										</outputDirectory>
+									</artifactItem>
+										</artifactItems>
+								<overWriteReleases>
+									false
+								</overWriteReleases>
+								<overWriteSnapshots>
+									true
+								</overWriteSnapshots>
+							</configuration>
+						</execution>
+					</executions>
+				</plugin>
+				<plugin>
+					<groupId>org.jboss.maven.plugins</groupId>
+					<artifactId>maven-jdocbook-plugin</artifactId>
+					<version>2.1.0-200803311251UTC-MPJDOCBOOK-8</version>
+						<executions>
+							<execution>
+								<id>jdocbook:generate</id>
+								<phase>compile</phase>
+								<goals>
+									<goal>generate</goal>
+								</goals>
+							</execution>
+							<execution>
+								<id>jdocbook:resources</id>
+								<phase>process-resources</phase>
+								<goals>
+									<goal>resources</goal>
+								</goals>
+							</execution>
+							<execution>
+								<id>jdocbook:bundle</id>
+								<phase>package</phase> 
+								<goals>
+									<goal>bundle</goal>
+								</goals>
+							</execution>
+						</executions>
+					<dependencies>
+						<dependency>
+							<groupId>org.jboss</groupId>
+							<artifactId>jbossorg-docbook-xslt</artifactId>
+							<version>1.1.0</version>
+						</dependency>
+						<dependency>
+							<groupId>org.jboss</groupId>
+							<artifactId>jbossorg-jdocbook-style</artifactId>
+							<version>1.1.0</version>
+							<type>jdocbook-style</type>
+						</dependency>
+						<dependency>
+							<groupId>org.richfaces.docs.common-resources</groupId>
+							<artifactId>${translation}</artifactId>
+							<version>${project.version}</version>
+							<type>jar</type>
+						</dependency>
+						<dependency>
+							<groupId>org.apache.xmlgraphics</groupId>
+							<artifactId>fop</artifactId>
+							<version>0.95</version>
+						</dependency>
+						<dependency>
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.saxon</artifactId>
+    <version>9.1.0.1_1</version>
+</dependency> 
+					</dependencies>
+					<configuration>
+						<sourceDirectory>
+							${basedir}/src/main/docbook
+						</sourceDirectory>
+						<imageResource>
+							<directory>
+								${basedir}/src/main/resources
+							</directory>
+						</imageResource>
+						<cssResource>
+							<directory>
+								${project.build.directory}/common-resources
+							</directory>
+						</cssResource>
+						<sourceDocumentName>
+							master.xml
+						</sourceDocumentName>
+						<formats>
+							<format>
+								<formatName>pdf</formatName>
+								<stylesheetResource>
+									classpath:/common-resources/xslt/pdf-common.xsl
+								</stylesheetResource>
+								<finalName>
+									Richfaces_Guide_Template.pdf
+								</finalName>
+								<imagePathSettingRequired>
+									true
+								</imagePathSettingRequired>
+							</format>
+							<format>
+								<formatName>html</formatName>
+								<stylesheetResource>
+									${xsl_html}
+								</stylesheetResource>
+								<finalName>
+									index.html
+								</finalName>
+								<imageCopyingRequired>
+									true
+								</imageCopyingRequired>
+								<imagePathSettingRequired>
+									false
+								</imagePathSettingRequired>
+							</format>
+							<format>
+								<formatName>html_single</formatName>
+								<stylesheetResource>
+									${xsl_html_single}
+								</stylesheetResource>
+								<imageCopyingRequired>
+									true
+								</imageCopyingRequired>
+								<imagePathSettingRequired>
+									false
+								</imagePathSettingRequired>
+								<finalName>
+									index.html
+								</finalName>
+
+							</format>
+						</formats>
+						<xincludeSupported>true</xincludeSupported>
+						<options>
+							<xincludeSupported>true</xincludeSupported>
+							<useRelativeImageUris>
+								true
+							</useRelativeImageUris>
+							<xmlTransformerType>
+								saxon
+							</xmlTransformerType>
+							<!--
+								<transformerParameters>
+								<property>
+								<name>custom.titlepage.img</name>
+								<value>
+								${basedir}/src/main/resources/shared/images/hibernate_logo_a.png
+								</value>
+								</property>
+								</transformerParameters>
+							-->
+							<docbookVersion>1.72.0</docbookVersion>
+						</options>
+					</configuration>
+
+				</plugin>
+			</plugins>
+		</pluginManagement>
+	</build>
+
+	<!-- report plugin is currently hosed
+		<reporting>
+		<plugins>
+		<plugin>
+		<groupId>org.jboss.maven.plugin</groupId>
+		<artifactId>jboss-docbook-plugin</artifactId>
+		</plugin>
+		</plugins>
+		</reporting>
+	-->
+	<properties>
+		<masterTranslation>en</masterTranslation>
+	</properties>
+
+	<modules>
+		<module>en</module>
+	</modules>
+
+</project>




More information about the richfaces-svn-commits mailing list