JBoss Rich Faces SVN: r16453 - branches/community/3.3.X/samples/richfaces-demo/functional-test.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-02-15 05:44:15 -0500 (Mon, 15 Feb 2010)
New Revision: 16453
Modified:
branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml
Log:
- rf-demo ftest - pom.xml - overwriting of snapshot/release dependencies (fixed)
Modified: branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml 2010-02-15 10:24:05 UTC (rev 16452)
+++ branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml 2010-02-15 10:44:15 UTC (rev 16453)
@@ -368,12 +368,12 @@
<classifier>${demo.classifier}</classifier>
<type>war</type>
<overWrite>true</overWrite>
- <overWriteReleases>true</overWriteReleases>
- <overWriteSnapshots>true</overWriteSnapshots>
<outputDirectory>${demo.deployable.directory}</outputDirectory>
<destFileName>${demo.deployable.file}</destFileName>
</artifactItem>
</artifactItems>
+ <overWriteReleases>true</overWriteReleases>
+ <overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
15 years, 7 months
JBoss Rich Faces SVN: r16452 - branches/community/3.3.X/samples/richfaces-demo/functional-test.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-02-15 05:24:05 -0500 (Mon, 15 Feb 2010)
New Revision: 16452
Modified:
branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml
Log:
- rf-demo ftest - pom.xml - overwriting of snapshot/release dependencies
Modified: branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml 2010-02-15 05:16:55 UTC (rev 16451)
+++ branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml 2010-02-15 10:24:05 UTC (rev 16452)
@@ -368,6 +368,8 @@
<classifier>${demo.classifier}</classifier>
<type>war</type>
<overWrite>true</overWrite>
+ <overWriteReleases>true</overWriteReleases>
+ <overWriteSnapshots>true</overWriteSnapshots>
<outputDirectory>${demo.deployable.directory}</outputDirectory>
<destFileName>${demo.deployable.file}</destFileName>
</artifactItem>
15 years, 7 months
JBoss Rich Faces SVN: r16451 - root/docs/trunk/Developer_Guide/en-US/extras.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-02-15 00:16:55 -0500 (Mon, 15 Feb 2010)
New Revision: 16451
Added:
root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_filter.xml_sample
root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_request_error.js
root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_session_expiration_error.js
root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-User_role_example-0.xml_sample
root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-User_role_example-1.xml_sample
Log:
Added missing samples
Added: root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_filter.xml_sample
===================================================================
--- root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_filter.xml_sample (rev 0)
+++ root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_filter.xml_sample 2010-02-15 05:16:55 UTC (rev 16451)
@@ -0,0 +1,5 @@
+<filter>
+ <display-name>RichFaces Filter</display-name>
+ <filter-name>richfaces</filter-name>
+ <filter-class>org.ajax4jsf.Filter</filter-class>
+</filter>
Added: root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_request_error.js
===================================================================
--- root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_request_error.js (rev 0)
+++ root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_request_error.js 2010-02-15 05:16:55 UTC (rev 16451)
@@ -0,0 +1,3 @@
+A4J.AJAX.onError = function(req, status, message){
+ window.alert("Custom onError handler "+message);
+}
Added: root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_session_expiration_error.js
===================================================================
--- root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_session_expiration_error.js (rev 0)
+++ root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-Example_session_expiration_error.js 2010-02-15 05:16:55 UTC (rev 16451)
@@ -0,0 +1,7 @@
+A4J.AJAX.onExpired = function(loc, expiredMsg){
+ if(window.confirm("Custom onExpired handler "+expiredMsg+" for a location: "+loc)){
+ return loc;
+ } else {
+ return false;
+ }
+}
Added: root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-User_role_example-0.xml_sample
===================================================================
--- root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-User_role_example-0.xml_sample (rev 0)
+++ root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-User_role_example-0.xml_sample 2010-02-15 05:16:55 UTC (rev 16451)
@@ -0,0 +1,3 @@
+<security-role>
+ <role-name>admin</role-name>
+</security-role>
Added: root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-User_role_example-1.xml_sample
===================================================================
--- root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-User_role_example-1.xml_sample (rev 0)
+++ root/docs/trunk/Developer_Guide/en-US/extras/exam-Developer_Guide-Advanced_features-User_role_example-1.xml_sample 2010-02-15 05:16:55 UTC (rev 16451)
@@ -0,0 +1 @@
+<rich:editor value="#{bean.text}" rendered="#{rich:isUserInRole('admin')}" />
15 years, 7 months
JBoss Rich Faces SVN: r16450 - in root/docs/trunk/Developer_Guide: en-US and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-02-14 23:02:44 -0500 (Sun, 14 Feb 2010)
New Revision: 16450
Modified:
root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Advanced_features.xml
root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Basic_concepts.xml
root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Getting_started_with_RichFaces.xml
root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-RichFaces_overview.xml
root/docs/trunk/Developer_Guide/pom.xml
Log:
Fixed code rendering errors
Modified: root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Advanced_features.xml
===================================================================
--- root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Advanced_features.xml 2010-02-14 18:06:20 UTC (rev 16449)
+++ root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Advanced_features.xml 2010-02-15 04:02:44 UTC (rev 16450)
@@ -40,19 +40,11 @@
RichFaces uses a filter to correct the code received on an Ajax request. During a regular JSF request, a browser makes corrections independently. For Ajax requests, a filter is needed to prevent layout destruction. This is because a received code could differ from a code validated by a browser, and a browser does not make any corrections. Refer to <xref linkend="sect-Developer_Guide-Architecture-Ajax_Filter" /> for further details on how the Ajax filter works.
</para>
<para>
- <xref linkend="exam-Developer_guide-Advanced_features-Example_filter" /> shows how to set a filter in the <filename>web.xml</filename> file of an application.
+ <xref linkend="exam-Developer_Guide-Advanced_features-Example_filter" /> shows how to set a filter in the <filename>web.xml</filename> file of an application.
</para>
- <example id="exam-Developer_guide-Advanced_features-Example_filter">
+ <example id="exam-Developer_Guide-Advanced_features-Example_filter">
<title>Example filter</title>
-<programlisting language="XML" role="XML">
-...
-<filter>
- <display-name>RichFaces Filter</display-name>
- <filter-name>richfaces</filter-name>
- <filter-class>org.ajax4jsf.Filter</filter-class>
-</filter>
-...
-</programlisting>
+<programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Developer_Guide-Advanced_features-Example_filter.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
</example>
<para>
Different types of filters can be configured for pages in the same application. There are three filter types:
@@ -88,9 +80,7 @@
</para>
<example id="exam-Developer_Guide-Advanced_features-Example_filter_configuration">
<title>Example filter configuration</title>
-<programlisting language="XML" role="XML">
-<xi:include parse="text" href="extras/exam-Developer_Guide-Advanced_features-Example_filter_configuration.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</programlisting>
+<programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Developer_Guide-Advanced_features-Example_filter_configuration.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
</example>
<para>
The <parameter>ORDER</parameter> parameter specifies the order in which particular filter types are used for code correction: first <literal>NONE</literal>, then <literal>NEKO</literal>, then <literal>TIDY</literal>. Two sets of pages are specified as using specific filter types:
@@ -120,19 +110,16 @@
<para>
Scripts and styles are normally loaded into a RichFaces application on demand. The default loading strategy can be altered to suit certain applications by specifying the strategy in the <filename>web.xml</filename> file.
</para>
- <formalpara>
+ <section>
<title><code>org.richfaces.LoadScriptStrategy</code></title>
<para>
The script-loading strategy is specified as follows:
-<programlisting language="XML" role="XML">
-...
-<context-param>
+ </para>
+<programlisting language="XML" role="XML"><context-param>
<param-name>org.richfaces.LoadScriptStrategy</param-name>
<param-value>ALL</param-value>
</context-param>
-...
</programlisting>
- </para>
<para>
The <sgmltag><param-value></sgmltag> element can be set to one of three values:
<variablelist>
@@ -168,20 +155,17 @@
</varlistentry>
</variablelist>
</para>
- </formalpara>
- <formalpara>
+ </section>
+ <section>
<title><code>org.richfaces.LoadStyleStrategy</code></title>
<para>
The style-loading strategy is specified as follows:
-<programlisting language="XML" role="XML">
-...
-<context-param>
+ </para>
+<programlisting language="XML" role="XML"><context-param>
<param-name>org.richfaces.LoadStyleStrategy</param-name>
<param-value>ALL</param-value>
</context-param>
-...
</programlisting>
- </para>
<para>
The <sgmltag><param-value></sgmltag> element can be set to one of three values:
<variablelist>
@@ -211,7 +195,7 @@
</varlistentry>
</variablelist>
</para>
- </formalpara>
+ </section>
</section>
<section id="sect-Developer_Guide-Advanced_features-Error_handling">
@@ -221,25 +205,22 @@
</para>
<para>
To define handlers for application exceptions, add the following code to your <filename>web.xml</filename> file:
-<programlisting language="XML" role="XML">
-<context-param>
+ </para>
+<programlisting language="XML" role="XML"><context-param>
<param-name>org.ajax4jsf.handleViewExpiredOnClient</param-name>
<param-value>true</param-value>
</context-param>
</programlisting>
- </para>
<section id="sect-Developer_Guide-Advanced_features-Handling_request_errors">
<title>Handling request errors</title>
<para>
To execute custom JavaScript code on the client when an error occurs during an Ajax request, redefine the standard <methodname>A4J.AJAX.onError</methodname> method, as shown in <xref linkend="exam-Developer_Guide-Advanced_features-Example_request_error" />.
- <example id="exam-Developer_Guide-Advanced_features-Example_request_error">
- <title>Example request error</title>
-<programlisting language="Java" role="JAVA">
-A4J.AJAX.onError = function(req, status, message){
- window.alert("Custom onError handler "+message);
-}
-</programlisting>
- </example>
+ </para>
+ <example id="exam-Developer_Guide-Advanced_features-Example_request_error">
+ <title>Example request error</title>
+<programlisting language="Java" role="JAVA"><xi:include parse="text" href="extras/exam-Developer_Guide-Advanced_features-Example_request_error.js" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </example>
+ <para>
The function accepts three parameters:
<variablelist>
<varlistentry>
@@ -273,18 +254,13 @@
<title>Handling session expiration errors</title>
<para>
Redefine the <methodname>A4J.AJAX.onExpired</methodname> method to handle the expiration of a user's session, as shown in <xref linkend="exam-Developer_Guide-Advanced_features-Example_session_expiration_error" />.
- <example id="exam-Developer_Guide-Advanced_features-Example_session_expiration_error">
- <title>Example session expiration error</title>
-<programlisting language="Java" role="JAVA">
-A4J.AJAX.onExpired = function(loc, expiredMsg){
- if(window.confirm("Custom onExpired handler "+expiredMsg+" for a location: "+loc)){
- return loc;
- } else {
- return false;
- }
-}
+ </para>
+ <example id="exam-Developer_Guide-Advanced_features-Example_session_expiration_error">
+ <title>Example session expiration error</title>
+<programlisting language="Java" role="JAVA"><xi:include parse="text" href="extras/exam-Developer_Guide-Advanced_features-Example_session_expiration_error.js" xmlns:xi="http://www.w3.org/2001/XInclude" />
</programlisting>
- </example>
+ </example>
+ <para>
The function accepts two parameters:
<variablelist>
<varlistentry>
@@ -310,13 +286,12 @@
<title>MyFaces compatibility</title>
<para>
Custom error handlers for the <methodname>onError</methodname> and <methodname>onExpire</methodname> events do not work under MyFaces. MyFaces handles exceptions through its internal debug page. Use the following code in the <filename>web.xml</filename> file to prevent this behavior in MyFaces:
-<programlisting language="XML" role="XML">
-<context-param>
+ </para>
+<programlisting language="XML" role="XML"><context-param>
<param-name>org.apache.myfaces.ERROR_HANDLING</param-name>
<param-value>false</param-value>
</context-param>
</programlisting>
- </para>
</note>
</section>
@@ -325,6 +300,9 @@
<para>
JavaServer Faces (<acronym>JSF</acronym>) has an advanced navigation mechanism that allows you to define navigation from one view to another. Navigation typically happens in a web application when a user moves from one page to another, but there is no switch mechanism between certain logical states in the same view. The RichFaces State API allows sets of states to be defined for the views, as well as any properties associated with these states.
</para>
+ <para>
+ Actually States is a map where the entry key is a name of the State and the value is a State map. Particular State map has entries with some names as keys and any objects as values that are used after the state activation. Thus, in the State map you could define any values, method bindings, or just some simple state variables (constants) which have different values for every State.
+ </para>
</section>
<section id="sect-Developer_Guide-Advanced_features-User_roles">
@@ -336,35 +314,29 @@
<title>User role example</title>
<para>
Certain controls only need to be rendered for administrators.
- <procedure>
- <step>
- <title>Create <literal>admin</literal> role</title>
- <para>
- Create the <literal>admin</literal> role in the <filename>web.xml</filename> file:
-<programlisting language="XML" role="XML">
-<security-role>
- <role-name>admin</role-name>
-</security-role>
-</programlisting>
- </para>
- </step>
- <step>
- <title>Implement authorization for users</title>
- <para>
- Assign the <literal>admin</literal> role to users when they log in to the application as administrators.
- </para>
- </step>
- <step>
- <title>Use the <function>rich:isUserInRole(Object)</function> function</title>
- <para>
- The <function>rich:isUserInRole(Object)</function> function can be used with the <varname>rendered</varname> attribute of any component:
-<programlisting language="XML" role="XML">
-<rich:editor value="#{bean.text}" rendered="#{rich:isUserInRole('admin')}" />
-</programlisting>
- </para>
- </step>
- </procedure>
</para>
+ <procedure>
+ <step>
+ <title>Create <literal>admin</literal> role</title>
+ <para>
+ Create the <literal>admin</literal> role in the <filename>web.xml</filename> file:
+ </para>
+<programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Developer_Guide-Advanced_features-User_role_example-0.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </step>
+ <step>
+ <title>Implement authorization for users</title>
+ <para>
+ Assign the <literal>admin</literal> role to users when they log in to the application as administrators.
+ </para>
+ </step>
+ <step>
+ <title>Use the <function>rich:isUserInRole(Object)</function> function</title>
+ <para>
+ The <function>rich:isUserInRole(Object)</function> function can be used with the <varname>rendered</varname> attribute of any component:
+ </para>
+<programlisting language="XML" role="XML"><xi:include parse="text" href="extras/exam-Developer_Guide-Advanced_features-User_role_example-1.xml_sample" xmlns:xi="http://www.w3.org/2001/XInclude" /></programlisting>
+ </step>
+ </procedure>
</example>
</section>
Modified: root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Basic_concepts.xml
===================================================================
--- root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Basic_concepts.xml 2010-02-14 18:06:20 UTC (rev 16449)
+++ root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Basic_concepts.xml 2010-02-15 04:02:44 UTC (rev 16450)
@@ -29,7 +29,7 @@
</listitem>
<listitem>
<para>
- Most components in the <lassname>rich</lassname> tag library have built-in Ajax support. Refer to the <citetitle>RichFaces Component Reference</citetitle> for details on the use of each component.
+ Most components in the <classname>rich</classname> tag library have built-in Ajax support. Refer to the <citetitle>RichFaces Component Reference</citetitle> for details on the use of each component.
</para>
</listitem>
</itemizedlist>
Modified: root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Getting_started_with_RichFaces.xml
===================================================================
--- root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Getting_started_with_RichFaces.xml 2010-02-14 18:06:20 UTC (rev 16449)
+++ root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-Getting_started_with_RichFaces.xml 2010-02-15 04:02:44 UTC (rev 16450)
@@ -265,32 +265,15 @@
<step id="step-Developer_Guide-Creating_a_project-Reference_the_tag_libraries">
<title>Reference the tag libraries</title>
<para>
- The RichFaces tag libraries need to be referenced on each JSP and XHTML page in your project.
+ The RichFaces tag libraries need to be referenced on each XHTML page in your project:
</para>
- <variablelist>
- <varlistentry>
- <term>Referencing in JSP pages</term>
- <listitem>
-
-<programlisting language="XML" role="XML"><%@ taglib uri="http://richfaces.org/a4j" prefix="a4j"%>
-<%@ taglib uri="http://richfaces.org/rich" prefix="rich"%>
-</programlisting>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>Referencing in XHTML pages</term>
- <listitem>
-
<programlisting language="XML" role="XML"><ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
- ...
+ ...
</ui:composition>
</programlisting>
- </listitem>
- </varlistentry>
- </variablelist>
</step>
</procedure>
@@ -308,50 +291,50 @@
<step id="step-Developer_Guide-Using_RichFaces_with_Maven-Add_required_repositories">
<title>Add required repositories</title>
<para>
- A structure for the Maven project with minimal content can be created with the Maven archetype named <filename>maven-archetype-jsfwebapp</filename> included as part of the RichFaces Component Development Kit (<acronym>CDK</acronym>). The archetype and the project itself require extra repositories to be provided, namely <filename>http://snapshots.jboss.org/maven2/</filename> and <filename>http://repository.jboss.com/maven2/</filename>. To make the repositories accessible to Maven, add a profile in the <filename>maven_installation_folder/conf/settings.xml</filename> file under the <sgmltag><profiles></sgmltag> element:
+ A structure for the Maven project with minimal content can be created with the Maven archetype named <filename>maven-archetype-jsfwebapp</filename> included as part of the RichFaces Component Development Kit (<acronym>CDK</acronym>). The archetype and the project itself require extra repositories to be provided, namely <filename>http://snapshots.jboss.org/maven2/</filename> and <filename>http://repository.jboss.com/maven2/</filename>. To make the repositories accessible to Maven, add a profile in the <filename>maven_installation_folder/conf/settings.xml</filename> file under the <sgmltag><profiles></sgmltag> element:
+ </para>
<programlisting language="XML" role="XML"><profiles>
- <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>
- ...
+ <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>
+ ...
</profiles>
</programlisting>
- </para>
<para>
- The profile then needs to be activated in the <sgmltag><activeProfiles></sgmltag> element:
+ The profile then needs to be activated in the <sgmltag><activeProfiles></sgmltag> element:
+ </para>
<programlisting language="XML" role="XML"><activeProfiles>
<activeProfile>jsf-app-profile</activeProfile>
</activeProfiles>
</programlisting>
- </para>
</step>
<step id="step-Developer_Guide-Using_RichFaces_with_Maven-Generate_project_from_archetype">
<title>Generate project from archetype</title>
@@ -398,9 +381,8 @@
│ ├── WEB-INF
│ │ ├── faces-config.xml
│ │ └── web.xml
- │ ├── index.jsp
+ │ ├── index.xhtml
│ └── pages
- │ ├── index.jsp
│ └── index.xhtml
└── test
└── java
@@ -412,9 +394,10 @@
</para>
</step>
<step>
- <title></title>
+ <title>Add dependencies</title>
<para>
- The <filename>jsf-app</filename> directory contains a project descriptor file, <filename>pom.xml</filename>. To add RichFaces libraries to your project, edit the project descriptor to add dependencies to the <sgmltag><dependencies></sgmltag> element as follows:
+ The <filename>jsf-app</filename> directory contains a project descriptor file, <filename>pom.xml</filename>. To add RichFaces libraries to your project, edit the project descriptor to add dependencies to the <sgmltag><dependencies></sgmltag> element as follows:
+ </para>
<programlisting language="XML" role="XML"><dependencies>
<dependency>
<groupId>junit</groupId>
@@ -490,7 +473,6 @@
</dependency>
</dependencies>
</programlisting>
- </para>
</step>
<step id="step-Developer_Guide-Using_RichFaces_with_Maven-Build_the_project">
<title>Build the project</title>
@@ -505,14 +487,14 @@
</para>
</step>
<step id="step-Developer_Guide-Build_the_project-Building_for_Eclipse_and_JBoss_Tools">
- <title>Building for <program>Eclipse</program> and <program>JBoss Tools</program></title>
+ <title>Building for <application>Eclipse</application> and <application>JBoss Tools</application></title>
<para>
- To build the project for <program>Eclipse</program> and <program>JBoss Tools</program>, enter the following command at the command line:
+ To build the project for <application>Eclipse</application> and <application>JBoss Tools</application>, enter the following command at the command line:
<screen>mvn eclipse:eclipse -Dwtpversion=2.0
</screen>
</para>
<para>
- The <computeroutput>BUILD SUCCESSFUL</computeroutput> message indicates the project has been assembled and is ready to import into <program>Eclipse</program>.
+ The <computeroutput>BUILD SUCCESSFUL</computeroutput> message indicates the project has been assembled and is ready to import into <application>Eclipse</application>.
</para>
</step>
</stepalternatives>
Modified: root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-RichFaces_overview.xml
===================================================================
--- root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-RichFaces_overview.xml 2010-02-14 18:06:20 UTC (rev 16449)
+++ root/docs/trunk/Developer_Guide/en-US/chap-Developer_Guide-RichFaces_overview.xml 2010-02-15 04:02:44 UTC (rev 16450)
@@ -130,8 +130,11 @@
<section id="sect-Developer_Guide-RichFaces_overview-Technologies">
<title>Technologies</title>
<para>
- Incomplete
+ RichFaces originated from the <emphasis>Ajax4jsf</emphasis> project, an open-source web application framework that added Ajax capabilities to the JavaServer Faces (<acronym>JSF</acronym>) framework. The RichFaces components were split into a separate commercial component library, then later both the Ajax4jsf and RichFaces libraries were re-combined under the RichFaces name.
</para>
+ <para>
+ RichFaces 4.0 features full JSF2 integration and uses standard web application technologies such as JavaScript, <acronym>XML</acronym> (Extensible Markup Language), and <acronym>XHTML</acronym> (Extensible Hypertext Markup Language).
+ </para>
</section>
<section id="sect-Developer_Guide-RichFaces_overview-Differences_between_JSF_and_RichFaces_mechanisms">
Modified: root/docs/trunk/Developer_Guide/pom.xml
===================================================================
--- root/docs/trunk/Developer_Guide/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
+++ root/docs/trunk/Developer_Guide/pom.xml 2010-02-15 04:02:44 UTC (rev 16450)
@@ -59,7 +59,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
+ <version>2.2.1</version>
<extensions>true</extensions>
<configuration>
<formats>
@@ -96,7 +96,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
+ <version>2.2.1</version>
<extensions>true</extensions>
<configuration>
<formats>
@@ -123,7 +123,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
+ <version>2.2.1</version>
<extensions>true</extensions>
<configuration>
<formats>
@@ -150,7 +150,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
+ <version>2.2.1</version>
<extensions>true</extensions>
<configuration>
<formats>
@@ -178,7 +178,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
+ <version>2.2.1</version>
<extensions>true</extensions>
<configuration>
<formats>
@@ -217,7 +217,7 @@
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
- <version>2.2.0</version>
+ <version>2.2.1</version>
<extensions>true</extensions>
<dependencies>
<dependency>
15 years, 7 months
JBoss Rich Faces SVN: r16449 - in tags: 3.3.3.CR1 and 222 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-02-14 13:06:20 -0500 (Sun, 14 Feb 2010)
New Revision: 16449
Added:
tags/3.3.3.CR1/
Modified:
tags/3.3.3.CR1/cdk/generator/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-theme/pom.xml
tags/3.3.3.CR1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/cdk/maven-cdk-plugin/pom.xml
tags/3.3.3.CR1/cdk/maven-javascript-plugin/pom.xml
tags/3.3.3.CR1/cdk/maven-resource-dependency-plugin/pom.xml
tags/3.3.3.CR1/cdk/pom.xml
tags/3.3.3.CR1/cdk/richfaces-facelets/pom.xml
tags/3.3.3.CR1/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/docs/cdkguide/en/pom.xml
tags/3.3.3.CR1/docs/cdkguide/pom.xml
tags/3.3.3.CR1/docs/common-resources/en/pom.xml
tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.CR1/docs/common-resources/pom.xml
tags/3.3.3.CR1/docs/faq/en/pom.xml
tags/3.3.3.CR1/docs/faq/pom.xml
tags/3.3.3.CR1/docs/highlight/pom.xml
tags/3.3.3.CR1/docs/migrationguide/en/pom.xml
tags/3.3.3.CR1/docs/migrationguide/pom.xml
tags/3.3.3.CR1/docs/photo_album_app_guide/en/pom.xml
tags/3.3.3.CR1/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml
tags/3.3.3.CR1/docs/photo_album_app_guide/pom.xml
tags/3.3.3.CR1/docs/pom.xml
tags/3.3.3.CR1/docs/userguide/en/pom.xml
tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
tags/3.3.3.CR1/docs/userguide/pom.xml
tags/3.3.3.CR1/examples/photoalbum/assembly/pom.xml
tags/3.3.3.CR1/examples/photoalbum/pom.xml
tags/3.3.3.CR1/examples/photoalbum/source/ear/pom.xml
tags/3.3.3.CR1/examples/photoalbum/source/ejb/pom.xml
tags/3.3.3.CR1/examples/photoalbum/source/pom.xml
tags/3.3.3.CR1/examples/photoalbum/source/web/pom.xml
tags/3.3.3.CR1/examples/photoalbum/tests/pom.xml
tags/3.3.3.CR1/extensions/gwt/pom.xml
tags/3.3.3.CR1/extensions/pom.xml
tags/3.3.3.CR1/extensions/seam/pom.xml
tags/3.3.3.CR1/extensions/trinidad/pom.xml
tags/3.3.3.CR1/framework/api/pom.xml
tags/3.3.3.CR1/framework/impl/pom.xml
tags/3.3.3.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.3.3.CR1/framework/jsf-test/pom.xml
tags/3.3.3.CR1/framework/pom.xml
tags/3.3.3.CR1/framework/test/pom.xml
tags/3.3.3.CR1/pom.xml
tags/3.3.3.CR1/samples/beanValidatorSample/pom.xml
tags/3.3.3.CR1/samples/calendar-sample/pom.xml
tags/3.3.3.CR1/samples/colorPickerDemo/pom.xml
tags/3.3.3.CR1/samples/columnsDemo/pom.xml
tags/3.3.3.CR1/samples/combobox-sample/pom.xml
tags/3.3.3.CR1/samples/contextMenuDemo/pom.xml
tags/3.3.3.CR1/samples/createProject.sh
tags/3.3.3.CR1/samples/darkX/pom.xml
tags/3.3.3.CR1/samples/dataFilterSliderDemo/pom.xml
tags/3.3.3.CR1/samples/dataTableDemo/pom.xml
tags/3.3.3.CR1/samples/datascroller-sample/pom.xml
tags/3.3.3.CR1/samples/dragDropDemo/pom.xml
tags/3.3.3.CR1/samples/dropdownmenu-sample/pom.xml
tags/3.3.3.CR1/samples/editor-sample/pom.xml
tags/3.3.3.CR1/samples/editorSeam-sample/pom.xml
tags/3.3.3.CR1/samples/effect-sample/pom.xml
tags/3.3.3.CR1/samples/extendedDataTable-sample/pom.xml
tags/3.3.3.CR1/samples/fileUploadDemo/pom.xml
tags/3.3.3.CR1/samples/functions-demo/pom.xml
tags/3.3.3.CR1/samples/glassX/pom.xml
tags/3.3.3.CR1/samples/gmap-sample/pom.xml
tags/3.3.3.CR1/samples/hotKey-sample/pom.xml
tags/3.3.3.CR1/samples/inplaceInput-sample/pom.xml
tags/3.3.3.CR1/samples/inplaceSelect-sample/pom.xml
tags/3.3.3.CR1/samples/inputNumberSliderDemo/pom.xml
tags/3.3.3.CR1/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.3.CR1/samples/jQuery-sample/pom.xml
tags/3.3.3.CR1/samples/jira-data/pom.xml
tags/3.3.3.CR1/samples/laguna/pom.xml
tags/3.3.3.CR1/samples/layout-sample/pom.xml
tags/3.3.3.CR1/samples/listShuttleDemo/pom.xml
tags/3.3.3.CR1/samples/local-value-demo/pom.xml
tags/3.3.3.CR1/samples/mediaOutput/pom.xml
tags/3.3.3.CR1/samples/modalpanel-sample/pom.xml
tags/3.3.3.CR1/samples/orderingListDemo/pom.xml
tags/3.3.3.CR1/samples/panel-sample/pom.xml
tags/3.3.3.CR1/samples/panelbar-sample/pom.xml
tags/3.3.3.CR1/samples/panelmenu-sample/pom.xml
tags/3.3.3.CR1/samples/pickList-sample/pom.xml
tags/3.3.3.CR1/samples/pom.xml
tags/3.3.3.CR1/samples/progressBarDemo/pom.xml
tags/3.3.3.CR1/samples/queue-sample/pom.xml
tags/3.3.3.CR1/samples/rich-message-demo/pom.xml
tags/3.3.3.CR1/samples/richfaces-art-datatable/pom.xml
tags/3.3.3.CR1/samples/richfaces-demo/functional-test/pom.xml
tags/3.3.3.CR1/samples/richfaces-demo/pom.xml
tags/3.3.3.CR1/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.3.CR1/samples/richfaces-ear-demo/pom.xml
tags/3.3.3.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.3.CR1/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.3.CR1/samples/scrollableDataTableDemo/pom.xml
tags/3.3.3.CR1/samples/seamEAR/ear/pom.xml
tags/3.3.3.CR1/samples/seamEAR/ejbs/pom.xml
tags/3.3.3.CR1/samples/seamEAR/pom.xml
tags/3.3.3.CR1/samples/seamEAR/primary-source/pom.xml
tags/3.3.3.CR1/samples/seamEAR/projects/logging/pom.xml
tags/3.3.3.CR1/samples/seamEAR/projects/pom.xml
tags/3.3.3.CR1/samples/seamEAR/wars/pom.xml
tags/3.3.3.CR1/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.3.CR1/samples/seamIntegration/pom.xml
tags/3.3.3.CR1/samples/separator-sample/pom.xml
tags/3.3.3.CR1/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.3.CR1/samples/skins/pom.xml
tags/3.3.3.CR1/samples/sortingFilteringDemo/pom.xml
tags/3.3.3.CR1/samples/state-sample/pom.xml
tags/3.3.3.CR1/samples/stdcomponents-sample/pom.xml
tags/3.3.3.CR1/samples/suggestionbox-sample/pom.xml
tags/3.3.3.CR1/samples/tabPanelDemo/pom.xml
tags/3.3.3.CR1/samples/themes/pom.xml
tags/3.3.3.CR1/samples/togglePanel-sample/pom.xml
tags/3.3.3.CR1/samples/tomahawkCompability/pom.xml
tags/3.3.3.CR1/samples/toolBarDemo/pom.xml
tags/3.3.3.CR1/samples/tooltip-sample/pom.xml
tags/3.3.3.CR1/samples/tree-demo/pom.xml
tags/3.3.3.CR1/samples/treeModelDemo/pom.xml
tags/3.3.3.CR1/samples/violetRays/pom.xml
tags/3.3.3.CR1/samples/virtualEarth-sample/pom.xml
tags/3.3.3.CR1/sandbox/api/pom.xml
tags/3.3.3.CR1/sandbox/cdk/pom.xml
tags/3.3.3.CR1/sandbox/impl/pom.xml
tags/3.3.3.CR1/sandbox/pom.xml
tags/3.3.3.CR1/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.3.CR1/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.3.CR1/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.3.CR1/sandbox/samples/maven-rd-plugin-sample/pom.xml
tags/3.3.3.CR1/sandbox/samples/panel2-sample/pom.xml
tags/3.3.3.CR1/sandbox/samples/pom.xml
tags/3.3.3.CR1/sandbox/samples/rex-demo/pom.xml
tags/3.3.3.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.3.CR1/sandbox/ui/create.bat
tags/3.3.3.CR1/sandbox/ui/create.sh
tags/3.3.3.CR1/sandbox/ui/dialog-window/pom.xml
tags/3.3.3.CR1/sandbox/ui/editorOld/pom.xml
tags/3.3.3.CR1/sandbox/ui/panel2/pom.xml
tags/3.3.3.CR1/sandbox/ui/pom.xml
tags/3.3.3.CR1/sandbox/ui/rex-button/pom.xml
tags/3.3.3.CR1/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.3.CR1/sandbox/ui/rex-resizable/pom.xml
tags/3.3.3.CR1/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.3.CR1/sandbox/ui/sortableHeader/pom.xml
tags/3.3.3.CR1/sandbox/ui/treeTable/pom.xml
tags/3.3.3.CR1/test-applications/ajaxTest/pom.xml
tags/3.3.3.CR1/test-applications/automator/pom.xml
tags/3.3.3.CR1/test-applications/facelets/pom.xml
tags/3.3.3.CR1/test-applications/jsp/pom.xml
tags/3.3.3.CR1/test-applications/pom.xml
tags/3.3.3.CR1/test-applications/regression-test/pom.xml
tags/3.3.3.CR1/test-applications/regressionArea/pom.xml
tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-tests/pom.xml
tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.3.CR1/test-applications/richfaces-docs/pom.xml
tags/3.3.3.CR1/test-applications/seamApp/pom.xml
tags/3.3.3.CR1/test-applications/seleniumTest/pom.xml
tags/3.3.3.CR1/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.3.CR1/test-applications/seleniumTest/samples/pom.xml
tags/3.3.3.CR1/test-applications/test-jsp/pom.xml
tags/3.3.3.CR1/ui/assembly/pom.xml
tags/3.3.3.CR1/ui/beanValidator/pom.xml
tags/3.3.3.CR1/ui/calendar/pom.xml
tags/3.3.3.CR1/ui/colorPicker/pom.xml
tags/3.3.3.CR1/ui/columns/pom.xml
tags/3.3.3.CR1/ui/combobox/pom.xml
tags/3.3.3.CR1/ui/componentControl/pom.xml
tags/3.3.3.CR1/ui/contextMenu/pom.xml
tags/3.3.3.CR1/ui/core/pom.xml
tags/3.3.3.CR1/ui/create.bat
tags/3.3.3.CR1/ui/dataFilterSlider/pom.xml
tags/3.3.3.CR1/ui/dataTable/pom.xml
tags/3.3.3.CR1/ui/datascroller/pom.xml
tags/3.3.3.CR1/ui/drag-drop/pom.xml
tags/3.3.3.CR1/ui/dropdown-menu/pom.xml
tags/3.3.3.CR1/ui/editor/pom.xml
tags/3.3.3.CR1/ui/effect/pom.xml
tags/3.3.3.CR1/ui/extendedDataTable/pom.xml
tags/3.3.3.CR1/ui/fileUpload/pom.xml
tags/3.3.3.CR1/ui/functions/pom.xml
tags/3.3.3.CR1/ui/gmap/pom.xml
tags/3.3.3.CR1/ui/hotKey/pom.xml
tags/3.3.3.CR1/ui/inplaceInput/pom.xml
tags/3.3.3.CR1/ui/inplaceSelect/pom.xml
tags/3.3.3.CR1/ui/inputnumber-slider/pom.xml
tags/3.3.3.CR1/ui/inputnumber-spinner/pom.xml
tags/3.3.3.CR1/ui/insert/pom.xml
tags/3.3.3.CR1/ui/jQuery/pom.xml
tags/3.3.3.CR1/ui/layout/pom.xml
tags/3.3.3.CR1/ui/listShuttle/pom.xml
tags/3.3.3.CR1/ui/menu-components/pom.xml
tags/3.3.3.CR1/ui/message/pom.xml
tags/3.3.3.CR1/ui/modal-panel/pom.xml
tags/3.3.3.CR1/ui/orderingList/pom.xml
tags/3.3.3.CR1/ui/paint2D/pom.xml
tags/3.3.3.CR1/ui/panel/pom.xml
tags/3.3.3.CR1/ui/panelbar/pom.xml
tags/3.3.3.CR1/ui/panelmenu/pom.xml
tags/3.3.3.CR1/ui/pickList/pom.xml
tags/3.3.3.CR1/ui/pom.xml
tags/3.3.3.CR1/ui/progressBAR/pom.xml
tags/3.3.3.CR1/ui/scrollableDataTable/pom.xml
tags/3.3.3.CR1/ui/separator/pom.xml
tags/3.3.3.CR1/ui/simpleTogglePanel/pom.xml
tags/3.3.3.CR1/ui/spacer/pom.xml
tags/3.3.3.CR1/ui/state/pom.xml
tags/3.3.3.CR1/ui/suggestionbox/pom.xml
tags/3.3.3.CR1/ui/tabPanel/pom.xml
tags/3.3.3.CR1/ui/togglePanel/pom.xml
tags/3.3.3.CR1/ui/toolBar/pom.xml
tags/3.3.3.CR1/ui/tooltip/pom.xml
tags/3.3.3.CR1/ui/tree/pom.xml
tags/3.3.3.CR1/ui/treeModel/pom.xml
tags/3.3.3.CR1/ui/treeTable/pom.xml
tags/3.3.3.CR1/ui/virtualEarth/pom.xml
Log:
Retag for 3.3.3.CR1 release
Copied: tags/3.3.3.CR1 (from rev 16447, branches/community/3.3.X)
Modified: tags/3.3.3.CR1/cdk/generator/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/generator/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/generator/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -30,12 +30,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-archetype-seam-app/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.3-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.3.CR1</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.3.CR1/cdk/maven-archetype-theme/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-theme/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-archetype-theme/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: tags/3.3.3.CR1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
Modified: tags/3.3.3.CR1/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-cdk-plugin/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-cdk-plugin/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.3.CR1/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-javascript-plugin/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-javascript-plugin/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.3.CR1/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/maven-resource-dependency-plugin/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>maven-resource-dependency-plugin</name>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/cdk/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.3.CR1/cdk/richfaces-facelets/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/richfaces-facelets/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/richfaces-facelets/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,13 +4,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>richfaces-facelets</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>maven-archetype-rf-facelets</name>
<packaging>maven-archetype</packaging>
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<build>
Modified: tags/3.3.3.CR1/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -28,7 +28,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.3.CR1/docs/cdkguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/en/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/cdkguide/en/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.3.CR1/docs/cdkguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/cdkguide/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.3.CR1/docs/common-resources/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/common-resources/en/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>Documentation common resources (${translation})</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<extensions>
<extension>
Modified: tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: tags/3.3.3.CR1/docs/common-resources/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/common-resources/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.3.CR1/docs/faq/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/faq/en/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/faq/en/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
<build>
Modified: tags/3.3.3.CR1/docs/faq/pom.xml
===================================================================
--- branches/community/3.3.X/docs/faq/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/faq/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<!--repositories>
Modified: tags/3.3.3.CR1/docs/highlight/pom.xml
===================================================================
--- branches/community/3.3.X/docs/highlight/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/highlight/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.3.CR1/docs/migrationguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/migrationguide/en/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/migrationguide/en/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
<build>
Modified: tags/3.3.3.CR1/docs/migrationguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/migrationguide/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/migrationguide/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.3.CR1/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/en/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/photo_album_app_guide/en/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: tags/3.3.3.CR1/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -74,7 +74,7 @@
<para><code>mvn archetype:generate </code></para>
<para><code>-DarchetypeGroupId=org.richfaces.cdk </code></para>
<para><code>-DarchetypeArtifactId=maven-archetype-seam-app </code></para>
- <para><code>-DarchetypeVersion=3.3.3-SNAPSHOT </code></para>
+ <para><code>-DarchetypeVersion=3.3.3.CR1 </code></para>
<para><code>-DgroupId=[Your_project_group_id] </code></para>
<para><code>-DartifactId=[Your_project_name] </code></para>
<para>Some project preferences such as <property>RichFaces</property> components version or Jboss server version and others could be customized in the root <code>.pom</code> file </para>
Modified: tags/3.3.3.CR1/docs/photo_album_app_guide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/photo_album_app_guide/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: tags/3.3.3.CR1/docs/pom.xml
===================================================================
--- branches/community/3.3.X/docs/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.3.CR1/docs/userguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/userguide/en/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -335,7 +335,7 @@
<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.3-SNAPSHOT -DgroupId=org.docs.richfaces -DartifactId=jsf-app
+mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.3.CR1 -DgroupId=org.docs.richfaces -DartifactId=jsf-app
...]]></programlisting>
@@ -461,17 +461,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
...]]></programlisting>
Modified: tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3839,7 +3839,7 @@
<listitem>
<para>
<code>archetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.3-SNAPSHOT"</code>
+ <code>"3.3.3.CR1"</code>
</para>
</listitem>
<listitem>
@@ -4080,7 +4080,7 @@
follow the steps described in the previous section.</para>
<para>This command will be used to create a template of the new skin project. </para>
<programlisting role="XML"><![CDATA[
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.3-SNAPSHOT -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.3.CR1 -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
]]></programlisting>
<para> Now you can browse the "P-n-S" folder to view what files and
folders were created there. </para>
Modified: tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -48,7 +48,7 @@
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.3-SNA..."
+ url="http://snapshots.jboss.org/maven2/org/richfaces/ui/richfaces-ui/3.3.3.CR1/"
>Snapshots repository</ulink>.</para>
<para>Source Code (SVN) can be found in<ulink
url="http://anonsvn.jboss.org/repos/richfaces/trunk/samples/richfaces-demo/"
Modified: tags/3.3.3.CR1/docs/userguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/docs/userguide/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.3.CR1/examples/photoalbum/assembly/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/assembly/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/examples/photoalbum/assembly/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.CR1/examples/photoalbum/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/examples/photoalbum/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: tags/3.3.3.CR1/examples/photoalbum/source/ear/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/ear/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/examples/photoalbum/source/ear/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.CR1/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/ejb/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/examples/photoalbum/source/ejb/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.CR1/examples/photoalbum/source/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/examples/photoalbum/source/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<distributionManagement>
<downloadUrl>
Modified: tags/3.3.3.CR1/examples/photoalbum/source/web/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/web/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/examples/photoalbum/source/web/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.CR1/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/tests/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/examples/photoalbum/tests/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.CR1/extensions/gwt/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/gwt/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/extensions/gwt/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.3.CR1/extensions/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/extensions/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.3.CR1/extensions/seam/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/seam/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/extensions/seam/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.3.CR1/extensions/trinidad/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/trinidad/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/extensions/trinidad/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.3.CR1/framework/api/pom.xml
===================================================================
--- branches/community/3.3.X/framework/api/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/framework/api/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<dependencies>
<dependency>
Modified: tags/3.3.3.CR1/framework/impl/pom.xml
===================================================================
--- branches/community/3.3.X/framework/impl/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/framework/impl/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>${classifiedArtifactId}</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<resources>
<resource>
@@ -249,7 +249,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-02-14 18:06:20 UTC (rev 16449)
@@ -37,7 +37,7 @@
/**
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "3-SNAPSHOT" ;
+ public static final String REVISION = "3.CR1" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.3.3.CR1/framework/jsf-test/pom.xml
===================================================================
--- branches/community/3.3.X/framework/jsf-test/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/framework/jsf-test/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<dependencies>
<dependency>
Modified: tags/3.3.3.CR1/framework/pom.xml
===================================================================
--- branches/community/3.3.X/framework/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/framework/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
Modified: tags/3.3.3.CR1/framework/test/pom.xml
===================================================================
--- branches/community/3.3.X/framework/test/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/framework/test/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,12 +3,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
Modified: tags/3.3.3.CR1/pom.xml
===================================================================
--- branches/community/3.3.X/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>RichFaces project</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
Modified: tags/3.3.3.CR1/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/beanValidatorSample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/beanValidatorSample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -34,7 +34,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.3-SNAPSHOT</version> </dependency>
+ <version>3.3.3.CR1</version> </dependency>
-->
<dependency>
<groupId>org.slf4j</groupId>
@@ -50,12 +50,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.3.CR1/samples/calendar-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/calendar-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/calendar-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/colorPickerDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/colorPickerDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/colorPickerDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -40,17 +40,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.3.CR1/samples/columnsDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/columnsDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/columnsDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/combobox-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/combobox-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/combobox-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/contextMenuDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/contextMenuDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/createProject.sh
===================================================================
--- branches/community/3.3.X/samples/createProject.sh 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/createProject.sh 2010-02-14 18:06:20 UTC (rev 16449)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.3-SNAPSHOT -Dversion=3.3.3-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.3.CR1 -Dversion=3.3.3.CR1 -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: tags/3.3.3.CR1/samples/darkX/pom.xml
===================================================================
--- branches/community/3.3.X/samples/darkX/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/darkX/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dataFilterSliderDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/dataFilterSliderDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/dataTableDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dataTableDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/dataTableDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/datascroller-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/datascroller-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/datascroller-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/dragDropDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dragDropDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/dragDropDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dropdownmenu-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/dropdownmenu-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/editor-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/editor-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/editor-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/samples/editorSeam-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/editorSeam-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/editorSeam-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/samples/effect-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/effect-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/effect-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/extendedDataTable-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/extendedDataTable-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/fileUploadDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/fileUploadDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/functions-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/functions-demo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/functions-demo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/glassX/pom.xml
===================================================================
--- branches/community/3.3.X/samples/glassX/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/glassX/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/samples/gmap-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/gmap-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/gmap-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/hotKey-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/hotKey-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/hotKey-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inplaceInput-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/inplaceInput-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inplaceSelect-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/inplaceSelect-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inputNumberSliderDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/inputNumberSliderDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/inputNumberSpinnerDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/jQuery-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/jQuery-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/jQuery-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/jira-data/pom.xml
===================================================================
--- branches/community/3.3.X/samples/jira-data/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/jira-data/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/laguna/pom.xml
===================================================================
--- branches/community/3.3.X/samples/laguna/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/laguna/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.3.CR1/samples/layout-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/layout-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/layout-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,17 +34,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.3.CR1/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/listShuttleDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/listShuttleDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/local-value-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/local-value-demo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/local-value-demo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/mediaOutput/pom.xml
===================================================================
--- branches/community/3.3.X/samples/mediaOutput/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/mediaOutput/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,11 +5,11 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces</groupId>
<artifactId>mediaOutput</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>war</packaging>
<name>mediaOutput Maven Webapp</name>
<build>
Modified: tags/3.3.3.CR1/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/modalpanel-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/modalpanel-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/orderingListDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/orderingListDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/orderingListDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/panel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panel-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/panel-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/panelbar-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panelbar-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/panelbar-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panelmenu-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/panelmenu-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/pickList-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/pickList-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/pickList-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/pom.xml
===================================================================
--- branches/community/3.3.X/samples/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/samples/progressBarDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/progressBarDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/progressBarDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/queue-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/queue-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/queue-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.3.CR1/samples/rich-message-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/rich-message-demo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/rich-message-demo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-art-datatable/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/richfaces-art-datatable/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-demo/functional-test/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/richfaces-demo/functional-test/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.richfaces.integrationTest</groupId>
<artifactId>functional-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>jar</packaging>
<name>selenium-test</name>
<url>http://maven.apache.org</url>
Modified: tags/3.3.3.CR1/samples/richfaces-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/richfaces-demo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -246,22 +246,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -356,12 +356,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/richfaces-ear-demo/ejb/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/richfaces-ear-demo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.3.CR1/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/richfaces-ear-demo/webapp/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.3.CR1/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/scrollableDataTableDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/scrollableDataTableDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.3.CR1/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/ear/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/seamEAR/ear/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.3.CR1/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/ejbs/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/seamEAR/ejbs/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.3.CR1/samples/seamEAR/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/seamEAR/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/primary-source/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/seamEAR/primary-source/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.3.CR1/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/projects/logging/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/seamEAR/projects/logging/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
</project>
Modified: tags/3.3.3.CR1/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/projects/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/seamEAR/projects/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.3.CR1/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/wars/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/seamEAR/wars/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.3.CR1/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/seamEAR/wars/seamWebapp/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.3.CR1/samples/seamIntegration/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamIntegration/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/seamIntegration/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/separator-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/separator-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/separator-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/simpleTogglePanel-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/skins/pom.xml
===================================================================
--- branches/community/3.3.X/samples/skins/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/skins/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/sortingFilteringDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/sortingFilteringDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency-->
<dependency>
Modified: tags/3.3.3.CR1/samples/state-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/state-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/state-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/stdcomponents-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/stdcomponents-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/suggestionbox-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/suggestionbox-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tabPanelDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/tabPanelDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/themes/pom.xml
===================================================================
--- branches/community/3.3.X/samples/themes/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/themes/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/togglePanel-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/togglePanel-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tomahawkCompability/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/tomahawkCompability/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/toolBarDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/toolBarDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/toolBarDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/tooltip-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tooltip-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/tooltip-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/tree-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tree-demo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/tree-demo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/treeModelDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/treeModelDemo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/treeModelDemo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/samples/violetRays/pom.xml
===================================================================
--- branches/community/3.3.X/samples/violetRays/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/violetRays/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/virtualEarth-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/samples/virtualEarth-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.CR1/sandbox/api/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/api/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/api/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.3.CR1/sandbox/cdk/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/cdk/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/cdk/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.3.CR1/sandbox/impl/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/impl/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/impl/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.3.CR1/sandbox/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/samples/dialog-window-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/samples/editorOld-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/samples/fileUploadPOC/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<configuration>
<scriptFilePath>scripts/custom-dependencies.js</scriptFilePath>
<styleFilePath>css/custom-dependencies.xcss</styleFilePath>
@@ -59,7 +59,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/panel2-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/samples/panel2-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/sandbox/samples/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/samples/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/rex-demo/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/samples/rex-demo/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
Modified: tags/3.3.3.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.CR1/sandbox/ui/create.bat
===================================================================
--- branches/community/3.3.X/sandbox/ui/create.bat 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/create.bat 2010-02-14 18:06:20 UTC (rev 16449)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-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.3.CR1 -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/create.sh
===================================================================
--- branches/community/3.3.X/sandbox/ui/create.sh 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/create.sh 2010-02-14 18:06:20 UTC (rev 16449)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-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.3.CR1 -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/dialog-window/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/dialog-window/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/sandbox/ui/editorOld/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/editorOld/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/editorOld/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/panel2/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/panel2/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.3.CR1/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-button/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/rex-button/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/rex-messageBox/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-resizable/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/rex-resizable/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/simpleTogglePanel2/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/sortableHeader/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/sortableHeader/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/treeTable/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/sandbox/ui/treeTable/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/test-applications/ajaxTest/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/ajaxTest/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/ajaxTest/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.3.CR1/test-applications/automator/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/automator/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/automator/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/test-applications/facelets/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/facelets/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/facelets/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/test-applications/jsp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/jsp/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/jsp/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/test-applications/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.3-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.3.CR1</rfVersion>
</properties>
<modules>
Modified: tags/3.3.3.CR1/test-applications/regression-test/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regression-test/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/regression-test/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,7 +5,7 @@
<artifactId>regression-test</artifactId>
<name>Regression test application</name>
<packaging>war</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<description>Application for manual testing of regressions.</description>
<url>http://www.jboss.org/richfaces</url>
<inceptionYear>2009</inceptionYear>
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<exclusions>
<exclusion>
<artifactId>richfaces-impl</artifactId>
@@ -59,7 +59,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.3.CR1/test-applications/regressionArea/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/regressionArea/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -60,7 +60,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.3-SNAPSHOT</richversion>
+ <richversion>3.3.3.CR1</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.3.CR1/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/regressionArea/regressionArea-web/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.3.CR1/test-applications/richfaces-docs/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/richfaces-docs/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/richfaces-docs/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -204,7 +204,7 @@
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
@@ -214,7 +214,7 @@
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
@@ -224,7 +224,7 @@
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
Modified: tags/3.3.3.CR1/test-applications/seamApp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seamApp/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/seamApp/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.3-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.3.CR1</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.3.CR1/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/seleniumTest/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -233,7 +233,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.3.CR1/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/seleniumTest/richfaces/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: tags/3.3.3.CR1/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/samples/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/seleniumTest/samples/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.3.CR1/test-applications/test-jsp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/test-jsp/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/test-applications/test-jsp/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.CR1/ui/assembly/pom.xml
===================================================================
--- branches/community/3.3.X/ui/assembly/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/assembly/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
@@ -435,17 +435,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl-jsf2</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</profile>
Modified: tags/3.3.3.CR1/ui/beanValidator/pom.xml
===================================================================
--- branches/community/3.3.X/ui/beanValidator/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/beanValidator/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,19 +4,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: tags/3.3.3.CR1/ui/calendar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/calendar/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/calendar/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/colorPicker/pom.xml
===================================================================
--- branches/community/3.3.X/ui/colorPicker/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/colorPicker/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -12,7 +12,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/columns/pom.xml
===================================================================
--- branches/community/3.3.X/ui/columns/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/columns/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.3.CR1/ui/combobox/pom.xml
===================================================================
--- branches/community/3.3.X/ui/combobox/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/combobox/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/ui/componentControl/pom.xml
===================================================================
--- branches/community/3.3.X/ui/componentControl/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/componentControl/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/contextMenu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/contextMenu/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/contextMenu/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/core/pom.xml
===================================================================
--- branches/community/3.3.X/ui/core/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/core/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/create.bat
===================================================================
--- branches/community/3.3.X/ui/create.bat 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/create.bat 2010-02-14 18:06:20 UTC (rev 16449)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-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.3.CR1 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dataFilterSlider/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/dataFilterSlider/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/dataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dataTable/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/dataTable/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.3.CR1/ui/datascroller/pom.xml
===================================================================
--- branches/community/3.3.X/ui/datascroller/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/datascroller/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/drag-drop/pom.xml
===================================================================
--- branches/community/3.3.X/ui/drag-drop/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/drag-drop/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.3.CR1/ui/dropdown-menu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dropdown-menu/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/dropdown-menu/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/editor/pom.xml
===================================================================
--- branches/community/3.3.X/ui/editor/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/editor/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/ui/effect/pom.xml
===================================================================
--- branches/community/3.3.X/ui/effect/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/effect/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/extendedDataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/extendedDataTable/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/extendedDataTable/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,40 +64,40 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/fileUpload/pom.xml
===================================================================
--- branches/community/3.3.X/ui/fileUpload/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/fileUpload/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/functions/pom.xml
===================================================================
--- branches/community/3.3.X/ui/functions/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/functions/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/gmap/pom.xml
===================================================================
--- branches/community/3.3.X/ui/gmap/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/gmap/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/hotKey/pom.xml
===================================================================
--- branches/community/3.3.X/ui/hotKey/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/hotKey/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/inplaceInput/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inplaceInput/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/inplaceInput/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/inplaceSelect/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inplaceSelect/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/inplaceSelect/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inputnumber-slider/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/inputnumber-slider/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inputnumber-spinner/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/inputnumber-spinner/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/ui/insert/pom.xml
===================================================================
--- branches/community/3.3.X/ui/insert/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/insert/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/jQuery/pom.xml
===================================================================
--- branches/community/3.3.X/ui/jQuery/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/jQuery/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/layout/pom.xml
===================================================================
--- branches/community/3.3.X/ui/layout/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/layout/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/ui/listShuttle/pom.xml
===================================================================
--- branches/community/3.3.X/ui/listShuttle/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/listShuttle/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.3.CR1/ui/menu-components/pom.xml
===================================================================
--- branches/community/3.3.X/ui/menu-components/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/menu-components/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/message/pom.xml
===================================================================
--- branches/community/3.3.X/ui/message/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/message/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/modal-panel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/modal-panel/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/modal-panel/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/orderingList/pom.xml
===================================================================
--- branches/community/3.3.X/ui/orderingList/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/orderingList/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/paint2D/pom.xml
===================================================================
--- branches/community/3.3.X/ui/paint2D/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/paint2D/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/panel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panel/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/panel/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/ui/panelbar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panelbar/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/panelbar/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/panelmenu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panelmenu/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/panelmenu/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/pickList/pom.xml
===================================================================
--- branches/community/3.3.X/ui/pickList/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/pickList/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,13 +53,13 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.CR1/ui/pom.xml
===================================================================
--- branches/community/3.3.X/ui/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -187,12 +187,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
@@ -249,7 +249,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.3.CR1/ui/progressBAR/pom.xml
===================================================================
--- branches/community/3.3.X/ui/progressBAR/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/progressBAR/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/scrollableDataTable/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/scrollableDataTable/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,12 +70,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/separator/pom.xml
===================================================================
--- branches/community/3.3.X/ui/separator/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/separator/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.CR1/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/simpleTogglePanel/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/simpleTogglePanel/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/spacer/pom.xml
===================================================================
--- branches/community/3.3.X/ui/spacer/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/spacer/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/state/pom.xml
===================================================================
--- branches/community/3.3.X/ui/state/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/state/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/suggestionbox/pom.xml
===================================================================
--- branches/community/3.3.X/ui/suggestionbox/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/suggestionbox/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/tabPanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tabPanel/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/tabPanel/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/togglePanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/togglePanel/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/togglePanel/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/toolBar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/toolBar/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/toolBar/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/tooltip/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tooltip/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/tooltip/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/tree/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tree/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/tree/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/treeModel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/treeModel/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/treeModel/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.CR1/ui/treeTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/treeTable/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/treeTable/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.CR1/ui/virtualEarth/pom.xml
===================================================================
--- branches/community/3.3.X/ui/virtualEarth/pom.xml 2010-02-14 17:51:33 UTC (rev 16447)
+++ tags/3.3.3.CR1/ui/virtualEarth/pom.xml 2010-02-14 18:06:20 UTC (rev 16449)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</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.3-SNAPSHOT</version>
+ <version>3.3.3.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
15 years, 7 months
JBoss Rich Faces SVN: r16448 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-02-14 13:01:30 -0500 (Sun, 14 Feb 2010)
New Revision: 16448
Removed:
tags/3.3.3.CR1/
Log:
Deleting 3.3.3.CR1 tag
15 years, 7 months
JBoss Rich Faces SVN: r16447 - branches/community/3.3.X/framework/impl/src/main/java/org/richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-02-14 12:51:33 -0500 (Sun, 14 Feb 2010)
New Revision: 16447
Modified:
branches/community/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java
Log:
Changed VersionBean to update SVN keywords for 3.3.3.CR1 build
Modified: branches/community/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-02-13 17:28:36 UTC (rev 16446)
+++ branches/community/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-02-14 17:51:33 UTC (rev 16447)
@@ -37,7 +37,6 @@
/**
* Revision version, must be auto modified by CVS
*/
-
public static final String REVISION = "3-SNAPSHOT" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
15 years, 7 months
JBoss Rich Faces SVN: r16446 - branches/community/3.3.X/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2010-02-13 12:28:36 -0500 (Sat, 13 Feb 2010)
New Revision: 16446
Modified:
branches/community/3.3.X/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js
Log:
RF-8368
Modified: branches/community/3.3.X/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js
===================================================================
--- branches/community/3.3.X/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js 2010-02-11 20:54:15 UTC (rev 16445)
+++ branches/community/3.3.X/ui/menu-components/src/main/resources/org/richfaces/renderkit/html/scripts/menu.js 2010-02-13 17:28:36 UTC (rev 16446)
@@ -1360,8 +1360,8 @@
return false;
};
- this.getElement().oncontextmenu = oncontextmenu;
- this.getIcon().oncontextmenu = oncontextmenu;
+ //this.getElement().oncontextmenu = oncontextmenu;
+ //this.getIcon().oncontextmenu = oncontextmenu;
this.getLabel().oncontextmenu = oncontextmenu;
var binding = new RichFaces.Menu.Layer.Binding(id, "mouseover",
15 years, 7 months
JBoss Rich Faces SVN: r16445 - in root/cdk/trunk/plugins/maven-cdk-plugin/src/it: renderer-template-test and 13 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-02-11 15:54:15 -0500 (Thu, 11 Feb 2010)
New Revision: 16445
Added:
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/pom.xml
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/java/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/java/org/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/java/org/richfaces/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/java/org/richfaces/cdk/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/java/org/richfaces/cdk/renderkit/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/java/org/richfaces/cdk/renderkit/AbstractGridRenderer.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/grid.template.xml
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/input.template.xml
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/link.template.xml
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/BaseRendererTest.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/GridRendererTest.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/HtmlOutputTextStub.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/InputRendererTest.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/LinkRendererTest.java
Log:
https://jira.jboss.org/jira/browse/RF-8307
Property changes on: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test
___________________________________________________________________
Name: svn:ignore
+ .classpath
.project
.settings
target
Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/pom.xml
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/pom.xml (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/pom.xml 2010-02-11 20:54:15 UTC (rev 16445)
@@ -0,0 +1,88 @@
+<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>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>renderer-template-test</artifactId>
+ <name>Test for renderer templates compilation</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <configuration>
+ </configuration>
+ <executions>
+ <execution>
+ <id>generate</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ <inherited>false</inherited>
+ <configuration>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>**/BaseRendererTest.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.7</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.test-jsf</groupId>
+ <artifactId>jsf-mock</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.easymock</groupId>
+ <artifactId>easymock</artifactId>
+ <version>2.5.2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>2.0.2</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>annotations</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-commons</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.2</version>
+ </dependency>
+ </dependencies>
+</project>
\ No newline at end of file
Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/java/org/richfaces/cdk/renderkit/AbstractGridRenderer.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/java/org/richfaces/cdk/renderkit/AbstractGridRenderer.java (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/java/org/richfaces/cdk/renderkit/AbstractGridRenderer.java 2010-02-11 20:54:15 UTC (rev 16445)
@@ -0,0 +1,50 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.richfaces.cdk.renderkit;
+
+import java.io.IOException;
+
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.context.ResponseWriter;
+import javax.faces.render.Renderer;
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public abstract class AbstractGridRenderer extends Renderer {
+
+ /**
+ * @param facesContext
+ * @param child
+ */
+ protected void renderChild(FacesContext facesContext, UIComponent child) throws IOException {
+ ResponseWriter responseWriter = facesContext.getResponseWriter();
+
+ responseWriter.startElement("div", child);
+ child.encodeAll(facesContext);
+ responseWriter.endElement("div");
+ }
+
+}
Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/grid.template.xml
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/grid.template.xml (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/grid.template.xml 2010-02-11 20:54:15 UTC (rev 16445)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<cdk:root xmlns="http://richfaces.org/cdk/xhtml-el" xmlns:cdk="http://richfaces.org/cdk/core"
+ xmlns:c="http://richfaces.org/cdk/jstl/core" xmlns:cc="http://richfaces.org/cdk/jsf/composite"
+ xmlns:javaee="http://java.sun.com/xml/ns/javaee">
+
+ <cc:interface>
+ <cdk:class>org.richfaces.cdk.renderkit.html.GridRenderer</cdk:class>
+ <cdk:superclass>org.richfaces.cdk.renderkit.AbstractGridRenderer</cdk:superclass>
+ <cdk:component-family>org.richfaces.cdk.Grid</cdk:component-family>
+ <cdk:renderer-type>org.richfaces.cdk.GridRenderer</cdk:renderer-type>
+ </cc:interface>
+
+ <cc:implementation>
+ <table id="#{clientId}">
+ <tbody>
+ <cdk:body>
+ <c:forEach items="#{cc.children}" var="child">
+ <tr>
+ <td>
+ <cdk:call>
+ <![CDATA[
+ renderChild(facesContext, child)
+ ]]>
+ </cdk:call>
+ </td>
+ </tr>
+ </c:forEach>
+ </cdk:body>
+ </tbody>
+ </table>
+ </cc:implementation>
+</cdk:root>
Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/input.template.xml
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/input.template.xml (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/input.template.xml 2010-02-11 20:54:15 UTC (rev 16445)
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<cdk:root xmlns="http://richfaces.org/cdk/xhtml-el" xmlns:cdk="http://richfaces.org/cdk/core"
+ xmlns:c="http://richfaces.org/cdk/jstl/core" xmlns:cc="http://richfaces.org/cdk/jsf/composite"
+ xmlns:javaee="http://java.sun.com/xml/ns/javaee">
+
+ <cc:interface>
+ <cdk:class>org.richfaces.cdk.renderkit.html.InputRenderer</cdk:class>
+ <cdk:component-family>org.richfaces.cdk.Input</cdk:component-family>
+ <cdk:renderer-type>org.richfaces.cdk.InputRenderer</cdk:renderer-type>
+ </cc:interface>
+
+ <cc:implementation>
+ <span id="#{clientId}">
+ <cdk:body />
+
+ <cdk:object name="componentIsDisabled" value="#{cc.attributes['disabled'] == true}" />
+ <c:choose>
+ <c:when test="#{not componentIsDisabled}">
+ <input type="text" />
+
+ <cdk:object name="image" value="#{cc.attributes['image']}" />
+ <cdk:object name="disabledImage" value="#{cc.attributes['disabledImage']}" />
+ <c:choose>
+ <c:when test="#{disabledImage != null}">
+ <img src="#{disabledImage}" alt="" />
+ </c:when>
+ <c:when test="#{image != null}">
+ <img src="#{image}" alt="" onclick="alert('clicked')" />
+ </c:when>
+ <c:otherwise>
+ No image defined
+ </c:otherwise>
+ </c:choose>
+ </c:when>
+ <c:otherwise>
+ <input type="text" disabled="#{true}" />
+ </c:otherwise>
+ </c:choose>
+ </span>
+ </cc:implementation>
+</cdk:root>
Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/link.template.xml
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/link.template.xml (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/main/templates/link.template.xml 2010-02-11 20:54:15 UTC (rev 16445)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<cdk:root xmlns="http://richfaces.org/cdk/xhtml-el" xmlns:cdk="http://richfaces.org/cdk/core"
+ xmlns:c="http://richfaces.org/cdk/jstl/core" xmlns:cc="http://richfaces.org/cdk/jsf/composite"
+ xmlns:javaee="http://java.sun.com/xml/ns/javaee">
+
+ <cc:interface>
+ <cdk:class>org.richfaces.cdk.renderkit.html.CommandLinkRenderer</cdk:class>
+ <cdk:component-family>org.richfaces.cdk.Link</cdk:component-family>
+ <cdk:renderer-type>org.richfaces.cdk.LinkRenderer</cdk:renderer-type>
+ </cc:interface>
+
+ <cc:implementation>
+ <a id="#{clientId}" href="#{cc.attributes['href']}" cdk:passThroughWithExclusions="target rel rev">
+ <cdk:object name="imageSource" value="#{cc.attributes['imageSource']}" />
+ <c:if test="#{not empty imageSource}">
+ <img src="#{imageSource}" alt="" class="rich-link #{cc.attributes['linkImageStyleClass']} #{cc.attributes['imageStyleClass']}" />
+ </c:if>
+ value: #{cc.attributes['value']}; differentValue: #{cc.attributes['differentValue']}; anotherValue: #{cc.attributes['anotherValue']};
+ </a>
+ </cc:implementation>
+</cdk:root>
Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/BaseRendererTest.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/BaseRendererTest.java (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/BaseRendererTest.java 2010-02-11 20:54:15 UTC (rev 16445)
@@ -0,0 +1,109 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.cdk;
+
+import static org.easymock.EasyMock.expect;
+import static org.easymock.EasyMock.same;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.context.ResponseWriter;
+
+import org.easymock.IAnswer;
+import org.jboss.test.faces.mock.FacesMock;
+import org.jboss.test.faces.mock.MockFacesEnvironment;
+import org.junit.After;
+import org.junit.Before;
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public class BaseRendererTest {
+
+ protected final String CLIENT_ID = "mainForm:personEntry";
+
+ protected MockFacesEnvironment environment;
+
+ protected ResponseWriter responseWriter;
+
+ protected FacesContext facesContext;
+
+ protected UIComponent component;
+
+ protected Map<String, Object> componentAttributes;
+
+ protected List<UIComponent> childrenList;
+
+ protected void replayAll() throws Exception {
+ FacesMock.replay(environment, responseWriter, component);
+ }
+
+ protected void verifyAll() throws Exception {
+ FacesMock.verify(environment, responseWriter, component);
+ }
+
+ @Before
+ public void setUp() throws Exception {
+ environment = MockFacesEnvironment.createEnvironment();
+ facesContext = environment.getFacesContext();
+ component = FacesMock.createMock(UIComponent.class);
+
+ componentAttributes = new HashMap<String, Object>();
+ expect(component.getAttributes()).andStubReturn(componentAttributes);
+
+ expect(component.getClientId(same(environment.getFacesContext()))).andStubReturn(CLIENT_ID);
+
+ childrenList = new ArrayList<UIComponent>();
+ expect(component.getChildCount()).andAnswer(new IAnswer<Integer>() {
+ @Override
+ public Integer answer() throws Throwable {
+ return childrenList.size();
+ }
+ }).anyTimes();
+ expect(component.getChildren()).andStubReturn(childrenList);
+
+ responseWriter = FacesMock.createMock(ResponseWriter.class);
+ expect(environment.getFacesContext().getResponseWriter()).andStubReturn(responseWriter);
+ expect(responseWriter.getContentType()).andStubReturn("text/html");
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ verifyAll();
+
+ environment.release();
+ environment = null;
+
+ responseWriter = null;
+ facesContext = null;
+ component = null;
+ componentAttributes = null;
+ childrenList = null;
+ }
+
+}
Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/GridRendererTest.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/GridRendererTest.java (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/GridRendererTest.java 2010-02-11 20:54:15 UTC (rev 16445)
@@ -0,0 +1,99 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.cdk;
+
+import static org.easymock.EasyMock.eq;
+import static org.easymock.EasyMock.same;
+
+import javax.faces.component.UIComponent;
+
+import org.easymock.EasyMock;
+import org.junit.Before;
+import org.junit.Test;
+import org.richfaces.cdk.renderkit.html.GridRenderer;
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public class GridRendererTest extends BaseRendererTest {
+
+ @Before
+ public void setUp() throws Exception {
+ super.setUp();
+ childrenList.add(new HtmlOutputTextStub("First child"));
+ childrenList.add(new HtmlOutputTextStub("Second child"));
+ }
+
+ @Test
+ public void testEncodeBegin() throws Exception {
+ responseWriter.startElement(eq("table"), same(component));
+ responseWriter.writeAttribute(eq("id"), eq(CLIENT_ID), EasyMock.<String>isNull());
+ responseWriter.startElement(eq("tbody"), same(component));
+
+ replayAll();
+
+ GridRenderer renderer = new GridRenderer();
+ renderer.encodeBegin(facesContext, component);
+ }
+
+ @Test
+ public void testEncodeChildren() throws Exception {
+ responseWriter.startElement(eq("tr"), EasyMock.<UIComponent>notNull());
+ responseWriter.startElement(eq("td"), EasyMock.<UIComponent>notNull());
+
+ responseWriter.startElement(eq("div"), EasyMock.<UIComponent>notNull());
+ responseWriter.writeText(eq("First child"), EasyMock.<String>isNull());
+ responseWriter.endElement(eq("div"));
+
+ responseWriter.endElement(eq("td"));
+ responseWriter.endElement(eq("tr"));
+
+
+ responseWriter.startElement(eq("tr"), EasyMock.<UIComponent>notNull());
+ responseWriter.startElement(eq("td"), EasyMock.<UIComponent>notNull());
+
+ responseWriter.startElement(eq("div"), EasyMock.<UIComponent>notNull());
+ responseWriter.writeText(eq("Second child"), EasyMock.<String>isNull());
+ responseWriter.endElement(eq("div"));
+
+ responseWriter.endElement(eq("td"));
+ responseWriter.endElement(eq("tr"));
+
+ replayAll();
+
+ GridRenderer renderer = new GridRenderer();
+ renderer.encodeChildren(facesContext, component);
+ }
+
+ @Test
+ public void testEncodeEnd() throws Exception {
+ responseWriter.endElement(eq("tbody"));
+ responseWriter.endElement(eq("table"));
+
+ replayAll();
+
+ GridRenderer renderer = new GridRenderer();
+ renderer.encodeEnd(facesContext, component);
+ }
+
+}
\ No newline at end of file
Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/HtmlOutputTextStub.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/HtmlOutputTextStub.java (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/HtmlOutputTextStub.java 2010-02-11 20:54:15 UTC (rev 16445)
@@ -0,0 +1,98 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.cdk;
+
+import java.io.IOException;
+
+import javax.faces.component.UIComponentBase;
+import javax.faces.context.FacesContext;
+
+class HtmlOutputTextStub extends UIComponentBase {
+
+ private String prologText = "";
+ private String bodyText = "";
+ private String epilogText = "";
+
+ public HtmlOutputTextStub() {
+ super();
+ }
+
+ public HtmlOutputTextStub(String epilogText) {
+ super();
+ this.epilogText = epilogText;
+ }
+
+ @Override
+ public String getFamily() {
+ return javax.faces.component.html.HtmlOutputText.COMPONENT_FAMILY;
+ }
+
+ private void renderText(FacesContext facesContext, String text) throws IOException {
+ if (text != null && text.length() > 0) {
+ facesContext.getResponseWriter().writeText(text, null);
+ }
+ }
+
+ @Override
+ public boolean getRendersChildren() {
+ return true;
+ }
+
+ @Override
+ public void encodeBegin(FacesContext context) throws IOException {
+ renderText(context, prologText);
+ }
+
+ @Override
+ public void encodeChildren(FacesContext context) throws IOException {
+ renderText(context, bodyText);
+ }
+
+ @Override
+ public void encodeEnd(FacesContext context) throws IOException {
+ renderText(context, epilogText);
+ }
+
+ public void setBodyText(String bodyText) {
+ this.bodyText = bodyText;
+ }
+
+ public void setPrologText(String prologText) {
+ this.prologText = prologText;
+ }
+
+ public void setEpilogText(String epilogText) {
+ this.epilogText = epilogText;
+ }
+
+ public String getBodyText() {
+ return bodyText;
+ }
+
+ public String getPrologText() {
+ return prologText;
+ }
+
+ public String getEpilogText() {
+ return epilogText;
+ }
+}
\ No newline at end of file
Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/InputRendererTest.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/InputRendererTest.java (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/InputRendererTest.java 2010-02-11 20:54:15 UTC (rev 16445)
@@ -0,0 +1,143 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.cdk;
+
+import static org.easymock.EasyMock.eq;
+import static org.easymock.EasyMock.same;
+
+import org.easymock.EasyMock;
+import org.junit.Before;
+import org.junit.Test;
+import org.richfaces.cdk.renderkit.html.InputRenderer;
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public class InputRendererTest extends BaseRendererTest {
+
+ @Override
+ @Before
+ public void setUp() throws Exception {
+ super.setUp();
+ childrenList.add(new HtmlOutputTextStub("Single child"));
+ }
+
+ @Test
+ public void testEncodeBeginDefaultComponent() throws Exception {
+ responseWriter.startElement(eq("span"), same(component));
+ responseWriter.writeAttribute(eq("id"), eq(CLIENT_ID), EasyMock.<String>isNull());
+
+ replayAll();
+
+ InputRenderer renderer = new InputRenderer();
+ renderer.encodeBegin(facesContext, component);
+ }
+
+ @Test
+ public void testEncodeChildrenDefaultComponent() throws Exception {
+ responseWriter.writeText(eq("Single child"), EasyMock.<String>isNull());
+
+ replayAll();
+
+ InputRenderer renderer = new InputRenderer();
+ renderer.encodeChildren(facesContext, component);
+ }
+
+
+ @Test
+ public void testEncodeEndDefaultComponent() throws Exception {
+ responseWriter.startElement(eq("input"), same(component));
+ responseWriter.writeAttribute(eq("type"), eq("text"), EasyMock.<String>isNull());
+ responseWriter.endElement(eq("input"));
+
+ responseWriter.writeText(eq("No image defined"), EasyMock.<String>isNull());
+
+ responseWriter.endElement(eq("span"));
+
+ replayAll();
+
+ InputRenderer renderer = new InputRenderer();
+ renderer.encodeEnd(facesContext, component);
+ }
+
+ @Test
+ public void testEncodeEndDisabledComponent() throws Exception {
+ componentAttributes.put("disabled", Boolean.TRUE);
+
+ responseWriter.startElement(eq("input"), same(component));
+ responseWriter.writeAttribute(eq("disabled"), eq(Boolean.TRUE), EasyMock.<String>isNull());
+ responseWriter.writeAttribute(eq("type"), eq("text"), EasyMock.<String>isNull());
+ responseWriter.endElement(eq("input"));
+
+ responseWriter.endElement(eq("span"));
+
+ replayAll();
+
+ InputRenderer renderer = new InputRenderer();
+ renderer.encodeEnd(facesContext, component);
+ }
+
+ @Test
+ public void testEncodeEndDisabledImage() throws Exception {
+ componentAttributes.put("image", "http://site/img.png");
+ componentAttributes.put("disabledImage", "http://site/disabled.png");
+
+ responseWriter.startElement(eq("input"), same(component));
+ responseWriter.writeAttribute(eq("type"), eq("text"), EasyMock.<String>isNull());
+ responseWriter.endElement(eq("input"));
+
+ responseWriter.startElement(eq("img"), same(component));
+ responseWriter.writeAttribute(eq("alt"), eq(""), EasyMock.<String>isNull());
+ responseWriter.writeURIAttribute(eq("src"), eq("http://site/disabled.png"), EasyMock.<String>isNull());
+ responseWriter.endElement(eq("img"));
+
+ responseWriter.endElement(eq("span"));
+
+ replayAll();
+
+ InputRenderer renderer = new InputRenderer();
+ renderer.encodeEnd(facesContext, component);
+ }
+
+ @Test
+ public void testEncodeEndImage() throws Exception {
+ componentAttributes.put("image", "http://site/img.png");
+
+ responseWriter.startElement(eq("input"), same(component));
+ responseWriter.writeAttribute(eq("type"), eq("text"), EasyMock.<String>isNull());
+ responseWriter.endElement(eq("input"));
+
+ responseWriter.startElement(eq("img"), same(component));
+ responseWriter.writeAttribute(eq("alt"), eq(""), EasyMock.<String>isNull());
+ responseWriter.writeAttribute(eq("onclick"), eq("alert('clicked')"), EasyMock.<String>isNull());
+ responseWriter.writeURIAttribute(eq("src"), eq("http://site/img.png"), EasyMock.<String>isNull());
+ responseWriter.endElement(eq("img"));
+
+ responseWriter.endElement(eq("span"));
+
+ replayAll();
+
+ InputRenderer renderer = new InputRenderer();
+ renderer.encodeEnd(facesContext, component);
+ }
+}
\ No newline at end of file
Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/LinkRendererTest.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/LinkRendererTest.java (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/renderer-template-test/src/test/java/org/richfaces/cdk/LinkRendererTest.java 2010-02-11 20:54:15 UTC (rev 16445)
@@ -0,0 +1,145 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.cdk;
+
+import static org.easymock.EasyMock.eq;
+import static org.easymock.EasyMock.same;
+
+import org.easymock.EasyMock;
+import org.junit.Before;
+import org.junit.Test;
+import org.richfaces.cdk.renderkit.html.CommandLinkRenderer;
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public class LinkRendererTest extends BaseRendererTest {
+
+ /**
+ * @throws java.lang.Exception
+ */
+ @Before
+ public void setUp() throws Exception {
+ super.setUp();
+ childrenList.add(new HtmlOutputTextStub("Child text"));
+ }
+
+ private void initializeBasePathAttributes() {
+ componentAttributes.put("href", "http://some-site");
+ componentAttributes.put("value", "The link");
+ componentAttributes.put("anotherValue", Integer.valueOf(12));
+ componentAttributes.put("styleClass", "menu-link");
+ componentAttributes.put("onclick", "this.disabled='true'");
+ componentAttributes.put("target", "_blank");
+ componentAttributes.put("rel", "Next");
+ componentAttributes.put("rev", "Prev");
+ componentAttributes.put("imageSource", "http://some-site/img.png");
+ componentAttributes.put("imageStyleClass", "my-link-image");
+ }
+
+ @Test
+ public void testEncodeBeginBasePath() throws Exception {
+ initializeBasePathAttributes();
+
+ replayAll();
+
+ CommandLinkRenderer renderer = new CommandLinkRenderer();
+ renderer.encodeBegin(facesContext, component);
+ }
+
+ @Test
+ public void testEncodeChildrenBasePath() throws Exception {
+ initializeBasePathAttributes();
+
+ responseWriter.writeText(eq("Child text"), EasyMock.<String>isNull());
+
+ replayAll();
+
+ CommandLinkRenderer renderer = new CommandLinkRenderer();
+ renderer.encodeChildren(facesContext, component);
+ }
+
+ @Test
+ public void testEncodeEndBasePath() throws Exception {
+ initializeBasePathAttributes();
+
+ responseWriter.startElement(eq("a"), same(component));
+
+ //attributes
+ responseWriter.writeAttribute(eq("id"), eq(CLIENT_ID), EasyMock.<String>isNull());
+ responseWriter.writeURIAttribute(eq("href"), eq("http://some-site"), EasyMock.<String>isNull());
+
+ //pass-through attributes
+ responseWriter.writeAttribute(eq("class"), eq("menu-link"), EasyMock.<String>isNull());
+ responseWriter.writeAttribute(eq("onclick"), eq("this.disabled='true'"), EasyMock.<String>isNull());
+
+ responseWriter.startElement(eq("img"), same(component));
+ responseWriter.writeAttribute(eq("alt"), eq(""), EasyMock.<String>isNull());
+ responseWriter.writeAttribute(eq("class"), eq("rich-link my-link-image"), EasyMock.<String>isNull());
+ responseWriter.writeURIAttribute(eq("src"), eq("http://some-site/img.png"), EasyMock.<String>isNull());
+ responseWriter.endElement(eq("img"));
+
+ responseWriter.writeText(eq("value: The link; differentValue: ; anotherValue: 12;"), EasyMock.<String>isNull());
+
+ responseWriter.endElement(eq("a"));
+
+ replayAll();
+
+ CommandLinkRenderer renderer = new CommandLinkRenderer();
+ renderer.encodeEnd(facesContext, component);
+ }
+
+ @Test
+ public void testEncodeBeginShortPath() throws Exception {
+ replayAll();
+
+ CommandLinkRenderer renderer = new CommandLinkRenderer();
+ renderer.encodeBegin(facesContext, component);
+ }
+
+ @Test
+ public void testEncodeChildrenShortPath() throws Exception {
+ responseWriter.writeText(eq("Child text"), EasyMock.<String>isNull());
+
+ replayAll();
+
+ CommandLinkRenderer renderer = new CommandLinkRenderer();
+ renderer.encodeChildren(facesContext, component);
+ }
+
+ @Test
+ public void testEncodeEndShortPath() throws Exception {
+ responseWriter.startElement(eq("a"), same(component));
+
+ //attributes
+ responseWriter.writeAttribute(eq("id"), eq(CLIENT_ID), EasyMock.<String>isNull());
+
+ responseWriter.writeText(eq("value: ; differentValue: ; anotherValue: ;"), EasyMock.<String>isNull());
+ responseWriter.endElement(eq("a"));
+
+ replayAll();
+
+ CommandLinkRenderer renderer = new CommandLinkRenderer();
+ renderer.encodeEnd(facesContext, component);
+ }
+}
\ No newline at end of file
15 years, 7 months
JBoss Rich Faces SVN: r16444 - in root/cdk/trunk/plugins: generator/src/main/java/org/richfaces/cdk/parser/el/node and 7 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-02-11 15:51:58 -0500 (Thu, 11 Feb 2010)
New Revision: 16444
Added:
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/QNameComparator.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/util/ComparatorUtils.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/util/JavaUtils.java
root/cdk/trunk/plugins/generator/src/test/java/org/richfaces/cdk/util/
root/cdk/trunk/plugins/generator/src/test/java/org/richfaces/cdk/util/ComparatorUtilsTest.java
Removed:
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/StringUtils.java
Modified:
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/ELVisitor.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/AstLiteralTreeNode.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/AstStringTreeNode.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/EqualityTestTreeNode.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassVisitor.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkChooseElement.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkOtherwiseElement.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkWhenElement.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/ModelFragment.java
root/cdk/trunk/plugins/generator/src/test/java/org/richfaces/cdk/parser/el/test/ELParserTest.java
root/cdk/trunk/plugins/maven-cdk-plugin/pom.xml
Log:
https://jira.jboss.org/jira/browse/RF-7732
Refactoring & optimizations
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/ELVisitor.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/ELVisitor.java 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/ELVisitor.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -21,6 +21,8 @@
package org.richfaces.cdk.parser.el;
+import static org.richfaces.cdk.util.JavaUtils.getEscapedString;
+
import java.util.Map;
import org.jboss.el.parser.AstCompositeExpression;
@@ -103,7 +105,7 @@
if (ret != null && ret.jjtGetNumChildren() > 0) {
parsedExpression = this.visit(ret, contextMap);
} else {
- parsedExpression = StringUtils.getEscapedString("");
+ parsedExpression = getEscapedString("");
variableType = TypesFactory.getType(String.class);
}
}
Deleted: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/StringUtils.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/StringUtils.java 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/StringUtils.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -1,144 +0,0 @@
-/**
- * License Agreement.
- *
- * Rich Faces - Natural Ajax for Java Server Faces (JSF)
- *
- * Copyright (C) 2007 Exadel, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-package org.richfaces.cdk.parser.el;
-
-import java.util.Locale;
-
-public final class StringUtils {
- private StringUtils() {
- }
-
- private static String toCharExpression(char c) {
- String prependingZeroesString;
- String hexString = Integer.toHexString(c);
-
- switch (hexString.length()) {
- case 1:
- prependingZeroesString = "000";
- break;
- case 2:
- prependingZeroesString = "00";
- break;
- case 3:
- prependingZeroesString = "0";
- break;
- case 4:
- prependingZeroesString = "";
- break;
- default:
- throw new IllegalArgumentException();
- }
-
- return "\\u" + prependingZeroesString + hexString.toUpperCase(Locale.US);
- }
-
- public static String getEscapedString(String s) {
- StringBuilder result = new StringBuilder();
- result.append('"');
-
- char[] chars = s.toCharArray();
-
- for (char c : chars) {
- if (c == '\n') {
- result.append("\\n");
- } else if (c == '\r') {
- result.append("\\r");
- } else if (c == '\t') {
- result.append("\\t");
- } else if (c == '\f') {
- result.append("\\f");
- } else if (c == '\b') {
- result.append("\\b");
- } else if (c == '\\') {
- result.append("\\\\");
- } else if (c == '"') {
- result.append("\\\"");
- } else {
- if (c < 0x20 || c > 0x7F) {
- result.append(toCharExpression(c));
- } else {
- result.append(c);
- }
- }
- }
-
- result.append('"');
-
- return result.toString();
- }
-
- public static String getEscapedStringsArray(Iterable<String> strings) {
- StringBuilder sb = new StringBuilder();
-
- if (strings != null) {
- for (String string : strings) {
- if (sb.length() > 0) {
- sb.append(", ");
- }
-
- sb.append(getEscapedString(string));
- }
- }
-
- return sb.toString();
- }
-
- public static boolean isEmpty(String s) {
- return s == null || s.length() == 0;
- }
-
- /**
- * Returns true if the char isalpha() or isdigit().
- */
- public static boolean isalnum(char c) {
- return isalpha(c) || isdigit(c);
- }
-
- /**
- * Returns true if the char isupper() or islower().
- */
- public static boolean isalpha(char c) {
- return isupper(c) || islower(c);
- }
-
- /**
- * Returns true if the char is from 'A' to 'Z' inclusive.
- */
- public static boolean isupper(char c) {
- return (c >= 'A') && (c <= 'Z');
- }
-
- /**
- * Returns true if the char is from 'a' to 'z' inclusive.
- */
- public static boolean islower(char c) {
- return (c >= 'a') && (c <= 'z');
- }
-
- /**
- * Returns true if the char is from '0' to '9' inclusive.
- */
- public static boolean isdigit(char c) {
- return (c >= '0') && (c <= '9');
- }
-
-}
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/AstLiteralTreeNode.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/AstLiteralTreeNode.java 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/AstLiteralTreeNode.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -28,7 +28,7 @@
import org.jboss.el.parser.Node;
import org.richfaces.cdk.parser.el.ELVisitor;
import org.richfaces.cdk.parser.el.ParsingException;
-import org.richfaces.cdk.parser.el.StringUtils;
+import static org.richfaces.cdk.util.JavaUtils.getEscapedString;
import org.richfaces.cdk.parser.el.Type;
import org.richfaces.cdk.parser.el.types.TypesFactory;
@@ -46,7 +46,7 @@
@Override
public void visit(StringBuilder sb, Map<String, Type> context, ELVisitor visitor) throws ParsingException {
if (getNode().getImage() != null) {
- sb.append(StringUtils.getEscapedString(getNode().getImage()));
+ sb.append(getEscapedString(getNode().getImage()));
visitor.setVariableType(TypesFactory.getType(String.class));
}
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/AstStringTreeNode.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/AstStringTreeNode.java 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/AstStringTreeNode.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -29,7 +29,7 @@
import org.jboss.el.parser.Node;
import org.richfaces.cdk.parser.el.ELVisitor;
import org.richfaces.cdk.parser.el.ParsingException;
-import org.richfaces.cdk.parser.el.StringUtils;
+import static org.richfaces.cdk.util.JavaUtils.getEscapedString;
import org.richfaces.cdk.parser.el.Type;
import org.richfaces.cdk.parser.el.types.TypesFactory;
@@ -46,7 +46,7 @@
@Override
public void visit(StringBuilder sb, Map<String, Type> context, ELVisitor visitor) throws ParsingException {
- sb.append(StringUtils.getEscapedString(((AstString) getNode()).getString()));
+ sb.append(getEscapedString(((AstString) getNode()).getString()));
visitor.setVariableType(TypesFactory.getType(String.class));
}
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/EqualityTestTreeNode.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/EqualityTestTreeNode.java 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/parser/el/node/EqualityTestTreeNode.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -51,6 +51,26 @@
this.negateValue = negateValue;
}
+ private boolean isPrimitive(Type type) {
+ return type.getRawType().isPrimitive();
+ }
+
+ private boolean useIsEqualsMethod(Type firstType, Type secondType) {
+ if (firstType.isNullType() && !isPrimitive(secondType)) {
+ return false;
+ }
+
+ if (secondType.isNullType() && !isPrimitive(firstType)) {
+ return false;
+ }
+
+ if (isPrimitive(firstType) && isPrimitive(secondType)) {
+ return false;
+ }
+
+ return true;
+ }
+
/* (non-Javadoc)
* @see org.richfaces.cdk.parser.el.node.AbstractTreeNode#visit(java.lang.StringBuilder, java.util.Map, org.richfaces.cdk.parser.el.ELVisitor)
*/
@@ -61,8 +81,7 @@
String secondChildOutput = getChildOutput(1, context, visitor);
Type secondChildType = visitor.getVariableType();
- if (!firstChildType.getRawType().isPrimitive() ||
- !secondChildType.getRawType().isPrimitive()) {
+ if (useIsEqualsMethod(firstChildType, secondChildType)) {
if (negateValue) {
sb.append(ELNodeConstants.EXCLAMATION_MARK);
Added: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/QNameComparator.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/QNameComparator.java (rev 0)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/QNameComparator.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -0,0 +1,55 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.cdk.templatecompiler;
+
+import static org.richfaces.cdk.util.ComparatorUtils.nullSafeCompare;
+
+import java.util.Comparator;
+
+import javax.xml.namespace.QName;
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public final class QNameComparator implements Comparator<QName> {
+
+ public static final Comparator<QName> QNAME_COMPARATOR = new QNameComparator();
+
+ private QNameComparator() {
+ //private constructor
+ }
+
+ @Override
+ public int compare(QName o1, QName o2) {
+ int result;
+
+ result = nullSafeCompare(o1.getNamespaceURI(), o2.getNamespaceURI());
+
+ if (result == 0) {
+ result = nullSafeCompare(o1.getLocalPart(), o2.getLocalPart());
+ }
+
+ return result;
+ }
+
+}
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassVisitor.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassVisitor.java 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/RendererClassVisitor.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -23,6 +23,10 @@
package org.richfaces.cdk.templatecompiler;
+import static org.richfaces.cdk.templatecompiler.QNameComparator.QNAME_COMPARATOR;
+import static org.richfaces.cdk.util.JavaUtils.getEscapedString;
+import static org.richfaces.cdk.util.JavaUtils.getEscapedStringsArray;
+
import java.io.IOException;
import java.util.Collection;
import java.util.Collections;
@@ -59,7 +63,6 @@
import org.richfaces.cdk.parser.el.ELParserUtils;
import org.richfaces.cdk.parser.el.ELVisitor;
import org.richfaces.cdk.parser.el.ParsingException;
-import org.richfaces.cdk.parser.el.StringUtils;
import org.richfaces.cdk.parser.el.Type;
import org.richfaces.cdk.parser.el.types.TypesFactory;
import org.richfaces.cdk.templatecompiler.model.AnyElement;
@@ -185,16 +188,17 @@
abstract boolean isServiceMethodRequired(ELVisitor visitor);
void createMethod(JavaClass generatedClass) {
- JavaMethod conversionMethod = new JavaMethod(name, returnType, arguments);
+ JavaMethod serviceMethod = new JavaMethod(name, returnType, arguments);
- conversionMethod.addModifier(JavaModifier.PRIVATE);
- conversionMethod.addModifier(JavaModifier.FINAL);
+ serviceMethod.addModifier(JavaModifier.PRIVATE);
+ serviceMethod.addModifier(JavaModifier.STATIC);
+ serviceMethod.addModifier(JavaModifier.FINAL);
- MethodBody conversionMethodBody = new MethodBody(conversionMethod);
- conversionMethod.setMethodBody(conversionMethodBody);
- conversionMethodBody.addStatement(createMethodBodyStatement());
+ MethodBody serviceMethodBody = new MethodBody(serviceMethod);
+ serviceMethod.setMethodBody(serviceMethodBody);
+ serviceMethodBody.addStatement(createMethodBodyStatement());
- generatedClass.addMethod(conversionMethod);
+ generatedClass.addMethod(serviceMethod);
}
}
@@ -317,16 +321,16 @@
StringBuilder sb = new StringBuilder();
sb.append("new ComponentAttribute(");
- sb.append(StringUtils.getEscapedString(htmlAttributeName));
+ sb.append(getEscapedString(htmlAttributeName));
sb.append(")");
String attributeName;
- if (!StringUtils.isEmpty(componentAttributeName)) {
+ if (!Strings.isEmpty(componentAttributeName)) {
attributeName = componentAttributeName;
sb.append(".setComponentAttributeName(");
- sb.append(StringUtils.getEscapedString(componentAttributeName));
+ sb.append(getEscapedString(componentAttributeName));
sb.append(")");
} else {
attributeName = htmlAttributeName;
@@ -348,7 +352,7 @@
}
);
- sb.append(StringUtils.getEscapedStringsArray(eventNamesStrings));
+ sb.append(getEscapedStringsArray(eventNamesStrings));
sb.append("})");
}
@@ -517,7 +521,10 @@
boolean shouldEncodePassThrough = false;
String[] passThroughExclusions = null;
- for (Map.Entry<QName, Object> attribute : elementAttributes.entrySet()) {
+ Map<QName, Object> sortedElementAttributes = new TreeMap<QName, Object>(QNAME_COMPARATOR);
+ sortedElementAttributes.putAll(elementAttributes);
+
+ for (Map.Entry<QName, Object> attribute : sortedElementAttributes.entrySet()) {
QName attributeName = attribute.getKey();
Object attributeValue = attribute.getValue();
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkChooseElement.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkChooseElement.java 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkChooseElement.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -21,10 +21,6 @@
*/
package org.richfaces.cdk.templatecompiler.model;
-import java.util.List;
-
-import javax.xml.bind.annotation.XmlElement;
-import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlRootElement;
import org.richfaces.cdk.CdkException;
@@ -36,20 +32,6 @@
@XmlRootElement(name = "choose", namespace = Template.JSTL_CORE_NAMESPACE)
public class CdkChooseElement extends ModelFragment {
- @XmlElements({
- @XmlElement(name = "when", namespace = Template.JSTL_CORE_NAMESPACE, type = CdkWhenElement.class),
- @XmlElement(name = "otherwise", namespace = Template.JSTL_CORE_NAMESPACE, type = CdkOtherwiseElement.class)
- })
- @Override
- public List<Object> getChildren() {
- return super.getChildren();
- }
-
- @Override
- public void setChildren(List<Object> body) {
- super.setChildren(body);
- }
-
/* (non-Javadoc)
* @see org.richfaces.cdk.templatecompiler.model.ModelFragment#visit(org.richfaces.cdk.templatecompiler.model.TemplateVisitor)
*/
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkOtherwiseElement.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkOtherwiseElement.java 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkOtherwiseElement.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -21,12 +21,15 @@
*/
package org.richfaces.cdk.templatecompiler.model;
+import javax.xml.bind.annotation.XmlRootElement;
+
import org.richfaces.cdk.CdkException;
/**
* @author Nick Belaevski
* @since 4.0
*/
+@XmlRootElement(name = "otherwise", namespace = Template.JSTL_CORE_NAMESPACE)
public class CdkOtherwiseElement extends ModelFragment {
@Override
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkWhenElement.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkWhenElement.java 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/CdkWhenElement.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -21,12 +21,15 @@
*/
package org.richfaces.cdk.templatecompiler.model;
+import javax.xml.bind.annotation.XmlRootElement;
+
import org.richfaces.cdk.CdkException;
/**
* @author Nick Belaevski
* @since 4.0
*/
+@XmlRootElement(name = "when", namespace = Template.JSTL_CORE_NAMESPACE)
public class CdkWhenElement extends CdkConditionalJstlElementBase {
@Override
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/ModelFragment.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/ModelFragment.java 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/templatecompiler/model/ModelFragment.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -20,6 +20,8 @@
CdkIfElement.class,
CdkObjectElement.class,
CdkChooseElement.class,
+ CdkWhenElement.class,
+ CdkOtherwiseElement.class,
CdkForEachElement.class
})
public class ModelFragment implements LeafModelElement {
Added: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/util/ComparatorUtils.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/util/ComparatorUtils.java (rev 0)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/util/ComparatorUtils.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -0,0 +1,61 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.cdk.util;
+
+/**
+ * Helper methods for comparable types
+ *
+ * @author Nick Belaevski
+ */
+public final class ComparatorUtils {
+
+ private ComparatorUtils() {
+ //private constructor
+ }
+
+ /**
+ * <p>Does null-safe comparison of mutually comparable objects.</p>
+ *
+ * <p>Obeys common rules of {@link Comparable#compareTo(Object)} methods if both objects to compare
+ * are non-null.</p>
+ *
+ * <p>If one of the objects is <code>null</code>, but the other is not, then <code>null</code> object
+ * is considered to be less than non-null.</p>
+ *
+ * <p>Two <code>null</code> objects are considered as equal.</p>
+ *
+ * @param <T> the type of objects that this object may be compared to
+ * @param t1 the first object
+ * @param t2 the second object
+ * @return
+ */
+ public static <T extends Comparable<T>> int nullSafeCompare(T t1, T t2) {
+ if (t1 == null) {
+ return t2 == null ? 0 : -1;
+ } else if (t2 == null) {
+ return 1;
+ } else {
+ return t1.compareTo(t2);
+ }
+ }
+
+}
Added: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/util/JavaUtils.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/util/JavaUtils.java (rev 0)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/util/JavaUtils.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -0,0 +1,169 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.cdk.util;
+
+import java.util.Locale;
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public final class JavaUtils {
+
+ private JavaUtils() {
+ // private constructor
+ }
+
+ /**
+ * <p class="changed_added_4_0">
+ * Transform character to Java code expression
+ * </p>
+ *
+ * @param c
+ * @return
+ */
+ private static String toCharExpression(char c) {
+ String prependingZeroesString;
+ String hexString = Integer.toHexString(c);
+
+ switch (hexString.length()) {
+ case 1:
+ prependingZeroesString = "000";
+ break;
+ case 2:
+ prependingZeroesString = "00";
+ break;
+ case 3:
+ prependingZeroesString = "0";
+ break;
+ case 4:
+ prependingZeroesString = "";
+ break;
+ default:
+ throw new IllegalArgumentException();
+ }
+
+ return "\\u" + prependingZeroesString + hexString.toUpperCase(Locale.US);
+ }
+
+ /**
+ * <p class="changed_added_4_0">
+ * Escapes string into Java language expression
+ * </p>
+ *
+ * @param s
+ * @return
+ */
+ public static String getEscapedString(String s) {
+ StringBuilder result = new StringBuilder();
+ result.append('"');
+
+ char[] chars = s.toCharArray();
+
+ for (char c : chars) {
+ if (c == '\n') {
+ result.append("\\n");
+ } else if (c == '\r') {
+ result.append("\\r");
+ } else if (c == '\t') {
+ result.append("\\t");
+ } else if (c == '\f') {
+ result.append("\\f");
+ } else if (c == '\b') {
+ result.append("\\b");
+ } else if (c == '\\') {
+ result.append("\\\\");
+ } else if (c == '"') {
+ result.append("\\\"");
+ } else {
+ if (c < 0x20 || c > 0x7F) {
+ result.append(toCharExpression(c));
+ } else {
+ result.append(c);
+ }
+ }
+ }
+
+ result.append('"');
+
+ return result.toString();
+ }
+
+ /**
+ * <p class="changed_added_4_0">
+ * Escapes sequence of strings into comma-separated sequence of Java language expressions
+ * </p>
+ *
+ * @param strings
+ * @return
+ */
+ public static String getEscapedStringsArray(Iterable<String> strings) {
+ StringBuilder sb = new StringBuilder();
+
+ if (strings != null) {
+ for (String string : strings) {
+ if (sb.length() > 0) {
+ sb.append(", ");
+ }
+
+ sb.append(getEscapedString(string));
+ }
+ }
+
+ return sb.toString();
+ }
+
+ /**
+ * Returns true if the char isalpha() or isdigit().
+ */
+ public static boolean isalnum(char c) {
+ return isalpha(c) || isdigit(c);
+ }
+
+ /**
+ * Returns true if the char isupper() or islower().
+ */
+ public static boolean isalpha(char c) {
+ return isupper(c) || islower(c);
+ }
+
+ /**
+ * Returns true if the char is from 'A' to 'Z' inclusive.
+ */
+ public static boolean isupper(char c) {
+ return (c >= 'A') && (c <= 'Z');
+ }
+
+ /**
+ * Returns true if the char is from 'a' to 'z' inclusive.
+ */
+ public static boolean islower(char c) {
+ return (c >= 'a') && (c <= 'z');
+ }
+
+ /**
+ * Returns true if the char is from '0' to '9' inclusive.
+ */
+ public static boolean isdigit(char c) {
+ return (c >= '0') && (c <= '9');
+ }
+}
Modified: root/cdk/trunk/plugins/generator/src/test/java/org/richfaces/cdk/parser/el/test/ELParserTest.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/test/java/org/richfaces/cdk/parser/el/test/ELParserTest.java 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/generator/src/test/java/org/richfaces/cdk/parser/el/test/ELParserTest.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -21,7 +21,10 @@
package org.richfaces.cdk.parser.el.test;
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
import java.util.HashMap;
import java.util.List;
@@ -100,11 +103,23 @@
parseExpression("#{1 ne 3}");
assertEquals("(1 != 3)", visitor.getParsedExpression());
assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertFalse(visitor.isUseEqualsCheck());
parseExpression("#{2 != 3}");
assertEquals("(2 != 3)", visitor.getParsedExpression());
assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertFalse(visitor.isUseEqualsCheck());
+ parseExpression("#{action != 2}");
+ assertEquals("!isEqual(action,2)", visitor.getParsedExpression());
+ assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertTrue(visitor.isUseEqualsCheck());
+
+ parseExpression("#{2 ne action}");
+ assertEquals("!isEqual(2,action)", visitor.getParsedExpression());
+ assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertTrue(visitor.isUseEqualsCheck());
+
parseExpression("#{action != clientId}");
assertEquals("!isEqual(action,clientId)", visitor.getParsedExpression());
assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
@@ -114,6 +129,16 @@
assertEquals("!isEqual(action,clientId)", visitor.getParsedExpression());
assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
assertTrue(visitor.isUseEqualsCheck());
+
+ parseExpression("#{action ne null}");
+ assertEquals("(action != null)", visitor.getParsedExpression());
+ assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertFalse(visitor.isUseEqualsCheck());
+
+ parseExpression("#{2 != null}");
+ assertEquals("!isEqual(2,null)", visitor.getParsedExpression());
+ assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertTrue(visitor.isUseEqualsCheck());
}
@Test
@@ -190,11 +215,23 @@
parseExpression("#{1 eq 2}");
assertEquals("(1 == 2)", visitor.getParsedExpression());
assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertFalse(visitor.isUseEqualsCheck());
parseExpression("#{3 == 2}");
assertEquals("(3 == 2)", visitor.getParsedExpression());
assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertFalse(visitor.isUseEqualsCheck());
+ parseExpression("#{action == 2}");
+ assertEquals("isEqual(action,2)", visitor.getParsedExpression());
+ assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertTrue(visitor.isUseEqualsCheck());
+
+ parseExpression("#{2 eq action}");
+ assertEquals("isEqual(2,action)", visitor.getParsedExpression());
+ assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertTrue(visitor.isUseEqualsCheck());
+
parseExpression("#{action == clientId}");
assertEquals("isEqual(action,clientId)", visitor.getParsedExpression());
assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
@@ -204,6 +241,16 @@
assertEquals("isEqual(action,clientId)", visitor.getParsedExpression());
assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
assertTrue(visitor.isUseEqualsCheck());
+
+ parseExpression("#{action eq null}");
+ assertEquals("(action == null)", visitor.getParsedExpression());
+ assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertFalse(visitor.isUseEqualsCheck());
+
+ parseExpression("#{2 == null}");
+ assertEquals("isEqual(2,null)", visitor.getParsedExpression());
+ assertEquals(Boolean.TYPE, visitor.getVariableType().getRawType());
+ assertTrue(visitor.isUseEqualsCheck());
}
@Test
Added: root/cdk/trunk/plugins/generator/src/test/java/org/richfaces/cdk/util/ComparatorUtilsTest.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/test/java/org/richfaces/cdk/util/ComparatorUtilsTest.java (rev 0)
+++ root/cdk/trunk/plugins/generator/src/test/java/org/richfaces/cdk/util/ComparatorUtilsTest.java 2010-02-11 20:51:58 UTC (rev 16444)
@@ -0,0 +1,53 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.cdk.util;
+
+import static org.junit.Assert.*;
+import static org.richfaces.cdk.util.ComparatorUtils.*;
+
+import org.junit.Test;
+
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public class ComparatorUtilsTest {
+
+ @Test
+ public void testNullSafeCompare() throws Exception {
+ assertTrue(nullSafeCompare("a", "b") < 0);
+ assertTrue(nullSafeCompare("b", "a") > 0);
+ assertTrue(nullSafeCompare("a", "a") == 0);
+
+ assertTrue(nullSafeCompare("", "a") < 0);
+ assertTrue(nullSafeCompare("a", "") > 0);
+ assertTrue(nullSafeCompare("", "") == 0);
+
+ assertTrue(nullSafeCompare(null, "a") < 0);
+ assertTrue(nullSafeCompare("a", null) > 0);
+ assertTrue(nullSafeCompare((String) null, null) == 0);
+
+ assertTrue(nullSafeCompare(null, "") < 0);
+ assertTrue(nullSafeCompare("", null) > 0);
+ }
+}
Modified: root/cdk/trunk/plugins/maven-cdk-plugin/pom.xml
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/pom.xml 2010-02-11 17:35:12 UTC (rev 16443)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/pom.xml 2010-02-11 20:51:58 UTC (rev 16444)
@@ -115,6 +115,7 @@
<settingsFile>src/it/settings.xml</settingsFile>
<goals>
<goal>compile</goal>
+ <goal>test</goal>
</goals>
</configuration>
<executions>
15 years, 7 months