JBoss Rich Faces SVN: r13652 - trunk/docs/userguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: msorokin
Date: 2009-04-17 13:49:59 -0400 (Fri, 17 Apr 2009)
New Revision: 13652
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
Log:
https://jira.jboss.org/jira/browse/RF-6455
Added a new chapter Integration of RichFaces into Maven Project
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2009-04-17 17:07:11 UTC (rev 13651)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2009-04-17 17:49:59 UTC (rev 13652)
@@ -57,16 +57,16 @@
<code>*.jar</code> files with API, UI and
implementation libraries. Copy that "jars" from
<code>lib</code> folder to <code>WEB-INF/lib</code> folder
- of "Greeter" JSF application. </para>
-
- <important>
- <title>Important:</title>
- <para>
- A JSF application with RichFaces
- assumes that the following JARs are available in the project:
- commons-beanutils-1.7.0.jar, commons-collections-3.2.jar, commons-digester-1.8.jar, commons-logging-1.0.4.jar, jhighlight-1.0.jar.
-
- </para>
+ of "Greeter" JSF application. </para>
+
+ <important>
+ <title>Important:</title>
+ <para>
+ A JSF application with RichFaces
+ assumes that the following JARs are available in the project:
+ commons-beanutils-1.7.0.jar, commons-collections-3.2.jar, commons-digester-1.8.jar, commons-logging-1.0.4.jar, jhighlight-1.0.jar.
+
+ </para>
</important>
</section>
@@ -271,7 +271,239 @@
</figure>
</section>
</section>
-
+
+ <section>
+ <title>Integration of RichFaces into Maven Project</title>
+ <para>In this section we will tell how you can create a simple JSF application with RichFaces using Maven. </para>
+ <para>In the first place you need to make sure that Maven is installed on you local machine. We will run the JSF application on Tomcat 6.0 server, so please download and install it if you haven't done already so. </para>
+ <para>
+ Now we can move on to creating the application. To create the project structure and fill it with minimal content we will use the "maven-archetype-jsfwebapp" Maven archetype which is a part of RichFaces CDK.
+
+ </para>
+ <para>The "maven-archetype-jsfwebapp" archetype and the project itself require extra repositories to be provided, namely "http://snapshots.jboss.org/maven2/" and "http://repository.jboss.com/maven2/".
+ The easiest way to make the repositories visible for Maven is to create a profile in "maven_installation_folder/conf/settings.xml" in <code><profiles></code> element. This is the content of the profile: </para>
+
+ <programlisting role="XML"><![CDATA[
+<profile>
+ <id>jsf-app-profile</id>
+ <repositories>
+ <repository>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>always</updatePolicy>
+ </snapshots>
+ <id>snapshots.jboss.org</id>
+ <name>Snapshot Jboss Repository for Maven</name>
+ <url>http://snapshots.jboss.org/maven2/</url>
+ <layout>default</layout>
+ </repository>
+ <repository>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>always</updatePolicy>
+ </snapshots>
+ <id>repository.jboss.com</id>
+ <name>Jboss Repository for Maven</name>
+ <url>http://repository.jboss.com/maven2/</url>
+ <layout>default</layout>
+ </repository>
+ </repositories>
+</profile>
+ ]]></programlisting>
+ <para>When the profile is added you need to activate it in the <code><activeProfiles></code> element. It can be done like this:</para>
+
+ <programlisting role="XML"><![CDATA[...
+<activeProfiles>
+ <activeProfile>jsf-app-profile</activeProfile>
+</activeProfiles>
+...]]></programlisting>
+
+
+ <para>Now you have everything to create the project using the "maven-archetype-jsfwebapp" archetype. Create a folder that will house your project and run the this command in it:</para>
+ <programlisting role="XML" ><![CDATA[...
+mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.1-SNAPSHOT -DgroupId=org.docs.richfaces -DartifactId=jsf-app
+...]]></programlisting>
+
+
+ <para>You can adjust some parameters of the command. </para>
+ <table>
+ <title>Title of the table</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Parameter</entry>
+
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>-DgroupId</entry>
+ <entry>Defines the package for the Managed beans</entry>
+ </row>
+ <row>
+ <entry>-DartifactId</entry>
+ <entry>Defines the name of the project</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+
+
+ <para>This command generates a JSF project that has the following structure:</para>
+
+ <programlisting role="XML"><![CDATA[
+jsf-app
+|-- pom.xml
+`-- src
+ |-- main
+ | |-- java
+ | | `-- org
+ | | `-- docs
+ | | `-- richfaces
+ | | `-- Bean.java
+ | |-- resources
+ | `-- webapp
+ | |-- WEB-INF
+ | | |-- faces-config.xml
+ | | `-- web.xml
+ | |-- index.jsp
+ | `-- pages
+ | |-- index.jsp
+ | `-- index.xhtml
+ `-- test
+ `-- java
+ `-- org
+ `-- docs
+ `-- richfaces
+ `-- BeanTest.java
+ ]]></programlisting>
+ <para>
+ Now go to "jsf-app" folder, it contains a project descriptor(pom.xml). Open the project descriptor to edit and add dependencies to the <code><dependencies></code> element. Your <code><dependencies></code> element content should be the following:
+ </para>
+
+
+
+ <programlisting role="XML"><![CDATA[...
+<dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>jstl</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_12</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.annotation</groupId>
+ <artifactId>jsr250-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <!-- RichFaces libraries -->
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-api</artifactId>
+ <version>3.3.1-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-ui</artifactId>
+ <version>3.3.1-SNAPSHOT</version>
+ </dependency>
+</dependencies>
+...]]></programlisting>
+ <para>The last three dependences add RichFaces libraries to the project. You can now build the project with the <emphasis role="bold"><code>mvn install</code></emphasis> command.</para>
+
+
+ <para>
+ When you see the "BUILD SUCCESSFUL" message, the project is assembled and can be imported to a IDE and run on the server.
+ </para>
+
+ <para>The project can be built for Eclipse IDE with <emphasis role="bold"><code>mvn eclipse:eclipse -Dwtpversion=2.0</code></emphasis> command. </para>
+
+ <para>Then you can import the project into Eclipse. After importing to Eclipse open the "jsf-app/src/main/webapp/WEB-INF/web.xml" to configure it according to the listing in the <link linkend="RegisteringRichFacesinwebxml">Registering RichFaces in web.xml</link> section of the guide.</para>
+ <para>The project is configured and now you can start using RichFaces. Open "jsf-app/src/main/webapp/pages/index.jsp" file and add the tag library declaration.</para>
+ <programlisting role="XML"><![CDATA[...
+<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+...]]></programlisting>
+
+ <para>Add some RichFaces component to the "index.jsp" page, for instance <emphasis role="bold"><property><rich:calendar></property></emphasis>. Your "index.jsp" page will look like this:</para>
+
+ <programlisting role="XML"><![CDATA[...
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
+<html>
+ <head>
+ <title>JSF Application with RichFaces built by Maven</title>
+ </head>
+ <body>
+ <f:view>
+ <rich:calendar />
+ </f:view>
+ </body>
+</html>
+...]]></programlisting>
+
+ <para>Now run the application on Tomcat server and open it in your favourite browser by pointing it to "http://localhost:8080/jsf-app/" .</para>
+ </section>
+
+
<!-- RELEVANT RESOURCES LINKS -->
<section id="RelevantResourcesLinks">
17 years
JBoss Rich Faces SVN: r13651 - in trunk/samples/themes: src/main/config and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-04-17 13:07:11 -0400 (Fri, 17 Apr 2009)
New Revision: 13651
Removed:
trunk/samples/themes/src/main/config/faces/
Modified:
trunk/samples/themes/
trunk/samples/themes/src/main/config/component/cssZend.xml
trunk/samples/themes/src/main/config/component/theme1.xml
trunk/samples/themes/src/main/config/component/theme2.xml
trunk/samples/themes/src/main/config/component/violetRays.xml
Log:
- Removed included faces-config.xml contained renderers registrations
- Added family attributes
- Service files svn:ignored
Property changes on: trunk/samples/themes
___________________________________________________________________
Name: svn:ignore
+ .settings
.classpath
.project
target
Modified: trunk/samples/themes/src/main/config/component/cssZend.xml
===================================================================
--- trunk/samples/themes/src/main/config/component/cssZend.xml 2009-04-17 17:03:31 UTC (rev 13650)
+++ trunk/samples/themes/src/main/config/component/cssZend.xml 2009-04-17 17:07:11 UTC (rev 13651)
@@ -4,6 +4,7 @@
<components>
<renderer generate="true" override="true">
<name>org.richfaces.CssZendPageRenderer</name>
+ <family>org.richfaces.Page</family>
<template>org/richfaces/cssZendPage.jspx</template>
</renderer>
</components>
\ No newline at end of file
Modified: trunk/samples/themes/src/main/config/component/theme1.xml
===================================================================
--- trunk/samples/themes/src/main/config/component/theme1.xml 2009-04-17 17:03:31 UTC (rev 13650)
+++ trunk/samples/themes/src/main/config/component/theme1.xml 2009-04-17 17:07:11 UTC (rev 13651)
@@ -4,6 +4,7 @@
<components>
<renderer generate="true" override="true">
<name>org.richfaces.Theme1Renderer</name>
+ <family>org.richfaces.Page</family>
<template>org/richfaces/theme1.jspx</template>
</renderer>
</components>
\ No newline at end of file
Modified: trunk/samples/themes/src/main/config/component/theme2.xml
===================================================================
--- trunk/samples/themes/src/main/config/component/theme2.xml 2009-04-17 17:03:31 UTC (rev 13650)
+++ trunk/samples/themes/src/main/config/component/theme2.xml 2009-04-17 17:07:11 UTC (rev 13651)
@@ -4,6 +4,7 @@
<components>
<renderer generate="true" override="true">
<name>org.richfaces.Theme2Renderer</name>
+ <family>org.richfaces.Page</family>
<template>org/richfaces/theme2.jspx</template>
</renderer>
</components>
\ No newline at end of file
Modified: trunk/samples/themes/src/main/config/component/violetRays.xml
===================================================================
--- trunk/samples/themes/src/main/config/component/violetRays.xml 2009-04-17 17:03:31 UTC (rev 13650)
+++ trunk/samples/themes/src/main/config/component/violetRays.xml 2009-04-17 17:07:11 UTC (rev 13651)
@@ -4,6 +4,7 @@
<components>
<renderer generate="true" override="true">
<name>org.richfaces.VioletRaysRenderer</name>
+ <family>org.richfaces.Page</family>
<template>org/richfaces/violetRays.jspx</template>
</renderer>
</components>
\ No newline at end of file
17 years
JBoss Rich Faces SVN: r13650 - in trunk/cdk/generator/src/main/resources/META-INF: templates12 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-04-17 13:03:31 -0400 (Fri, 17 Apr 2009)
New Revision: 13650
Modified:
trunk/cdk/generator/src/main/resources/META-INF/templates/faces-config.vm
trunk/cdk/generator/src/main/resources/META-INF/templates12/faces-config.vm
Log:
Fix fro CDK: renderers without assigned components weren't not registered in faces-config.xml
Modified: trunk/cdk/generator/src/main/resources/META-INF/templates/faces-config.vm
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/templates/faces-config.vm 2009-04-17 16:55:33 UTC (rev 13649)
+++ trunk/cdk/generator/src/main/resources/META-INF/templates/faces-config.vm 2009-04-17 17:03:31 UTC (rev 13650)
@@ -103,6 +103,23 @@
#end
#end
#end
+
+#foreach($renderer in $renderers)
+ #set($rendererClass = $renderkit.rendererClass($renderer.classname) )
+ #if( $renderer.generate || $facesConfig.rendererExists("${rendererClass}"))
+ <renderer>
+ <component-family>${renderer.family}</component-family>
+ <renderer-type>
+ ${renderer.name}
+ </renderer-type>
+ <renderer-class>
+ ${rendererClass}
+ </renderer-class>
+ </renderer>
+ #end
+#end
+
+
</render-kit>
#end
Modified: trunk/cdk/generator/src/main/resources/META-INF/templates12/faces-config.vm
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/templates12/faces-config.vm 2009-04-17 16:55:33 UTC (rev 13649)
+++ trunk/cdk/generator/src/main/resources/META-INF/templates12/faces-config.vm 2009-04-17 17:03:31 UTC (rev 13650)
@@ -103,6 +103,22 @@
#end
#end
#end
+
+#foreach($renderer in $renderers)
+ #set($rendererClass = $renderkit.rendererClass($renderer.classname) )
+ #if( $renderer.generate || $facesConfig.rendererExists("${rendererClass}"))
+ <renderer>
+ <component-family>${renderer.family}</component-family>
+ <renderer-type>
+ ${renderer.name}
+ </renderer-type>
+ <renderer-class>
+ ${rendererClass}
+ </renderer-class>
+ </renderer>
+ #end
+#end
+
</render-kit>
#end
17 years
JBoss Rich Faces SVN: r13649 - trunk/cdk/generator/src/main/resources/META-INF/schema.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2009-04-17 12:55:33 -0400 (Fri, 17 Apr 2009)
New Revision: 13649
Modified:
trunk/cdk/generator/src/main/resources/META-INF/schema/component-config.dtd
Log:
Missing renderer\family element added to component-config.dtd
Modified: trunk/cdk/generator/src/main/resources/META-INF/schema/component-config.dtd
===================================================================
--- trunk/cdk/generator/src/main/resources/META-INF/schema/component-config.dtd 2009-04-17 16:40:16 UTC (rev 13648)
+++ trunk/cdk/generator/src/main/resources/META-INF/schema/component-config.dtd 2009-04-17 16:55:33 UTC (rev 13649)
@@ -48,7 +48,7 @@
<!-- Full name of Java super class -->
<!ELEMENT superclass (#PCDATA)>
<!-- Define renderer for this component -->
-<!ELEMENT renderer (name,(classname|template),superclass?,description?,displayname?,icon?,facet?,renderkit?)>
+<!ELEMENT renderer (name,family?,(classname|template),superclass?,description?,displayname?,icon?,facet?,renderkit?)>
<!-- Define render kit Id for renderer -->
<!ELEMENT renderkit (#PCDATA)>
<!-- Template file name -->
17 years
JBoss Rich Faces SVN: r13648 - tags/3.3.1.BETA5/ui/editor/src/main/java/org/richfaces/convert/seamtext/tags.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2009-04-17 12:40:16 -0400 (Fri, 17 Apr 2009)
New Revision: 13648
Added:
tags/3.3.1.BETA5/ui/editor/src/main/java/org/richfaces/convert/seamtext/tags/UnorderedListTag.java
Log:
Added: tags/3.3.1.BETA5/ui/editor/src/main/java/org/richfaces/convert/seamtext/tags/UnorderedListTag.java
===================================================================
--- tags/3.3.1.BETA5/ui/editor/src/main/java/org/richfaces/convert/seamtext/tags/UnorderedListTag.java (rev 0)
+++ tags/3.3.1.BETA5/ui/editor/src/main/java/org/richfaces/convert/seamtext/tags/UnorderedListTag.java 2009-04-17 16:40:16 UTC (rev 13648)
@@ -0,0 +1,32 @@
+package org.richfaces.convert.seamtext.tags;
+
+class UnorderedListTag extends HtmlTag {
+ private static final long serialVersionUID = 1L;
+
+ public UnorderedListTag() {
+ super(UL);
+ }
+
+ protected UnorderedListTag(String name) {
+ super(name);
+ }
+
+ @Override
+ public String printStart() {
+ return "";
+ }
+
+ @Override
+ public String printEnd() {
+ return "\n";
+ }
+
+ @Override
+ protected void appendChildTag(StringBuilder res, HtmlTag child) {
+ if (LI.equals(child.getName())) {
+ res.append(TagFactory.SEAM_EQ).append(child.print());
+ } else {
+ res.append(child);
+ }
+ }
+}
17 years
JBoss Rich Faces SVN: r13647 - in tags: 3.3.1.BETA5 and 205 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2009-04-17 12:37:53 -0400 (Fri, 17 Apr 2009)
New Revision: 13647
Added:
tags/3.3.1.BETA5/
Removed:
tags/3.3.1.BETA5/ui/editor/src/main/java/org/richfaces/convert/seamtext/tags/UnorderedListTag.java
Modified:
tags/3.3.1.BETA5/cdk/generator/pom.xml
tags/3.3.1.BETA5/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.1.BETA5/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA5/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.1.BETA5/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA5/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.1.BETA5/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA5/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.1.BETA5/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA5/cdk/maven-cdk-plugin/pom.xml
tags/3.3.1.BETA5/cdk/maven-javascript-plugin/pom.xml
tags/3.3.1.BETA5/cdk/maven-resource-dependency-plugin/pom.xml
tags/3.3.1.BETA5/cdk/pom.xml
tags/3.3.1.BETA5/docs/cdkguide/en/pom.xml
tags/3.3.1.BETA5/docs/cdkguide/pom.xml
tags/3.3.1.BETA5/docs/common-resources/en/pom.xml
tags/3.3.1.BETA5/docs/common-resources/pom.xml
tags/3.3.1.BETA5/docs/faq/en/pom.xml
tags/3.3.1.BETA5/docs/faq/pom.xml
tags/3.3.1.BETA5/docs/highlight/pom.xml
tags/3.3.1.BETA5/docs/migrationguide/en/pom.xml
tags/3.3.1.BETA5/docs/migrationguide/pom.xml
tags/3.3.1.BETA5/docs/pom.xml
tags/3.3.1.BETA5/docs/realworld_app_guide/en/pom.xml
tags/3.3.1.BETA5/docs/realworld_app_guide/pom.xml
tags/3.3.1.BETA5/docs/userguide/en/pom.xml
tags/3.3.1.BETA5/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.1.BETA5/docs/userguide/pom.xml
tags/3.3.1.BETA5/extensions/gwt/pom.xml
tags/3.3.1.BETA5/extensions/pom.xml
tags/3.3.1.BETA5/extensions/seam/pom.xml
tags/3.3.1.BETA5/extensions/trinidad/pom.xml
tags/3.3.1.BETA5/framework/api/pom.xml
tags/3.3.1.BETA5/framework/impl/pom.xml
tags/3.3.1.BETA5/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.3.1.BETA5/framework/jsf-test/pom.xml
tags/3.3.1.BETA5/framework/pom.xml
tags/3.3.1.BETA5/framework/test/pom.xml
tags/3.3.1.BETA5/pom.xml
tags/3.3.1.BETA5/samples/beanValidatorSample/pom.xml
tags/3.3.1.BETA5/samples/calendar-sample/pom.xml
tags/3.3.1.BETA5/samples/colorPickerDemo/pom.xml
tags/3.3.1.BETA5/samples/columnsDemo/pom.xml
tags/3.3.1.BETA5/samples/combobox-sample/pom.xml
tags/3.3.1.BETA5/samples/contextMenuDemo/pom.xml
tags/3.3.1.BETA5/samples/createProject.sh
tags/3.3.1.BETA5/samples/darkX/pom.xml
tags/3.3.1.BETA5/samples/dataFilterSliderDemo/pom.xml
tags/3.3.1.BETA5/samples/dataTableDemo/pom.xml
tags/3.3.1.BETA5/samples/datascroller-sample/pom.xml
tags/3.3.1.BETA5/samples/dragDropDemo/pom.xml
tags/3.3.1.BETA5/samples/dropdownmenu-sample/pom.xml
tags/3.3.1.BETA5/samples/editor-sample/pom.xml
tags/3.3.1.BETA5/samples/editorSeam-sample/pom.xml
tags/3.3.1.BETA5/samples/effect-sample/pom.xml
tags/3.3.1.BETA5/samples/extendedDataTable-sample/pom.xml
tags/3.3.1.BETA5/samples/fileUploadDemo/pom.xml
tags/3.3.1.BETA5/samples/functions-demo/pom.xml
tags/3.3.1.BETA5/samples/glassX/pom.xml
tags/3.3.1.BETA5/samples/gmap-sample/pom.xml
tags/3.3.1.BETA5/samples/hotKey-sample/pom.xml
tags/3.3.1.BETA5/samples/inplaceInput-sample/pom.xml
tags/3.3.1.BETA5/samples/inplaceSelect-sample/pom.xml
tags/3.3.1.BETA5/samples/inputNumberSliderDemo/pom.xml
tags/3.3.1.BETA5/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.1.BETA5/samples/jQuery-sample/pom.xml
tags/3.3.1.BETA5/samples/jira-data/pom.xml
tags/3.3.1.BETA5/samples/laguna/pom.xml
tags/3.3.1.BETA5/samples/layout-sample/pom.xml
tags/3.3.1.BETA5/samples/listShuttleDemo/pom.xml
tags/3.3.1.BETA5/samples/local-value-demo/pom.xml
tags/3.3.1.BETA5/samples/modalpanel-sample/pom.xml
tags/3.3.1.BETA5/samples/orderingListDemo/pom.xml
tags/3.3.1.BETA5/samples/panel-sample/pom.xml
tags/3.3.1.BETA5/samples/panelbar-sample/pom.xml
tags/3.3.1.BETA5/samples/panelmenu-sample/pom.xml
tags/3.3.1.BETA5/samples/pickList-sample/pom.xml
tags/3.3.1.BETA5/samples/pom.xml
tags/3.3.1.BETA5/samples/progressBarDemo/pom.xml
tags/3.3.1.BETA5/samples/queue-sample/pom.xml
tags/3.3.1.BETA5/samples/rich-message-demo/pom.xml
tags/3.3.1.BETA5/samples/richfaces-art-datatable/pom.xml
tags/3.3.1.BETA5/samples/richfaces-demo/pom.xml
tags/3.3.1.BETA5/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.1.BETA5/samples/richfaces-ear-demo/pom.xml
tags/3.3.1.BETA5/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.1.BETA5/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.1.BETA5/samples/scrollableDataTableDemo/pom.xml
tags/3.3.1.BETA5/samples/seamEAR/ear/pom.xml
tags/3.3.1.BETA5/samples/seamEAR/ejbs/pom.xml
tags/3.3.1.BETA5/samples/seamEAR/pom.xml
tags/3.3.1.BETA5/samples/seamEAR/primary-source/pom.xml
tags/3.3.1.BETA5/samples/seamEAR/projects/logging/pom.xml
tags/3.3.1.BETA5/samples/seamEAR/projects/pom.xml
tags/3.3.1.BETA5/samples/seamEAR/wars/pom.xml
tags/3.3.1.BETA5/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.1.BETA5/samples/seamIntegration/pom.xml
tags/3.3.1.BETA5/samples/separator-sample/pom.xml
tags/3.3.1.BETA5/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.1.BETA5/samples/skins/pom.xml
tags/3.3.1.BETA5/samples/sortingFilteringDemo/pom.xml
tags/3.3.1.BETA5/samples/state-sample/pom.xml
tags/3.3.1.BETA5/samples/stdcomponents-sample/pom.xml
tags/3.3.1.BETA5/samples/suggestionbox-sample/pom.xml
tags/3.3.1.BETA5/samples/tabPanelDemo/pom.xml
tags/3.3.1.BETA5/samples/themes/pom.xml
tags/3.3.1.BETA5/samples/togglePanel-sample/pom.xml
tags/3.3.1.BETA5/samples/tomahawkCompability/pom.xml
tags/3.3.1.BETA5/samples/toolBarDemo/pom.xml
tags/3.3.1.BETA5/samples/tooltip-sample/pom.xml
tags/3.3.1.BETA5/samples/tree-demo/pom.xml
tags/3.3.1.BETA5/samples/treeModelDemo/pom.xml
tags/3.3.1.BETA5/samples/virtualEarth-sample/pom.xml
tags/3.3.1.BETA5/sandbox/api/pom.xml
tags/3.3.1.BETA5/sandbox/cdk/pom.xml
tags/3.3.1.BETA5/sandbox/impl/pom.xml
tags/3.3.1.BETA5/sandbox/pom.xml
tags/3.3.1.BETA5/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.1.BETA5/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.1.BETA5/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.1.BETA5/sandbox/samples/maven-rd-plugin-sample/pom.xml
tags/3.3.1.BETA5/sandbox/samples/panel2-sample/pom.xml
tags/3.3.1.BETA5/sandbox/samples/pom.xml
tags/3.3.1.BETA5/sandbox/samples/rex-demo/pom.xml
tags/3.3.1.BETA5/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.1.BETA5/sandbox/ui/create.bat
tags/3.3.1.BETA5/sandbox/ui/create.sh
tags/3.3.1.BETA5/sandbox/ui/dialog-window/pom.xml
tags/3.3.1.BETA5/sandbox/ui/editorOld/pom.xml
tags/3.3.1.BETA5/sandbox/ui/panel2/pom.xml
tags/3.3.1.BETA5/sandbox/ui/pom.xml
tags/3.3.1.BETA5/sandbox/ui/rex-button/pom.xml
tags/3.3.1.BETA5/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.1.BETA5/sandbox/ui/rex-resizable/pom.xml
tags/3.3.1.BETA5/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.1.BETA5/sandbox/ui/sortableHeader/pom.xml
tags/3.3.1.BETA5/sandbox/ui/treeTable/pom.xml
tags/3.3.1.BETA5/test-applications/ajaxTest/pom.xml
tags/3.3.1.BETA5/test-applications/automator/pom.xml
tags/3.3.1.BETA5/test-applications/facelets/pom.xml
tags/3.3.1.BETA5/test-applications/jsp/pom.xml
tags/3.3.1.BETA5/test-applications/pom.xml
tags/3.3.1.BETA5/test-applications/realworld2/pom.xml
tags/3.3.1.BETA5/test-applications/regressionArea/pom.xml
tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-tests/pom.xml
tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.1.BETA5/test-applications/richfaces-docs/pom.xml
tags/3.3.1.BETA5/test-applications/richfaces-docs/web/pom.xml
tags/3.3.1.BETA5/test-applications/seamApp/pom.xml
tags/3.3.1.BETA5/test-applications/seleniumTest/pom.xml
tags/3.3.1.BETA5/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.1.BETA5/test-applications/seleniumTest/samples/pom.xml
tags/3.3.1.BETA5/ui/assembly/pom.xml
tags/3.3.1.BETA5/ui/beanValidator/pom.xml
tags/3.3.1.BETA5/ui/calendar/pom.xml
tags/3.3.1.BETA5/ui/colorPicker/pom.xml
tags/3.3.1.BETA5/ui/columns/pom.xml
tags/3.3.1.BETA5/ui/combobox/pom.xml
tags/3.3.1.BETA5/ui/componentControl/pom.xml
tags/3.3.1.BETA5/ui/contextMenu/pom.xml
tags/3.3.1.BETA5/ui/core/pom.xml
tags/3.3.1.BETA5/ui/create.bat
tags/3.3.1.BETA5/ui/dataFilterSlider/pom.xml
tags/3.3.1.BETA5/ui/dataTable/pom.xml
tags/3.3.1.BETA5/ui/datascroller/pom.xml
tags/3.3.1.BETA5/ui/drag-drop/pom.xml
tags/3.3.1.BETA5/ui/dropdown-menu/pom.xml
tags/3.3.1.BETA5/ui/editor/pom.xml
tags/3.3.1.BETA5/ui/effect/pom.xml
tags/3.3.1.BETA5/ui/extendedDataTable/pom.xml
tags/3.3.1.BETA5/ui/fileUpload/pom.xml
tags/3.3.1.BETA5/ui/functions/pom.xml
tags/3.3.1.BETA5/ui/gmap/pom.xml
tags/3.3.1.BETA5/ui/hotKey/pom.xml
tags/3.3.1.BETA5/ui/inplaceInput/pom.xml
tags/3.3.1.BETA5/ui/inplaceSelect/pom.xml
tags/3.3.1.BETA5/ui/inputnumber-slider/pom.xml
tags/3.3.1.BETA5/ui/inputnumber-spinner/pom.xml
tags/3.3.1.BETA5/ui/insert/pom.xml
tags/3.3.1.BETA5/ui/jQuery/pom.xml
tags/3.3.1.BETA5/ui/layout/pom.xml
tags/3.3.1.BETA5/ui/listShuttle/pom.xml
tags/3.3.1.BETA5/ui/menu-components/pom.xml
tags/3.3.1.BETA5/ui/message/pom.xml
tags/3.3.1.BETA5/ui/modal-panel/pom.xml
tags/3.3.1.BETA5/ui/orderingList/pom.xml
tags/3.3.1.BETA5/ui/paint2D/pom.xml
tags/3.3.1.BETA5/ui/panel/pom.xml
tags/3.3.1.BETA5/ui/panelbar/pom.xml
tags/3.3.1.BETA5/ui/panelmenu/pom.xml
tags/3.3.1.BETA5/ui/pickList/pom.xml
tags/3.3.1.BETA5/ui/pom.xml
tags/3.3.1.BETA5/ui/progressBAR/pom.xml
tags/3.3.1.BETA5/ui/scrollableDataTable/pom.xml
tags/3.3.1.BETA5/ui/separator/pom.xml
tags/3.3.1.BETA5/ui/simpleTogglePanel/pom.xml
tags/3.3.1.BETA5/ui/spacer/pom.xml
tags/3.3.1.BETA5/ui/state/pom.xml
tags/3.3.1.BETA5/ui/suggestionbox/pom.xml
tags/3.3.1.BETA5/ui/tabPanel/pom.xml
tags/3.3.1.BETA5/ui/togglePanel/pom.xml
tags/3.3.1.BETA5/ui/toolBar/pom.xml
tags/3.3.1.BETA5/ui/tooltip/pom.xml
tags/3.3.1.BETA5/ui/tree/pom.xml
tags/3.3.1.BETA5/ui/treeModel/pom.xml
tags/3.3.1.BETA5/ui/treeTable/pom.xml
tags/3.3.1.BETA5/ui/virtualEarth/pom.xml
Log:
create tag for 3.3.1.BETA5
Copied: tags/3.3.1.BETA5 (from rev 13624, trunk)
Modified: tags/3.3.1.BETA5/cdk/generator/pom.xml
===================================================================
--- trunk/cdk/generator/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/generator/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,93 +1,93 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <parent>
- <artifactId>cdk</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>generator</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <name>Java Server Faces component generator</name>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <inherited>true</inherited>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.6.5</version>
- </dependency>
- <dependency>
- <groupId>velocity</groupId>
- <artifactId>velocity-dep</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>commons-digester</groupId>
- <artifactId>commons-digester</artifactId>
- <version>1.5</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>qdox</groupId>
- <artifactId>qdox</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib</artifactId>
- <version>2.1_3</version>
- </dependency>
- <dependency>
- <groupId>wutka</groupId>
- <artifactId>dtdparser</artifactId>
- <version>1.21</version>
- </dependency>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.8.1</version>
- </dependency>
- </dependencies>
+<?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">
+ <parent>
+ <artifactId>cdk</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>generator</artifactId>
+ <version>3.3.1.BETA5</version>
+ <name>Java Server Faces component generator</name>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ <dependency>
+ <groupId>velocity</groupId>
+ <artifactId>velocity-dep</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ <version>1.5</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>qdox</groupId>
+ <artifactId>qdox</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>cglib</groupId>
+ <artifactId>cglib</artifactId>
+ <version>2.1_3</version>
+ </dependency>
+ <dependency>
+ <groupId>wutka</groupId>
+ <artifactId>dtdparser</artifactId>
+ <version>1.21</version>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.8.1</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsf-component/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/maven-archetype-jsf-component/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.BETA5/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsfwebapp/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/maven-archetype-jsfwebapp/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.BETA5/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-plug-n-skin/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/maven-archetype-plug-n-skin/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.1.BETA5/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.BETA5/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-seam-app/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/maven-archetype-seam-app/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.BETA5</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.1.BETA5/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-cdk-plugin/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/maven-cdk-plugin/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.BETA5/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-javascript-plugin/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/maven-javascript-plugin/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.1.BETA5/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-resource-dependency-plugin/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/maven-resource-dependency-plugin/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,47 +1,46 @@
-<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>cdk</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
-
- <groupId>org.richfaces.cdk</groupId>
-
- <artifactId>maven-resource-dependency-plugin</artifactId>
- <packaging>maven-plugin</packaging>
- <version>3.3.1-SNAPSHOT</version>
- <name>maven-resource-dependency-plugin</name>
-
-
- <dependencies>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>commons-vfs</groupId>
- <artifactId>commons-vfs</artifactId>
- <version>1.0</version>
- </dependency>
-
- <dependency>
- <groupId>commons-digester</groupId>
- <artifactId>commons-digester</artifactId>
- <version>2.0</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
-
- </dependencies>
-</project>
+<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>cdk</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.richfaces.cdk</groupId>
+
+ <artifactId>maven-resource-dependency-plugin</artifactId>
+ <packaging>maven-plugin</packaging>
+ <version>3.3.1.BETA5</version>
+ <name>maven-resource-dependency-plugin</name>
+
+
+ <dependencies>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-vfs</groupId>
+ <artifactId>commons-vfs</artifactId>
+ <version>1.0</version>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ <version>2.0</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+
+ </dependencies>
+</project>
Modified: tags/3.3.1.BETA5/cdk/pom.xml
===================================================================
--- trunk/cdk/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/cdk/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.BETA5/docs/cdkguide/en/pom.xml
===================================================================
--- trunk/docs/cdkguide/en/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/cdkguide/en/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.1.BETA5/docs/cdkguide/pom.xml
===================================================================
--- trunk/docs/cdkguide/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/cdkguide/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA5/docs/common-resources/en/pom.xml
===================================================================
--- trunk/docs/common-resources/en/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/common-resources/en/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>en</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<packaging>jar</packaging>
<name>Documentation common resources (en)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.BETA5/docs/common-resources/pom.xml
===================================================================
--- trunk/docs/common-resources/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/common-resources/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.1.BETA5/docs/faq/en/pom.xml
===================================================================
--- trunk/docs/faq/en/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/faq/en/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
@@ -52,4 +52,4 @@
-->
</plugins>
</build>
-</project>
+</project>
Modified: tags/3.3.1.BETA5/docs/faq/pom.xml
===================================================================
--- trunk/docs/faq/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/faq/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<!--repositories>
Modified: tags/3.3.1.BETA5/docs/highlight/pom.xml
===================================================================
--- trunk/docs/highlight/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/highlight/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.1.BETA5/docs/migrationguide/en/pom.xml
===================================================================
--- trunk/docs/migrationguide/en/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/migrationguide/en/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: tags/3.3.1.BETA5/docs/migrationguide/pom.xml
===================================================================
--- trunk/docs/migrationguide/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/migrationguide/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA5/docs/pom.xml
===================================================================
--- trunk/docs/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.1.BETA5/docs/realworld_app_guide/en/pom.xml
===================================================================
--- trunk/docs/realworld_app_guide/en/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/realworld_app_guide/en/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>realworld</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.realworld</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<packaging>jar</packaging>
<name>RichFaces Realworld application Guide (${translation})</name>
Modified: tags/3.3.1.BETA5/docs/realworld_app_guide/pom.xml
===================================================================
--- trunk/docs/realworld_app_guide/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/realworld_app_guide/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,16 +1,14 @@
-<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">
+<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>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>realworld</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>RichFaces Realworld application Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA5/docs/userguide/en/pom.xml
===================================================================
--- trunk/docs/userguide/en/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/userguide/en/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.1.BETA5/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3238,7 +3238,7 @@
<listitem>
<para>
<code>-DarchetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.1-SNAPSHOT"</code>
+ <code>"3.3.1.BETA5"</code>
</para>
</listitem>
<listitem>
@@ -3482,7 +3482,7 @@
mvn archetype:create
-DarchetypeGroupId=org.richfaces.cdk
-DarchetypeArtifactId=maven-archetype-plug-n-skin
--DarchetypeVersion=3.3.1-SNAPSHOT
+-DarchetypeVersion=3.3.1.BETA5
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: tags/3.3.1.BETA5/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/docs/userguide/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA5/extensions/gwt/pom.xml
===================================================================
--- trunk/extensions/gwt/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/extensions/gwt/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.1.BETA5/extensions/pom.xml
===================================================================
--- trunk/extensions/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/extensions/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.1.BETA5/extensions/seam/pom.xml
===================================================================
--- trunk/extensions/seam/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/extensions/seam/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.1.BETA5/extensions/trinidad/pom.xml
===================================================================
--- trunk/extensions/trinidad/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/extensions/trinidad/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.1.BETA5/framework/api/pom.xml
===================================================================
--- trunk/framework/api/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/framework/api/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: tags/3.3.1.BETA5/framework/impl/pom.xml
===================================================================
--- trunk/framework/impl/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/framework/impl/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,15 +1,14 @@
-<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">
+<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>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<resources>
<resource>
@@ -161,7 +160,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- trunk/framework/impl/src/main/java/org/richfaces/VersionBean.java 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/framework/impl/src/main/java/org/richfaces/VersionBean.java 2009-04-17 16:37:53 UTC (rev 13647)
@@ -37,7 +37,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "1-SNAPSHOT" ;
+ public static final String REVISION = "1.BETA5" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.3.1.BETA5/framework/jsf-test/pom.xml
===================================================================
--- trunk/framework/jsf-test/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/framework/jsf-test/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,135 +1,134 @@
-<?xml version="1.0"?>
-<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>framework</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>jsf-test</artifactId>
- <name>jsf-test</name>
- <version>3.3.1-SNAPSHOT</version>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.5</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.htmlunit</groupId>
- <artifactId>htmlunit</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_12</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.htmlunit</groupId>
- <artifactId>htmlunit-core-js</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.cssparser</groupId>
- <artifactId>cssparser</artifactId>
- <version>0.9.5</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.1</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>1.9.11</version>
- <exclusions>
- <exclusion>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis</artifactId>
- </exclusion>
- <!--
- <exclusion> <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId> </exclusion>
- -->
- </exclusions>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- </dependency>
- <dependency>
- <groupId>jstl</groupId>
- <artifactId>jstl</artifactId>
- <version>1.2</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.annotation</groupId>
- <artifactId>jsr250-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>xalan</groupId>
- <artifactId>xalan</artifactId>
- <version>2.7.1</version>
- <exclusions>
- <exclusion>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>de.berlios.jsunit</groupId>
- <artifactId>jsunit</artifactId>
- <version>1.3</version>
- <exclusions>
- <exclusion>
- <groupId>rhino</groupId>
- <artifactId>js</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
+<?xml version="1.0"?>
+<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>framework</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>jsf-test</artifactId>
+ <name>jsf-test</name>
+ <version>3.3.1.BETA5</version>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.5</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.htmlunit</groupId>
+ <artifactId>htmlunit</artifactId>
+ <version>2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_12</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.htmlunit</groupId>
+ <artifactId>htmlunit-core-js</artifactId>
+ <version>2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.cssparser</groupId>
+ <artifactId>cssparser</artifactId>
+ <version>0.9.5</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>1.9.11</version>
+ <exclusions>
+ <exclusion>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ </exclusion>
+ <!--
+ <exclusion> <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId> </exclusion>
+ -->
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>jstl</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.annotation</groupId>
+ <artifactId>jsr250-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>xalan</groupId>
+ <artifactId>xalan</artifactId>
+ <version>2.7.1</version>
+ <exclusions>
+ <exclusion>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>de.berlios.jsunit</groupId>
+ <artifactId>jsunit</artifactId>
+ <version>1.3</version>
+ <exclusions>
+ <exclusion>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/framework/pom.xml
===================================================================
--- trunk/framework/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/framework/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: tags/3.3.1.BETA5/framework/test/pom.xml
===================================================================
--- trunk/framework/test/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/framework/test/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA5/pom.xml
===================================================================
--- trunk/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
@@ -217,9 +217,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk</developerConnection>
- <url>https://svn.jboss.org/repos/richfaces/trunk</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/3.3.1.BETA5</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.3.1.BETA5</developerConnection>
+ <url>https://svn.jboss.org/repos/richfaces/branches/3.3.1.BETA5</url>
</scm>
<profiles>
<profile>
@@ -242,9 +242,9 @@
.settings/org.eclipse.jdt.ui.prefs
</name>
<content>
- <![CDATA[
- eclipse.preferences.version=1
- org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
+ <![CDATA[
+ eclipse.preferences.version=1
+ org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
]]>
</content>
</file>
Modified: tags/3.3.1.BETA5/samples/beanValidatorSample/pom.xml
===================================================================
--- trunk/samples/beanValidatorSample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/beanValidatorSample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -52,7 +52,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.1-SNAPSHOT</version> </dependency>
+ <version>3.3.1.BETA5</version> </dependency>
-->
<dependency>
<groupId>org.hibernate</groupId>
@@ -75,7 +75,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.1.BETA5/samples/calendar-sample/pom.xml
===================================================================
--- trunk/samples/calendar-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/calendar-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/colorPickerDemo/pom.xml
===================================================================
--- trunk/samples/colorPickerDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/colorPickerDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -35,7 +35,7 @@
<groupId>org.richfaces.framework
</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples
@@ -46,17 +46,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.BETA5/samples/columnsDemo/pom.xml
===================================================================
--- trunk/samples/columnsDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/columnsDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/combobox-sample/pom.xml
===================================================================
--- trunk/samples/combobox-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/combobox-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/contextMenuDemo/pom.xml
===================================================================
--- trunk/samples/contextMenuDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/contextMenuDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/createProject.sh
===================================================================
--- trunk/samples/createProject.sh 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/createProject.sh 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.1-SNAPSHOT -Dversion=3.3.1-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.1.BETA5 -Dversion=3.3.1.BETA5 -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: tags/3.3.1.BETA5/samples/darkX/pom.xml
===================================================================
--- trunk/samples/darkX/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/darkX/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,48 +1,48 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>darkX</artifactId>
- <name>darkX</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<?xml version="1.0"?><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>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>darkX</artifactId>
+ <name>darkX</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- trunk/samples/dataFilterSliderDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/dataFilterSliderDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/dataTableDemo/pom.xml
===================================================================
--- trunk/samples/dataTableDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/dataTableDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/datascroller-sample/pom.xml
===================================================================
--- trunk/samples/datascroller-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/datascroller-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/dragDropDemo/pom.xml
===================================================================
--- trunk/samples/dragDropDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/dragDropDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/dropdownmenu-sample/pom.xml
===================================================================
--- trunk/samples/dropdownmenu-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/dropdownmenu-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/editor-sample/pom.xml
===================================================================
--- trunk/samples/editor-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/editor-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA5/samples/editorSeam-sample/pom.xml
===================================================================
--- trunk/samples/editorSeam-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/editorSeam-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA5/samples/effect-sample/pom.xml
===================================================================
--- trunk/samples/effect-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/effect-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/extendedDataTable-sample/pom.xml
===================================================================
--- trunk/samples/extendedDataTable-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/extendedDataTable-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA5/samples/fileUploadDemo/pom.xml
===================================================================
--- trunk/samples/fileUploadDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/fileUploadDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/functions-demo/pom.xml
===================================================================
--- trunk/samples/functions-demo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/functions-demo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/glassX/pom.xml
===================================================================
--- trunk/samples/glassX/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/glassX/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,49 +1,49 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>glassX</artifactId>
- <name>glassX</name>
- <version>3.3.1-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<?xml version="1.0"?><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>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>glassX</artifactId>
+ <name>glassX</name>
+ <version>3.3.1.BETA5</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/samples/gmap-sample/pom.xml
===================================================================
--- trunk/samples/gmap-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/gmap-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/hotKey-sample/pom.xml
===================================================================
--- trunk/samples/hotKey-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/hotKey-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA5/samples/inplaceInput-sample/pom.xml
===================================================================
--- trunk/samples/inplaceInput-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/inplaceInput-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/inplaceSelect-sample/pom.xml
===================================================================
--- trunk/samples/inplaceSelect-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/inplaceSelect-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- trunk/samples/inputNumberSliderDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/inputNumberSliderDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- trunk/samples/inputNumberSpinnerDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/inputNumberSpinnerDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/jQuery-sample/pom.xml
===================================================================
--- trunk/samples/jQuery-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/jQuery-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/jira-data/pom.xml
===================================================================
--- trunk/samples/jira-data/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/jira-data/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/laguna/pom.xml
===================================================================
--- trunk/samples/laguna/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/laguna/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.1.BETA5/samples/layout-sample/pom.xml
===================================================================
--- trunk/samples/layout-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/layout-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>layout-sample</artifactId>
<packaging>war</packaging>
<name>layout Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,22 +34,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.BETA5/samples/listShuttleDemo/pom.xml
===================================================================
--- trunk/samples/listShuttleDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/listShuttleDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/local-value-demo/pom.xml
===================================================================
--- trunk/samples/local-value-demo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/local-value-demo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/modalpanel-sample/pom.xml
===================================================================
--- trunk/samples/modalpanel-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/modalpanel-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/orderingListDemo/pom.xml
===================================================================
--- trunk/samples/orderingListDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/orderingListDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/panel-sample/pom.xml
===================================================================
--- trunk/samples/panel-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/panel-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/panelbar-sample/pom.xml
===================================================================
--- trunk/samples/panelbar-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/panelbar-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/panelmenu-sample/pom.xml
===================================================================
--- trunk/samples/panelmenu-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/panelmenu-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/pickList-sample/pom.xml
===================================================================
--- trunk/samples/pickList-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/pickList-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/pom.xml
===================================================================
--- trunk/samples/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,502 +1,502 @@
-<?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">
- <parent>
- <artifactId>root</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces</groupId>
- <artifactId>samples</artifactId>
- <packaging>pom</packaging>
- <name>RichFaces Components Examples</name>
- <url>http://labs.jboss.com/jbossrichfaces/samples</url>
- <properties>
- <!-- -->
- </properties>
- <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <!--
- -->
- <version>6.1.5</version>
- <configuration>
- <scanIntervalSeconds>10</scanIntervalSeconds>
- <connectors>
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
- <port>8080</port>
- <maxIdleTime>60000</maxIdleTime>
- </connector>
- </connectors>
- </configuration>
-
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- <executions>
- <execution>
- <id>surefire-it</id>
- <phase>integration-test</phase>
- <goals>
- <goal>test</goal>
- </goals>
- <configuration>
- <skip>false</skip>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sun.facelets</groupId>
- <artifactId>jsf-facelets</artifactId>
- <version>1.1.14</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>0.9.5</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <artifactId>xerces</artifactId>
- <groupId>xerces</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>jsf1_1</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.1</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jsf1_2</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.2</value>
- </property>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_12</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat5</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_12</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat6</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_12</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jboss42</id>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_12</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>myfaces</id>
- <properties>
- <myfaces>1.2.5</myfaces>
- <tomahawk>1.1.7</tomahawk>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- <exclusions>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-api</artifactId>
- <version>${myfaces}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-impl</artifactId>
- <version>${myfaces}</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>seam</id>
- <modules>
- <module>seamEAR</module>
- <module>seamIntegration</module>
- </modules>
- </profile>
- <profile>
- <id>clover</id>
- <build>
- <plugins>
- <plugin>
- <groupId>com.atlassian.maven.plugins</groupId>
- <artifactId>maven-clover2-plugin</artifactId>
- <configuration>
- <includesAllSourceRoots>
- false
- </includesAllSourceRoots>
- <includesTestSourceRoots>
- false
- </includesTestSourceRoots>
- <jdk>1.5</jdk>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>allSamples</id>
- <modules>
- <module>separator-sample</module>
- <module>panel-sample</module>
- <module>gmap-sample</module>
- <module>togglePanel-sample</module>
- <module>tabPanelDemo</module>
- <module>simpleTogglePanel-sample</module>
- <module>inputNumberSpinnerDemo</module>
- <module>inputNumberSliderDemo</module>
- <module>panelbar-sample</module>
- <module>toolBarDemo</module>
- <module>tree-demo</module>
- <module>dataFilterSliderDemo</module>
- <module>suggestionbox-sample</module>
- <module>dragDropDemo</module>
- <module>dataTableDemo</module>
- <module>modalpanel-sample</module>
- <module>datascroller-sample</module>
- <module>effect-sample</module>
- <module>dropdownmenu-sample</module>
- <module>tooltip-sample</module>
- <module>calendar-sample</module>
- <module>treeModelDemo</module>
- <module>local-value-demo</module>
- <module>panelmenu-sample</module>
- <module>rich-message-demo</module>
- <module>scrollableDataTableDemo</module>
- <module>richfaces-ear-demo</module>
- <module>contextMenuDemo</module>
- <module>orderingListDemo</module>
- <module>listShuttleDemo</module>
- <module>columnsDemo</module>
- <module>combobox-sample</module>
- <module>pickList-sample</module>
- <module>progressBarDemo</module>
- <module>jira-data</module>
- <module>stdcomponents-sample</module>
- <module>fileUploadDemo</module>
- <module>sortingFilteringDemo</module>
- <module>inplaceInput-sample</module>
- <module>inplaceSelect-sample</module>
- <module>functions-demo</module>
- <module>hotKey-sample</module>
- <module>beanValidatorSample</module>
- <module>state-sample</module>
- <module>extendedDataTable-sample</module>
- <module>queue-sample</module>
- <module>editor-sample</module>
- <module>editorSeam-sample</module>
- <module>colorPickerDemo</module>
- <module>layout-sample</module>
- </modules>
- </profile>
- </profiles>
- <modules>
- <module>skins</module>
- <module>laguna</module>
- <module>glassX</module>
- <module>darkX</module>
- <module>richfaces-demo</module>
- <module>themes</module>
- </modules>
+<?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">
+ <parent>
+ <artifactId>root</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>samples</artifactId>
+ <packaging>pom</packaging>
+ <name>RichFaces Components Examples</name>
+ <url>http://labs.jboss.com/jbossrichfaces/samples</url>
+ <properties>
+ <!-- -->
+ </properties>
+ <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <!--
+ -->
+ <version>6.1.5</version>
+ <configuration>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
+ <connectors>
+ <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>8080</port>
+ <maxIdleTime>60000</maxIdleTime>
+ </connector>
+ </connectors>
+ </configuration>
+
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ <executions>
+ <execution>
+ <id>surefire-it</id>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <skip>false</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.facelets</groupId>
+ <artifactId>jsf-facelets</artifactId>
+ <version>1.1.14</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>0.9.5</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>xerces</artifactId>
+ <groupId>xerces</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+ <profiles>
+ <profile>
+ <id>jsf1_1</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.1</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jsf1_2</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.2</value>
+ </property>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_12</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat5</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_12</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat6</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_12</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jboss42</id>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_12</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>myfaces</id>
+ <properties>
+ <myfaces>1.2.5</myfaces>
+ <tomahawk>1.1.7</tomahawk>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-api</artifactId>
+ <version>${myfaces}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-impl</artifactId>
+ <version>${myfaces}</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>seam</id>
+ <modules>
+ <module>seamEAR</module>
+ <module>seamIntegration</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>clover</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.atlassian.maven.plugins</groupId>
+ <artifactId>maven-clover2-plugin</artifactId>
+ <configuration>
+ <includesAllSourceRoots>
+ false
+ </includesAllSourceRoots>
+ <includesTestSourceRoots>
+ false
+ </includesTestSourceRoots>
+ <jdk>1.5</jdk>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>allSamples</id>
+ <modules>
+ <module>separator-sample</module>
+ <module>panel-sample</module>
+ <module>gmap-sample</module>
+ <module>togglePanel-sample</module>
+ <module>tabPanelDemo</module>
+ <module>simpleTogglePanel-sample</module>
+ <module>inputNumberSpinnerDemo</module>
+ <module>inputNumberSliderDemo</module>
+ <module>panelbar-sample</module>
+ <module>toolBarDemo</module>
+ <module>tree-demo</module>
+ <module>dataFilterSliderDemo</module>
+ <module>suggestionbox-sample</module>
+ <module>dragDropDemo</module>
+ <module>dataTableDemo</module>
+ <module>modalpanel-sample</module>
+ <module>datascroller-sample</module>
+ <module>effect-sample</module>
+ <module>dropdownmenu-sample</module>
+ <module>tooltip-sample</module>
+ <module>calendar-sample</module>
+ <module>treeModelDemo</module>
+ <module>local-value-demo</module>
+ <module>panelmenu-sample</module>
+ <module>rich-message-demo</module>
+ <module>scrollableDataTableDemo</module>
+ <module>richfaces-ear-demo</module>
+ <module>contextMenuDemo</module>
+ <module>orderingListDemo</module>
+ <module>listShuttleDemo</module>
+ <module>columnsDemo</module>
+ <module>combobox-sample</module>
+ <module>pickList-sample</module>
+ <module>progressBarDemo</module>
+ <module>jira-data</module>
+ <module>stdcomponents-sample</module>
+ <module>fileUploadDemo</module>
+ <module>sortingFilteringDemo</module>
+ <module>inplaceInput-sample</module>
+ <module>inplaceSelect-sample</module>
+ <module>functions-demo</module>
+ <module>hotKey-sample</module>
+ <module>beanValidatorSample</module>
+ <module>state-sample</module>
+ <module>extendedDataTable-sample</module>
+ <module>queue-sample</module>
+ <module>editor-sample</module>
+ <module>editorSeam-sample</module>
+ <module>colorPickerDemo</module>
+ <module>layout-sample</module>
+ </modules>
+ </profile>
+ </profiles>
+ <modules>
+ <module>skins</module>
+ <module>laguna</module>
+ <module>glassX</module>
+ <module>darkX</module>
+ <module>richfaces-demo</module>
+ <module>themes</module>
+ </modules>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/samples/progressBarDemo/pom.xml
===================================================================
--- trunk/samples/progressBarDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/progressBarDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/queue-sample/pom.xml
===================================================================
--- trunk/samples/queue-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/queue-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.1.BETA5/samples/rich-message-demo/pom.xml
===================================================================
--- trunk/samples/rich-message-demo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/rich-message-demo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/richfaces-art-datatable/pom.xml
===================================================================
--- trunk/samples/richfaces-art-datatable/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/richfaces-art-datatable/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/richfaces-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-demo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/richfaces-demo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -209,22 +209,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.1.BETA5/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/ejb/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/richfaces-ear-demo/ejb/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.BETA5/samples/richfaces-ear-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/richfaces-ear-demo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.BETA5/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/webapp/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/richfaces-ear-demo/webapp/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.BETA5/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- trunk/samples/scrollableDataTableDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/scrollableDataTableDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.1.BETA5/samples/seamEAR/ear/pom.xml
===================================================================
--- trunk/samples/seamEAR/ear/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/seamEAR/ear/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.BETA5/samples/seamEAR/ejbs/pom.xml
===================================================================
--- trunk/samples/seamEAR/ejbs/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/seamEAR/ejbs/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.BETA5/samples/seamEAR/pom.xml
===================================================================
--- trunk/samples/seamEAR/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/seamEAR/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/seamEAR/primary-source/pom.xml
===================================================================
--- trunk/samples/seamEAR/primary-source/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/seamEAR/primary-source/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.BETA5/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- trunk/samples/seamEAR/projects/logging/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/seamEAR/projects/logging/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
</project>
Modified: tags/3.3.1.BETA5/samples/seamEAR/projects/pom.xml
===================================================================
--- trunk/samples/seamEAR/projects/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/seamEAR/projects/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.1.BETA5/samples/seamEAR/wars/pom.xml
===================================================================
--- trunk/samples/seamEAR/wars/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/seamEAR/wars/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.1.BETA5/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- trunk/samples/seamEAR/wars/seamWebapp/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/seamEAR/wars/seamWebapp/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.BETA5/samples/seamIntegration/pom.xml
===================================================================
--- trunk/samples/seamIntegration/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/seamIntegration/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/separator-sample/pom.xml
===================================================================
--- trunk/samples/separator-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/separator-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- trunk/samples/simpleTogglePanel-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/simpleTogglePanel-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/skins/pom.xml
===================================================================
--- trunk/samples/skins/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/skins/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/sortingFilteringDemo/pom.xml
===================================================================
--- trunk/samples/sortingFilteringDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/sortingFilteringDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency-->
<dependency>
Modified: tags/3.3.1.BETA5/samples/state-sample/pom.xml
===================================================================
--- trunk/samples/state-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/state-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/samples/stdcomponents-sample/pom.xml
===================================================================
--- trunk/samples/stdcomponents-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/stdcomponents-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/suggestionbox-sample/pom.xml
===================================================================
--- trunk/samples/suggestionbox-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/suggestionbox-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/tabPanelDemo/pom.xml
===================================================================
--- trunk/samples/tabPanelDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/tabPanelDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/themes/pom.xml
===================================================================
--- trunk/samples/themes/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/themes/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,44 +1,44 @@
-<?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>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>themes</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <name>themes</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <id>generate-sources</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>layout</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<?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>
+ <artifactId>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>themes</artifactId>
+ <version>3.3.1.BETA5</version>
+ <name>themes</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA5</version>
+ <executions>
+ <execution>
+ <id>generate-sources</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>layout</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/samples/togglePanel-sample/pom.xml
===================================================================
--- trunk/samples/togglePanel-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/togglePanel-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/tomahawkCompability/pom.xml
===================================================================
--- trunk/samples/tomahawkCompability/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/tomahawkCompability/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/toolBarDemo/pom.xml
===================================================================
--- trunk/samples/toolBarDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/toolBarDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/tooltip-sample/pom.xml
===================================================================
--- trunk/samples/tooltip-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/tooltip-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/tree-demo/pom.xml
===================================================================
--- trunk/samples/tree-demo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/tree-demo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/treeModelDemo/pom.xml
===================================================================
--- trunk/samples/treeModelDemo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/treeModelDemo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/samples/virtualEarth-sample/pom.xml
===================================================================
--- trunk/samples/virtualEarth-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/samples/virtualEarth-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA5/sandbox/api/pom.xml
===================================================================
--- trunk/sandbox/api/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/api/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA5/sandbox/cdk/pom.xml
===================================================================
--- trunk/sandbox/cdk/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/cdk/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.BETA5/sandbox/impl/pom.xml
===================================================================
--- trunk/sandbox/impl/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/impl/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA5/sandbox/pom.xml
===================================================================
--- trunk/sandbox/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA5/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/dialog-window-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/samples/dialog-window-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA5/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/editorOld-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/samples/editorOld-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA5/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- trunk/sandbox/samples/fileUploadPOC/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/samples/fileUploadPOC/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA5/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/maven-rd-plugin-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/samples/maven-rd-plugin-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk.sandbox</groupId>
<artifactId>maven-rd-plugin-sample</artifactId>
<packaging>war</packaging>
<name>maven-rd-plugin-sample Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<finalName>maven-rd-plugin-sample</finalName>
<plugins>
@@ -23,7 +23,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<configuration>
<webSourceDirectory>${basedir}/src/main/webapp</webSourceDirectory>
@@ -72,7 +72,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/panel2-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/samples/panel2-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA5/sandbox/samples/pom.xml
===================================================================
--- trunk/sandbox/samples/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/samples/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA5/sandbox/samples/rex-demo/pom.xml
===================================================================
--- trunk/sandbox/samples/rex-demo/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/samples/rex-demo/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
Modified: tags/3.3.1.BETA5/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA5/sandbox/ui/create.bat
===================================================================
--- trunk/sandbox/ui/create.bat 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/create.bat 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.BETA5 -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.1.BETA5/sandbox/ui/create.sh
===================================================================
--- trunk/sandbox/ui/create.sh 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/create.sh 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.BETA5 -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: tags/3.3.1.BETA5/sandbox/ui/dialog-window/pom.xml
===================================================================
--- trunk/sandbox/ui/dialog-window/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/dialog-window/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA5/sandbox/ui/editorOld/pom.xml
===================================================================
--- trunk/sandbox/ui/editorOld/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/editorOld/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/sandbox/ui/panel2/pom.xml
===================================================================
--- trunk/sandbox/ui/panel2/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/panel2/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/sandbox/ui/pom.xml
===================================================================
--- trunk/sandbox/ui/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.1.BETA5/sandbox/ui/rex-button/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-button/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/rex-button/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-messageBox/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/rex-messageBox/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-resizable/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/rex-resizable/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- trunk/sandbox/ui/simpleTogglePanel2/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/simpleTogglePanel2/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- trunk/sandbox/ui/sortableHeader/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/sortableHeader/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/sandbox/ui/treeTable/pom.xml
===================================================================
--- trunk/sandbox/ui/treeTable/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/sandbox/ui/treeTable/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/test-applications/ajaxTest/pom.xml
===================================================================
--- trunk/test-applications/ajaxTest/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/ajaxTest/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.1.BETA5/test-applications/automator/pom.xml
===================================================================
--- trunk/test-applications/automator/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/automator/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA5/test-applications/facelets/pom.xml
===================================================================
--- trunk/test-applications/facelets/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/facelets/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA5/test-applications/jsp/pom.xml
===================================================================
--- trunk/test-applications/jsp/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/jsp/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA5/test-applications/pom.xml
===================================================================
--- trunk/test-applications/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.BETA5</rfVersion>
</properties>
<modules>
Modified: tags/3.3.1.BETA5/test-applications/realworld2/pom.xml
===================================================================
--- trunk/test-applications/realworld2/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/realworld2/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -14,7 +14,7 @@
<properties>
<projectName>realworld</projectName>
- <richfacesVersion>3.3.1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.BETA5</richfacesVersion>
<seamVersion>2.1.1.GA</seamVersion>
<faceletsVersion>1.1.15.B1</faceletsVersion>
<jbosshome>${project.basedir}/target/installs/jboss-4.2.3.GA/jboss-4.2.3.GA</jbosshome>
Modified: tags/3.3.1.BETA5/test-applications/regressionArea/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/regressionArea/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -60,7 +60,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.1-SNAPSHOT</richversion>
+ <richversion>3.3.1.BETA5</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-ear/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-ear/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-ejb/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-ejb/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-tests/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-tests/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-web/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/regressionArea/regressionArea-web/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.1.BETA5/test-applications/richfaces-docs/pom.xml
===================================================================
--- trunk/test-applications/richfaces-docs/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/richfaces-docs/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -8,7 +8,7 @@
<name>richfaces-docs</name>
<properties>
<projectName>richfaces-docs</projectName>
- <richfacesVersion>3.3.1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.BETA5</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<droolsVersion>4.0.0</droolsVersion>
Modified: tags/3.3.1.BETA5/test-applications/richfaces-docs/web/pom.xml
===================================================================
--- trunk/test-applications/richfaces-docs/web/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/richfaces-docs/web/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -46,18 +46,18 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
Modified: tags/3.3.1.BETA5/test-applications/seamApp/pom.xml
===================================================================
--- trunk/test-applications/seamApp/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/seamApp/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.BETA5</rfVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.2.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.2.GA/jboss-4.2.2.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.1.BETA5/test-applications/seleniumTest/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/seleniumTest/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -227,7 +227,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA5/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/seleniumTest/richfaces/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: tags/3.3.1.BETA5/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/samples/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/test-applications/seleniumTest/samples/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.1.BETA5/ui/assembly/pom.xml
===================================================================
--- trunk/ui/assembly/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/assembly/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.3.1.BETA5/ui/beanValidator/pom.xml
===================================================================
--- trunk/ui/beanValidator/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/beanValidator/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,75 +1,75 @@
-<?xml version="1.0"?>
-<project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>beanValidator</artifactId>
- <name>beanValidator</name>
- <version>3.3.1-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>beanValidator</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>message</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-validator</artifactId>
- <version>3.1.0.GA</version>
- <exclusions>
- <!--
- <exclusion> <artifactId>hibernate-core</artifactId>
- <groupId>org.hibernate</groupId> </exclusion> <exclusion>
- <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
- </exclusion>
- -->
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.4.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<?xml version="1.0"?>
+<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>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>beanValidator</artifactId>
+ <name>beanValidator</name>
+ <version>3.3.1.BETA5</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>beanValidator</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>message</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ <version>3.1.0.GA</version>
+ <exclusions>
+ <!--
+ <exclusion> <artifactId>hibernate-core</artifactId>
+ <groupId>org.hibernate</groupId> </exclusion> <exclusion>
+ <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
+ </exclusion>
+ -->
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.4.2</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/calendar/pom.xml
===================================================================
--- trunk/ui/calendar/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/calendar/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/colorPicker/pom.xml
===================================================================
--- trunk/ui/colorPicker/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/colorPicker/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,55 +1,55 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>colorPicker</artifactId>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>colorPicker</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
-</project>
+<?xml version="1.0"?><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>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>colorPicker</artifactId>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>colorPicker</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+</project>
Modified: tags/3.3.1.BETA5/ui/columns/pom.xml
===================================================================
--- trunk/ui/columns/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/columns/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.BETA5/ui/combobox/pom.xml
===================================================================
--- trunk/ui/combobox/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/combobox/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA5/ui/componentControl/pom.xml
===================================================================
--- trunk/ui/componentControl/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/componentControl/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/contextMenu/pom.xml
===================================================================
--- trunk/ui/contextMenu/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/contextMenu/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/core/pom.xml
===================================================================
--- trunk/ui/core/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/core/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/create.bat
===================================================================
--- trunk/ui/create.bat 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/create.bat 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.BETA5 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/dataFilterSlider/pom.xml
===================================================================
--- trunk/ui/dataFilterSlider/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/dataFilterSlider/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/dataTable/pom.xml
===================================================================
--- trunk/ui/dataTable/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/dataTable/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.BETA5/ui/datascroller/pom.xml
===================================================================
--- trunk/ui/datascroller/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/datascroller/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/drag-drop/pom.xml
===================================================================
--- trunk/ui/drag-drop/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/drag-drop/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.BETA5/ui/dropdown-menu/pom.xml
===================================================================
--- trunk/ui/dropdown-menu/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/dropdown-menu/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/editor/pom.xml
===================================================================
--- trunk/ui/editor/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/editor/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -62,7 +62,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Deleted: tags/3.3.1.BETA5/ui/editor/src/main/java/org/richfaces/convert/seamtext/tags/UnorderedListTag.java
===================================================================
--- trunk/ui/editor/src/main/java/org/richfaces/convert/seamtext/tags/UnorderedListTag.java 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/editor/src/main/java/org/richfaces/convert/seamtext/tags/UnorderedListTag.java 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,36 +0,0 @@
-package org.richfaces.convert.seamtext.tags;
-
-import sun.security.action.GetBooleanAction;
-
-import com.sun.java_cup.internal.production;
-
-class UnorderedListTag extends HtmlTag {
- private static final long serialVersionUID = 1L;
-
- public UnorderedListTag() {
- super(UL);
- }
-
- protected UnorderedListTag(String name) {
- super(name);
- }
-
- @Override
- public String printStart() {
- return "";
- }
-
- @Override
- public String printEnd() {
- return "\n";
- }
-
- @Override
- protected void appendChildTag(StringBuilder res, HtmlTag child) {
- if (LI.equals(child.getName())) {
- res.append(TagFactory.SEAM_EQ).append(child.print());
- } else {
- res.append(child);
- }
- }
-}
Modified: tags/3.3.1.BETA5/ui/effect/pom.xml
===================================================================
--- trunk/ui/effect/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/effect/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/extendedDataTable/pom.xml
===================================================================
--- trunk/ui/extendedDataTable/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/extendedDataTable/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,35 +1,35 @@
-<?xml version="1.0"?><project>
+<?xml version="1.0"?><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>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>extendedDataTable</artifactId>
- <name>extendedDataTable</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>extendedDataTable</shortName>
- </taglib>
- </library>
- </configuration>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>extendedDataTable</artifactId>
+ <name>extendedDataTable</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>extendedDataTable</shortName>
+ </taglib>
+ </library>
+ </configuration>
</plugin>
<plugin>
@@ -57,52 +57,52 @@
</execution>
</executions>
</plugin>
-
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>drag-drop</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA5</version>
</dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>menu-components</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>contextMenu</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>jQuery</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>componentControl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>scrollableDataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>drag-drop</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>dataTable</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>menu-components</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>contextMenu</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>jQuery</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>componentControl</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>scrollableDataTable</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/fileUpload/pom.xml
===================================================================
--- trunk/ui/fileUpload/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/fileUpload/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/functions/pom.xml
===================================================================
--- trunk/ui/functions/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/functions/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/gmap/pom.xml
===================================================================
--- trunk/ui/gmap/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/gmap/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/hotKey/pom.xml
===================================================================
--- trunk/ui/hotKey/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/hotKey/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,56 +1,56 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>hotKey</artifactId>
- <name>hotKey</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>hotKey</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<?xml version="1.0"?><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>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>hotKey</artifactId>
+ <name>hotKey</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>hotKey</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/inplaceInput/pom.xml
===================================================================
--- trunk/ui/inplaceInput/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/inplaceInput/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/inplaceSelect/pom.xml
===================================================================
--- trunk/ui/inplaceSelect/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/inplaceSelect/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA5/ui/inputnumber-slider/pom.xml
===================================================================
--- trunk/ui/inputnumber-slider/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/inputnumber-slider/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/inputnumber-spinner/pom.xml
===================================================================
--- trunk/ui/inputnumber-spinner/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/inputnumber-spinner/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.BETA5/ui/insert/pom.xml
===================================================================
--- trunk/ui/insert/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/insert/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/jQuery/pom.xml
===================================================================
--- trunk/ui/jQuery/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/jQuery/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/layout/pom.xml
===================================================================
--- trunk/ui/layout/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/layout/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,54 +1,54 @@
-<?xml version="1.0"?>
-<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>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>layout</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <name>layout</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <id>generate-sources</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <uri>http://richfaces.org/layout</uri>
- <shortName>layout</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
-</project>
+<?xml version="1.0"?>
+<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>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>layout</artifactId>
+ <version>3.3.1.BETA5</version>
+ <name>layout</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA5</version>
+ <executions>
+ <execution>
+ <id>generate-sources</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <uri>http://richfaces.org/layout</uri>
+ <shortName>layout</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ </dependencies>
+</project>
Modified: tags/3.3.1.BETA5/ui/listShuttle/pom.xml
===================================================================
--- trunk/ui/listShuttle/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/listShuttle/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.BETA5/ui/menu-components/pom.xml
===================================================================
--- trunk/ui/menu-components/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/menu-components/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/message/pom.xml
===================================================================
--- trunk/ui/message/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/message/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/modal-panel/pom.xml
===================================================================
--- trunk/ui/modal-panel/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/modal-panel/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/orderingList/pom.xml
===================================================================
--- trunk/ui/orderingList/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/orderingList/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/paint2D/pom.xml
===================================================================
--- trunk/ui/paint2D/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/paint2D/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/panel/pom.xml
===================================================================
--- trunk/ui/panel/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/panel/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/panelbar/pom.xml
===================================================================
--- trunk/ui/panelbar/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/panelbar/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/panelmenu/pom.xml
===================================================================
--- trunk/ui/panelmenu/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/panelmenu/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/pickList/pom.xml
===================================================================
--- trunk/ui/pickList/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/pickList/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA5/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -138,12 +138,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.BETA5/ui/progressBAR/pom.xml
===================================================================
--- trunk/ui/progressBAR/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/progressBAR/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/scrollableDataTable/pom.xml
===================================================================
--- trunk/ui/scrollableDataTable/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/scrollableDataTable/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/separator/pom.xml
===================================================================
--- trunk/ui/separator/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/separator/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.BETA5/ui/simpleTogglePanel/pom.xml
===================================================================
--- trunk/ui/simpleTogglePanel/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/simpleTogglePanel/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/spacer/pom.xml
===================================================================
--- trunk/ui/spacer/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/spacer/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/state/pom.xml
===================================================================
--- trunk/ui/state/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/state/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -1,43 +1,43 @@
-<?xml version="1.0"?><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>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>state</artifactId>
- <name>state</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>state</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<?xml version="1.0"?><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>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA5</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>state</artifactId>
+ <name>state</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA5</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>state</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA5</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/suggestionbox/pom.xml
===================================================================
--- trunk/ui/suggestionbox/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/suggestionbox/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/tabPanel/pom.xml
===================================================================
--- trunk/ui/tabPanel/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/tabPanel/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/togglePanel/pom.xml
===================================================================
--- trunk/ui/togglePanel/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/togglePanel/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/toolBar/pom.xml
===================================================================
--- trunk/ui/toolBar/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/toolBar/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/tooltip/pom.xml
===================================================================
--- trunk/ui/tooltip/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/tooltip/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/tree/pom.xml
===================================================================
--- trunk/ui/tree/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/tree/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/treeModel/pom.xml
===================================================================
--- trunk/ui/treeModel/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/treeModel/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA5/ui/treeTable/pom.xml
===================================================================
--- trunk/ui/treeTable/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/treeTable/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA5/ui/virtualEarth/pom.xml
===================================================================
--- trunk/ui/virtualEarth/pom.xml 2009-04-17 10:51:59 UTC (rev 13624)
+++ tags/3.3.1.BETA5/ui/virtualEarth/pom.xml 2009-04-17 16:37:53 UTC (rev 13647)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA5</version>
<executions>
<execution>
<phase>generate-sources</phase>
17 years
JBoss Rich Faces SVN: r13646 - trunk/docs/realworld_app_guide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2009-04-17 12:14:20 -0400 (Fri, 17 Apr 2009)
New Revision: 13646
Modified:
trunk/docs/realworld_app_guide/en/src/main/docbook/modules/getting_started.xml
Log:
https://jira.jboss.org/jira/browse/RF-5768 syntax errors are fixed in xml files
Modified: trunk/docs/realworld_app_guide/en/src/main/docbook/modules/getting_started.xml
===================================================================
--- trunk/docs/realworld_app_guide/en/src/main/docbook/modules/getting_started.xml 2009-04-17 16:03:41 UTC (rev 13645)
+++ trunk/docs/realworld_app_guide/en/src/main/docbook/modules/getting_started.xml 2009-04-17 16:14:20 UTC (rev 13646)
@@ -32,8 +32,12 @@
<para>Do the following steps for downloading and installing the Real World demo.</para>
<itemizedlist>
- <listitem><para><literallayout><emphasis>Checkout the project using installed SVN client</emphasis>.
- URL of repository: <code>https://svn.jboss.org/repos/richfaces/trunk/test-applications/realworld/</code></literallayout></para></listitem>.
+ <listitem>
+ <para>
+ <emphasis>Checkout the project using installed SVN client:</emphasis>.
+ <ulink url="https://svn.jboss.org/repos/richfaces/trunk/test-applications/realworld/">https://svn.jboss.org/repos/richfaces/trunk/test-applications/realworld/</ulink>
+ </para>
+ </listitem>
<listitem><para><emphasis>Build the project</emphasis>. Open command line, point to the folder with checkouted project and tell Maven: <code>mvn clean install eclipse:eclipse</code>.</para></listitem>
<listitem><para><emphasis>Import the project into your IDE</emphasis>. Steps to do for JBDS users: click <code>File</code> -> <code>Import</code> and select <code>Existing project into Workspace</code> as import source; in <code>Import Project</code> window click <code>Browse</code> button and point to the realworld project folder; сlick <code>OK</code>. Three SNAPSHOTS (ear, ejb, web) should appear in <code>Projects</code> area. Checkmark them all and click <code>Finish</code>. These projects should appear in JBDS <code>Package Explorer</code> window.</para></listitem>
<listitem><para><emphasis>Register the pass to project images</emphasis>. Open project <code>web.xml</code> file (<code>realworld-web-1.0-SNAPSHOT/src/main/webapp/WEB-INF/web.xml</code>) and change <code>uploadRoot</code> parameter value from <code>E:/Andrey/Upload/</code> to yours e.g. <code>D:/realworld/Upload/</code>.</para></listitem>
17 years
JBoss Rich Faces SVN: r13645 - trunk/docs/userguide/en/src/main/docbook/modules.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2009-04-17 12:03:41 -0400 (Fri, 17 Apr 2009)
New Revision: 13645
Modified:
trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml
trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
Log:
https://jira.jboss.org/jira/browse/RF-6023 Demonstrative pronouns as links, some pronouns are replaced with more meaningful phrases
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml 2009-04-17 15:59:04 UTC (rev 13644)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCSettings.xml 2009-04-17 16:03:41 UTC (rev 13645)
@@ -31,9 +31,9 @@
</simplelist>
<para> Additional information how to get <code> ViewExpiredExceptions </code>
when using <property>RichFaces</property> with <property>JSF
- 1.2_12</property> you can find <ulink
+ 1.2_12</property> you can find in <ulink
url="http://wiki.jboss.org/auth/wiki//RichFacesCookbook/ViewExpiredException"
- >here</ulink>. </para>
+ >RichFaces Cookbook article</ulink>. </para>
</section>
<section id="ApacheMyFaces">
<?dbhtml filename="ApacheMyFaces.html"?>
@@ -253,9 +253,9 @@
<para> Only one issue still persists while using <property>Seam</property> with
MyFaces. Look at myFaces part of this section. </para>
<para>Detailed information on how to integrate Richfaces and Trinidad and how to
- hide ".seam" postfix in the URL you can find <ulink
+ hide ".seam" postfix in the URL you can find in the <ulink
url="http://wiki.jboss.org/auth/wiki/RichFacesWithTrinidad"
- >here</ulink></para>
+ >RichFaces Cookbook article</ulink></para>
</section>
<section id="PortletSupport">
<title>Portlet Support</title>
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-04-17 15:59:04 UTC (rev 13644)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-04-17 16:03:41 UTC (rev 13645)
@@ -1012,9 +1012,9 @@
</emphasis> .Thus, the <emphasis role="bold">
<property><a4j:support></property>
</emphasis> component is shared between two components from different regions. </para>
- <para> More information could be found <ulink
+ <para> More information could be found on the<ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/status.jsf?c=status">
- here </ulink> . </para>
+ RichFaces Live Demo</ulink> . </para>
<para> Other useful attribute is <emphasis>
<property>"focus"</property>
</emphasis> . It points to an ID of a component where focus will be set after an
@@ -3114,7 +3114,7 @@
controls to be skinned automatically and perform the skinnability implementation
yourself, you might encounter with a problem, namely standard HTML controls in such
browsers as Opera and Safari will be affected by standard controls skinning. (
- <link linkend="ScriptsandStylesLoadStrategy">Here</link> you can get more
+ <link linkend="ScriptsandStylesLoadStrategy">In this section</link> you can get more
details on how to disable skinnability.) </para>
<para> In brief, to disable the skinnability mechanism of RichFaces you need to set the
"org.richfaces.LoadStyleStrategy" parameter to "NONE" in the
@@ -3221,8 +3221,8 @@
step by step instructions. </para>
<para> First of all, you need to create a template for the new skin. Creation of the
template can be performed using Maven build and deployment tool. More information on
- how to configure Maven for RichFaces <ulink
- url="http://wiki.jboss.org/wiki/HowToConfigureMavenForRichFaces"> here </ulink>
+ how to configure Maven for RichFaces you can find out from<ulink
+ url="http://wiki.jboss.org/wiki/HowToConfigureMavenForRichFaces"> JBoss wiki article </ulink>
. You can copy and paste these Maven instructions to command line and execute them. </para>
<programlisting role="XML"><![CDATA[...
mvn archetype:create
@@ -3762,9 +3762,9 @@
...]]></programlisting>
</listitem>
</itemizedlist>
- <para> To get full <property>Login/Register dialog</property> example, please, click <ulink
+ <para> To get full <property>Login/Register dialog</property> example, please, have a look at <ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/stateAPI.jsf?c=stateAPI"
- >here</ulink>. </para>
+ >RichFaces Live Demo</ulink>. </para>
</section>
<section>
Modified: trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2009-04-17 15:59:04 UTC (rev 13644)
+++ trunk/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2009-04-17 16:03:41 UTC (rev 13645)
@@ -11,9 +11,9 @@
<section>
<?dbhtml filename="Wherearebinary/sourcedistributionforRichFacesrelease.html"?>
<title>Where are binary/source distribution for RichFaces 3.1.0 release?</title>
- <para> Most important links for RichFaces can be found <ulink
- url="http://jboss.com/index.html?module=bb&op=viewtopic&t=104575"
- >here</ulink>.</para>
+ <para> Most important links for RichFaces can be found on <ulink
+ url="http://www.jboss.org/index.html?module=bb&op=viewtopic&t=104575"
+ >RichFaces project page</ulink>.</para>
</section>
<section>
@@ -27,32 +27,32 @@
<section>
<?dbhtml filename="WhatstructureofRichFacesSVNrepositoryis.html"?>
<title>What is the structure of RichFaces SVN repository?</title>
- <para>RichFaces repository structure overview can be found <ulink
+ <para>RichFaces repository structure overview can be found in the wiki article<ulink
url="http://labs.jboss.com/wiki/RichFacesRepositoryStructureOverview"
- >here</ulink>.</para>
+ >RichFaces Repository Structure Overview"</ulink>.</para>
</section>
<section>
<?dbhtml filename="Howtobuildrichfaces-samplesapplications.html"?>
<title>How to build richfaces-samples applications?</title>
<para>How to build and how to use richfaces-samples applications in Eclipse is
- described <ulink
+ described in the wiki article<ulink
url="http://labs.jboss.com/wiki/RichFacesRepositoryStructureOverview"
- >here</ulink>.</para>
+ >RichFaces Repository Structure Overview"</ulink>.</para>
</section>
<section>
<?dbhtml filename="IstheredemoforRichFacescomponents.html"?>
<title>Where could I find a demo for RichFaces 3.1.0 components?</title>
<para>Online demo Web applications that show the most important functionality of
- RichFaces components are available <ulink
- url="http://livedemo.exadel.com/richfaces-demo/">here</ulink>.</para>
- <para>War file of a nightly build can be found <ulink
- url="http://maven.exadel.com/org/richfaces/samples/richfaces-demo/3.1.0-SNAPSHOT/"
- >here</ulink>.</para>
- <para>Source Code (SVN) can be found <ulink
+ RichFaces components are available on<ulink
+ url="http://livedemo.exadel.com/richfaces-demo/">RichFaces Live Demo</ulink>.</para>
+ <para>War file of a nightly build can be found on the <ulink
+ url="http://snapshots.jboss.org/maven2/org/richfaces/ui/richfaces-ui/3.3.0-SNA..."
+ >Snapshots repository</ulink>.</para>
+ <para>Source Code (SVN) can be found in<ulink
url="http://anonsvn.jboss.org/repos/richfaces/trunk/samples/richfaces-demo/"
- >here</ulink>.</para>
+ >repository</ulink>.</para>
<para>See also <ulink
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&t=113454"
>how to prevent richfaces-demo deployment failed</ulink>.</para>
@@ -61,15 +61,15 @@
<section>
<?dbhtml filename="HowtouseSkinnability.html"?>
<title>How to use Skinnability?</title>
- <para><ulink
+ <para>Here is an <ulink
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&t=111143"
- >Here</ulink> is an article that explains the Skinnability basics.</para>
+ >article</ulink> that explains the Skinnability basics.</para>
<para> For information you can also see discussion about this problem on the <ulink
url="http://www.jboss.com/index.html?module=bb&op=viewtopic&t=103772"
>RichFaces Users Forum</ulink></para>
<para>Also, the effect of predefined skins on the application whole look-and-feel
- could be seen <ulink url="http://livedemo.exadel.com/richfaces-demo/"
- >here</ulink>.</para>
+ could be seen on <ulink url="http://livedemo.exadel.com/richfaces-demo/"
+ >RichFaces Live Demo page</ulink>.</para>
</section>
<section>
@@ -95,9 +95,9 @@
<para>Source code (SVN) could be found <ulink
url="http://anonsvn.jboss.org/repos/richfaces/trunk/samples/richfaces-art-data..."
>here</ulink>.</para>
- <para> Online demo for a Web application is available <ulink
+ <para> Online demo for a Web application is available on <ulink
url=" http://livedemo.exadel.com/richfaces-art-datatable/"
- >here</ulink>.</para>
+ >RichFaces Live Demo page</ulink>.</para>
</section>
<section id="Organizewizards">
@@ -175,9 +175,9 @@
<title>Why when I use suggestionBox inside the modalPanel content the popup
suggestion list doesn't show since it is behind the modalPanel.</title>
<para>To solve this problem you should use the latest versions of RichFaces.</para>
- <para> Most important links for RichFaces can be found <ulink
+ <para> Most important links for RichFaces can be found on <ulink
url="http://jboss.com/index.html?module=bb&op=viewtopic&t=104575"
- >here</ulink>.</para>
+ >RichFaces project page</ulink>.</para>
</section>
@@ -261,9 +261,9 @@
...
]]></programlisting>
<para>Also online demo <emphasis role="bold"
- ><rich:dropDownMenu></emphasis> component is available <ulink
+ ><rich:dropDownMenu></emphasis> component is available on<ulink
url="http://livedemo.exadel.com/richfaces-demo/richfaces/dropDownMenu.jsf"
- >here</ulink>.</para>
+ >RichFaces Live Demo page</ulink>.</para>
</section>
<section>
17 years
JBoss Rich Faces SVN: r13644 - in trunk/test-applications/realworld2/web/src/main: webapp and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2009-04-17 11:59:04 -0400 (Fri, 17 Apr 2009)
New Revision: 13644
Added:
trunk/test-applications/realworld2/web/src/main/webapp/includes/register.xhtml
Removed:
trunk/test-applications/realworld2/web/src/main/webapp/register.xhtml
Modified:
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java
trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml
trunk/test-applications/realworld2/web/src/main/webapp/includes/index/header.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/index/login.xhtml
Log:
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java 2009-04-17 15:58:55 UTC (rev 13643)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java 2009-04-17 15:59:04 UTC (rev 13644)
@@ -107,10 +107,9 @@
}
}
- @End
- public String register(User user){
+ public void register(User user){
if(checkPassword(user) || checkUserExist(user)){
- return "";
+ return;
}
user.setPasswordHash(hash(user.getPassword()));
user.setPreDefined(false);
@@ -118,21 +117,19 @@
userAction.register(user);
}
catch(Exception e){
- return "";
+ return;
}
- return Constants.INDEX_OUTCOME;
+ credentials.setPassword(user.getPassword());
+ credentials.setUsername(user.getLogin());
+ login();
+
}
- @End
- public String goToIndex(){
- return Constants.INDEX_OUTCOME;
- }
-
- public String goToRegister(){
- identity.unAuthenticate();
- Contexts.getSessionContext().set("user", new User());
+ public void goToRegister(){
+ Contexts.getSessionContext().set("user", new User());
+ Contexts.getConversationContext().set("avatarUpload", null);
setLoginFailed(false);
- return Constants.REGISTER_OUTCOME;
+ Events.instance().raiseEvent(Constants.START_REGISTER_EVENT);
}
private boolean checkUserExist(User user) {
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java 2009-04-17 15:58:55 UTC (rev 13643)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java 2009-04-17 15:59:04 UTC (rev 13644)
@@ -239,6 +239,15 @@
pushEvent(Constants.ADD_ERROR_EVENT, error);
}
+ @Observer(Constants.START_REGISTER_EVENT)
+ public void startRegistration(){
+ model.resetModel(NavigationEnum.REGISTER, user, null, null, null, null);
+ }
+
+ public void cancelRegistration(){
+ model.resetModel(NavigationEnum.ANONYM, user, null, null, null, null);
+ }
+
public Integer getPage(){
Integer index = model.getSelectedAlbum().getIndex(model.getSelectedImage());
return index/5 + 1;
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java 2009-04-17 15:58:55 UTC (rev 13643)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java 2009-04-17 15:59:04 UTC (rev 13644)
@@ -24,6 +24,7 @@
ANONYM("includes/publicShelves.xhtml"),
FILE_UPLOAD("includes/fileUpload.xhtml"),
USER_PREFS("includes/userPrefs.xhtml"),
+ REGISTER("includes/register.xhtml"),
SEARCH("includes/search.xhtml"),
ALBUM_PREVIEW("includes/album.xhtml"),
ALBUM_IMAGE_PREVIEW("/includes/image.xhtml"),
Modified: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml 2009-04-17 15:58:55 UTC (rev 13643)
+++ trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/pages.xml 2009-04-17 15:59:04 UTC (rev 13644)
@@ -2,17 +2,6 @@
<pages xmlns="http://jboss.com/products/seam/pages"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://jboss.com/products/seam/pages http://jboss.com/products/seam/pages-2.1.xsd">
-
- <page view-id="*">
- <navigation>
- <rule if-outcome="register">
- <redirect view-id="/register.xhtml"/>
- </rule>
- <rule if-outcome="index">
- <redirect view-id="/index.html"/>
- </rule>
- </navigation>
- </page>
<page view-id="/index.xhtml">
<begin-conversation if="#{!identity.isLoggedIn()}"/>
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/index/header.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/index/login.xhtml
===================================================================
(Binary files differ)
Added: trunk/test-applications/realworld2/web/src/main/webapp/includes/register.xhtml
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld2/web/src/main/webapp/includes/register.xhtml
___________________________________________________________________
Name: svn:mime-type
+ application/xhtml+xml
Deleted: trunk/test-applications/realworld2/web/src/main/webapp/register.xhtml
===================================================================
(Binary files differ)
17 years
JBoss Rich Faces SVN: r13643 - trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2009-04-17 11:58:55 -0400 (Fri, 17 Apr 2009)
New Revision: 13643
Modified:
trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java
Log:
Modified: trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java
===================================================================
--- trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java 2009-04-17 15:28:26 UTC (rev 13642)
+++ trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java 2009-04-17 15:58:55 UTC (rev 13643)
@@ -34,7 +34,7 @@
public static final String ALBUM_EDITED_EVENT = "albumEdited";
public static final String UPDATE_MAIN_AREA_EVENT = "updateMainArea";
public static final String CLEAR_EDITOR_EVENT = "clearEditor";
- //public static final String CLEAR_TREE_EVENT = "clearTree";
+ public static final String START_REGISTER_EVENT = "startRegisterEvent";
public static final String ALBUM_ADDED_EVENT = "albumAdded";
public static final String IMAGE_DRAGGED_EVENT = "imageDraggedEvent";
public static final String ALBUM_DRAGGED_EVENT = "albumDraggedEvent";
17 years