JBoss Rich Faces SVN: r10398 - Reports/3.2.2 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2008-09-10 09:09:10 -0400 (Wed, 10 Sep 2008)
New Revision: 10398
Added:
branches/3.2.x/test-applications/qa/Test Reports/3.2.2/ComponentsAssignment3.2.2.CR4.xls
Log:
Added: branches/3.2.x/test-applications/qa/Test Reports/3.2.2/ComponentsAssignment3.2.2.CR4.xls
===================================================================
(Binary files differ)
Property changes on: branches/3.2.x/test-applications/qa/Test Reports/3.2.2/ComponentsAssignment3.2.2.CR4.xls
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 3 months
JBoss Rich Faces SVN: r10397 - in trunk/ui/extendedDataTable/src/main: templates/org/richfaces and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: pkawiak
Date: 2008-09-10 08:43:36 -0400 (Wed, 10 Sep 2008)
New Revision: 10397
Modified:
trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js
trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableSelection.js
trunk/ui/extendedDataTable/src/main/templates/org/richfaces/htmlExtendedDataTable.jspx
Log:
RF-4325 (component not wrapped with form caused script hang)
fixed bug with JS errors present when refreshing a hidden modal
panel with extDt.
Modified: trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js
===================================================================
--- trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js 2008-09-10 12:35:36 UTC (rev 10396)
+++ trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js 2008-09-10 12:43:36 UTC (rev 10397)
@@ -43,19 +43,20 @@
//remove listeners
this.selectionManager.removeListeners();
- this.header.removeListeners();
-
- var l = this.groupRows.length;
- for(var i = 0; i < l; i++) {
- Utils.DOM.Event.removeListeners(this.groupRows[i]);
- }
-
- var headerChildren = this.header.getColumnCells();
- l = headerChildren.length;
- for (var i=0; i<l-1; i++) {
- Utils.DOM.Event.removeListeners(headerChildren[i]);
- };
-
+ if (this.header) {
+ this.header.removeListeners();
+ var headerChildren = this.header.getColumnCells();
+ l = headerChildren.length;
+ for (var i=0; i<l-1; i++) {
+ Utils.DOM.Event.removeListeners(headerChildren[i]);
+ };
+ }
+ if (this.groupRows) {
+ var l = this.groupRows.length;
+ for(var i = 0; i < l; i++) {
+ Utils.DOM.Event.removeListeners(this.groupRows[i]);
+ }
+ }
//null all references to DOM elements
delete this.selectionManager;
delete this.header;
Modified: trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableSelection.js
===================================================================
--- trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableSelection.js 2008-09-10 12:35:36 UTC (rev 10396)
+++ trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableSelection.js 2008-09-10 12:43:36 UTC (rev 10397)
@@ -284,7 +284,8 @@
if(!groupingExists) { //simple listener binding
if(this.options.selectionMode != "none") {
for(var i = 0; i < this.rowCount; i++) {
- rowIndex = Number(nrows[i].id.split(this.prefix)[1].split(":")[2]);
+ var arr = nrows[i].id.split(this.prefix)[1].split(":");
+ rowIndex = Number(arr[arr.length-1]);
this.addListener(nrows[i], rowIndex);
}
}
@@ -322,8 +323,9 @@
lastGroupId = groupId;
} else {
if(this.options.selectionMode != "none") {
- rowIndex = Number(nrows[i].id.split(this.prefix)[1].split(":")[2]);
- this.addListener(nrows[i], rowIndex);
+ var arr = nrows[i].id.split(this.prefix)[1].split(":");
+ rowIndex = Number(arr[arr.length-1]);
+ this.addListener(nrows[i], rowIndex);
}
groupItems[groupItem++] = nrows[i];
if ( (i==0) && (bHideFirstRow) ) {
@@ -581,8 +583,12 @@
this.removeRowFromSelection(j);
}
}
+ if(range[0] == range[1]) {
+ this.addRowToSelection(range[0]);
+ return;
+ }
var i = range[0];
- range[1] = (range[1] + 1) % this.rowCount;
+ range[1] = (range[1] + 1) % this.rowCount;
while (i != range[1]) {
this.addRowToSelection(i);
i = (i + 1) % this.rowCount;
Modified: trunk/ui/extendedDataTable/src/main/templates/org/richfaces/htmlExtendedDataTable.jspx
===================================================================
--- trunk/ui/extendedDataTable/src/main/templates/org/richfaces/htmlExtendedDataTable.jspx 2008-09-10 12:35:36 UTC (rev 10396)
+++ trunk/ui/extendedDataTable/src/main/templates/org/richfaces/htmlExtendedDataTable.jspx 2008-09-10 12:43:36 UTC (rev 10397)
@@ -83,7 +83,9 @@
<div id="#{clientId}:cs" class="extdt-hsplit" style="display: none;"/>
<table id="#{clientId}:tu"
class="extdt-table-layout rich-table #{component.attributes['styleClass']}"
- style="visibility:hidden;"
+ style="visibility:hidden;"
+ cellpadding="0"
+ cellspacing="0"
width="100%"
>
<colgroup id="#{clientId}:colgroup:header">
@@ -96,8 +98,10 @@
<td colspan="#{columnsCount}" style="padding: 0px;">
<div id="#{clientId}:sd" class="extdt-content" style="height:50px;width:100%;">
<table id="#{clientId}:n" width="100%"
- class="extdt-table-layout rich-table #{component.attributes['styleClass']}"
- style="#{component.attributes['style']}"
+ class="extdt-table-layout rich-table #{component.attributes['styleClass']}"
+ style="#{component.attributes['style']}"
+ cellpadding="0"
+ cellspacing="0"
>
<f:call name="utils.encodePassThruWithExclusions">
<f:parameter value="height,value,name,type,id,class,rows,style,width" />
16 years, 3 months
JBoss Rich Faces SVN: r10396 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-09-10 08:35:36 -0400 (Wed, 10 Sep 2008)
New Revision: 10396
Modified:
trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml
Log:
https://jira.jboss.org/jira/browse/RF-4368 - sorting info is updated
Modified: trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml 2008-09-10 12:22:50 UTC (rev 10395)
+++ trunk/docs/userguide/en/src/main/docbook/included/scrollableDataTable.xml 2008-09-10 12:35:36 UTC (rev 10396)
@@ -99,6 +99,7 @@
for sorting the table. In case the
<emphasis role="bold"><property><rich:scrollableDataTable></property></emphasis> is already sorted by some column
and the header of this column has been clicked again - the sorting is reversed. </para>
+ <para>After sorting selection that was made before is reset</para>
<para>
<emphasis role="bold">The typical variant of using:</emphasis>
16 years, 3 months
JBoss Rich Faces SVN: r10395 - trunk/samples/richfaces-demo/src/main/webapp/richfaces/region.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-09-10 08:22:50 -0400 (Wed, 10 Sep 2008)
New Revision: 10395
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/region/usage.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-398- text on demo site is corrected
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/region/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/region/usage.xhtml 2008-09-10 11:15:29 UTC (rev 10394)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/region/usage.xhtml 2008-09-10 12:22:50 UTC (rev 10395)
@@ -21,7 +21,7 @@
<ul>
<li>avoiding the aborting of the JSF lifecycle processing during the validation of other
form input unnecessary for given ajax request;</li>
- <li>defining the different strategies when events will be deliveried
+ <li>defining the different strategies when events will be delivered
(immediate="true/false")</li>
<li>showing an individual indicator of an ajax status</li>
<li>increasing the performance of the rendering processing (selfRendered="true/false", renderRegionOnly="true/false")</li>
@@ -30,7 +30,7 @@
<p>
The following two examples show the situation when a validation error does not
allow to process an ajax input. Type the name. The outputText component should
- reappear after you. However, in the first case, this activity will be aboted because
+ reappear after you. However, in the first case, this activity will be aborted because
of the other field with required="true". You will see only the error message
while the "Job" field is empty.
</p>
@@ -58,12 +58,12 @@
Ajax region might limit the set of areas to be re-rendered if regionRenderOnly="true". If
this attribute is set, only the marked area(s) inside the given region will be
included in the list for re-render. The marked area(s) outside of the
- region will be ommited.
+ region will be omitted.
</p>
<p>
The area(s) marked for update might be re-rendered directly from the component tree
rather than involving jsp (xhtml) page processing if selfRendered attribute is set
- to true. This might bust the performance to decrease time spending on Render Respose
+ to true. This might bust the performance to decrease time spending on Render Response
phase. However, you need to be aware that the artifact that are not included in the
component tree will disappear from your page after the page is updated.<br/>
Most known component that is not stored in the component tree is f:verbatim. It is often
16 years, 3 months
JBoss Rich Faces SVN: r10394 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: cluts
Date: 2008-09-10 07:15:29 -0400 (Wed, 10 Sep 2008)
New Revision: 10394
Modified:
trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml
Log:
RF-4442 - information have been corrected, methods have been described
Modified: trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml 2008-09-10 07:32:06 UTC (rev 10393)
+++ trunk/docs/userguide/en/src/main/docbook/included/fileUpload.xml 2008-09-10 11:15:29 UTC (rev 10394)
@@ -47,7 +47,7 @@
<emphasis role="bold">Example:</emphasis>
</para>
<programlisting role="XML"><![CDATA[...
-<rich:fileUpload />
+<rich:fileUpload />
...]]></programlisting>
</section>
<section>
@@ -57,7 +57,7 @@
<emphasis role="bold">Example:</emphasis>
</para>
<programlisting role="JAVA"><![CDATA[import org.richfaces.component.html.HtmlFileUpload;
-...
+...
HtmlFileUpload myFileUpload = new HtmlFileUpload();
...]]></programlisting>
</section>
@@ -127,8 +127,27 @@
<programlisting role="XML"><![CDATA[...
<rich:fileUpload uploadData="#{bean.data}" fileUploadListener="#{bean.listener}"/>
...]]></programlisting>
-
-
+ <para>
+ The following methods of processing the uploaded files are:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <code>isMultiUpload()</code>. It returns "true" if several files have been uploaded
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <code>getUploadItems()</code>. It returns the list of the uploaded files.
+ If one file was uploaded, the <code>getUploadItems()</code> method will return the list consisting of one file
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <code>getUploadItem()</code>. It returns the whole list in case of uploading one file only. If several files were uploaded, the <code>getUploadItem()</code> method will return the first element of the uploaded files list.
+ </para>
+ </listitem>
+ </itemizedlist>
<para> Automatically files uploading could be performed by means of the <emphasis>
<property> "immediateUpload"</property>
</emphasis> attribute. If the value of this attribute is
@@ -347,7 +366,7 @@
function _onaddHandler (e) {
var i = 0;
for (; i < e.memo.entries.lenght; i++) {
- alert(e.memo.entries[i].creator); //Shows creators of the added files
+ alert(e.memo.entries[i].creator); //Shows creators of the added files
}
}
@@ -418,7 +437,7 @@
There is a number of facets providing for this component:
<emphasis>
<property> "header"</property></emphasis>
-
+
<emphasis>
<property> "footer"</property></emphasis>
<emphasis>
@@ -557,7 +576,7 @@
acceptedTypes="jpg, gif, png, bmp">
<a4j:support event="onuploadcomplete" reRender="info" />
</rich:fileUpload>
-<h:commandButton onclick="if($('j_id232:upload').component.entries[0].state == FileUploadEntry.UPLOAD_SUCCESS) alert ('DONE');" value="Check file state"/>
+<h:commandButton onclick="if($('j_id232:upload').component.entries[0].state == FileUploadEntry.UPLOAD_SUCCESS) alert ('DONE');" value="Check file state"/>
...]]></programlisting>
@@ -642,25 +661,6 @@
should be used together with
commands </entry>
</row>
-
- <row>
- <entry> isMultiUpload() </entry>
- <entry> Returns "true"
- if several files have been
- uploaded. </entry>
- </row>
-
- <row>
- <entry> getUploadItems() </entry>
- <entry> Returns the list of the uploaded
- files. If several files were
- uploaded the first element of
- this list will be returned. If
- one file was uploaded, the
- list consisting of one file
- will be returned </entry>
- </row>
-
</tbody>
</tgroup>
</table>
@@ -1610,12 +1610,12 @@
</para>
<programlisting role="XML"><![CDATA[...
<h:form>
- <rich:fileUpload uploadData="#{bean.data}" addControlLabel="myLabel" autoclear="true" maxFilesQuantity="2" fileUploadListener="#{bean.listener}"
+ <rich:fileUpload uploadData="#{bean.data}" addControlLabel="myLabel" autoclear="true" maxFilesQuantity="2" fileUploadListener="#{bean.listener}"
acceptedTypes="html" immediateUpload="true"/>
<a4j:commandLink style="font-weight: bold; width: 200px;" value="Show files uploaded:" reRender="files_list">
<h:dataTable value="#{bean.fileList}" var="file" id="files_list" style="width: 500px">
<h:column>
- <h:outputText value="#{file.fileName}"></h:outputText>
+ <h:outputText value="#{file.fileName}"></h:outputText>
</h:column>
</h:dataTable>
</h:form>
16 years, 3 months
JBoss Rich Faces SVN: r10393 - branches/3.2.x/framework/impl/src/main/java/org/richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: dmorozov
Date: 2008-09-10 03:32:06 -0400 (Wed, 10 Sep 2008)
New Revision: 10393
Modified:
branches/3.2.x/framework/impl/src/main/java/org/richfaces/VersionBean.java
Log:
Invalid symbol in 1,0
Prevent compiling sources under Linux system with error: illegal character: \65279
Modified: branches/3.2.x/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/3.2.x/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-09-10 00:19:21 UTC (rev 10392)
+++ branches/3.2.x/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-09-10 07:32:06 UTC (rev 10393)
@@ -1,4 +1,4 @@
-/**
+/**
* License Agreement.
*
* Rich Faces - Natural Ajax for Java Server Faces (JSF)
16 years, 3 months
JBoss Rich Faces SVN: r10392 - in branches/3.2.x: cdk and 176 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-09 20:19:21 -0400 (Tue, 09 Sep 2008)
New Revision: 10392
Modified:
branches/3.2.x/cdk/generator/pom.xml
branches/3.2.x/cdk/maven-archetype-jsf-component/pom.xml
branches/3.2.x/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
branches/3.2.x/cdk/maven-archetype-jsfwebapp/pom.xml
branches/3.2.x/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
branches/3.2.x/cdk/maven-archetype-plug-n-skin/pom.xml
branches/3.2.x/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
branches/3.2.x/cdk/maven-cdk-plugin/pom.xml
branches/3.2.x/cdk/maven-javascript-plugin/pom.xml
branches/3.2.x/cdk/pom.xml
branches/3.2.x/docs/cdkguide/en/pom.xml
branches/3.2.x/docs/cdkguide/pom.xml
branches/3.2.x/docs/faq/en/pom.xml
branches/3.2.x/docs/faq/pom.xml
branches/3.2.x/docs/highlight/pom.xml
branches/3.2.x/docs/migrationguide/en/pom.xml
branches/3.2.x/docs/migrationguide/pom.xml
branches/3.2.x/docs/pom.xml
branches/3.2.x/docs/userguide/en/pom.xml
branches/3.2.x/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
branches/3.2.x/docs/userguide/pom.xml
branches/3.2.x/docs/xslt/en/pom.xml
branches/3.2.x/docs/xslt/pom.xml
branches/3.2.x/extensions/gwt/pom.xml
branches/3.2.x/extensions/pom.xml
branches/3.2.x/extensions/seam/pom.xml
branches/3.2.x/extensions/trinidad/pom.xml
branches/3.2.x/framework/api/pom.xml
branches/3.2.x/framework/impl/pom.xml
branches/3.2.x/framework/impl/src/main/java/org/richfaces/VersionBean.java
branches/3.2.x/framework/pom.xml
branches/3.2.x/framework/test/pom.xml
branches/3.2.x/pom.xml
branches/3.2.x/samples/beanValidatorSample/pom.xml
branches/3.2.x/samples/calendar-sample/pom.xml
branches/3.2.x/samples/columnsDemo/pom.xml
branches/3.2.x/samples/combobox-sample/pom.xml
branches/3.2.x/samples/contextMenuDemo/pom.xml
branches/3.2.x/samples/darkX/pom.xml
branches/3.2.x/samples/dataFilterSliderDemo/pom.xml
branches/3.2.x/samples/dataTableDemo/pom.xml
branches/3.2.x/samples/datascroller-sample/pom.xml
branches/3.2.x/samples/dragDropDemo/pom.xml
branches/3.2.x/samples/dropdownmenu-sample/pom.xml
branches/3.2.x/samples/effect-sample/pom.xml
branches/3.2.x/samples/extendedDataTable-sample/pom.xml
branches/3.2.x/samples/fileUploadDemo/pom.xml
branches/3.2.x/samples/functions-demo/pom.xml
branches/3.2.x/samples/glassX/pom.xml
branches/3.2.x/samples/gmap-sample/pom.xml
branches/3.2.x/samples/hotKey-sample/pom.xml
branches/3.2.x/samples/inplaceInput-sample/pom.xml
branches/3.2.x/samples/inplaceSelect-sample/pom.xml
branches/3.2.x/samples/inputNumberSliderDemo/pom.xml
branches/3.2.x/samples/inputNumberSpinnerDemo/pom.xml
branches/3.2.x/samples/jQuery-sample/pom.xml
branches/3.2.x/samples/jira-data/pom.xml
branches/3.2.x/samples/laguna/pom.xml
branches/3.2.x/samples/listShuttleDemo/pom.xml
branches/3.2.x/samples/local-value-demo/pom.xml
branches/3.2.x/samples/modalpanel-sample/pom.xml
branches/3.2.x/samples/orderingListDemo/pom.xml
branches/3.2.x/samples/panel-sample/pom.xml
branches/3.2.x/samples/panelbar-sample/pom.xml
branches/3.2.x/samples/panelmenu-sample/pom.xml
branches/3.2.x/samples/pickList-sample/pom.xml
branches/3.2.x/samples/pom.xml
branches/3.2.x/samples/progressBarDemo/pom.xml
branches/3.2.x/samples/rich-message-demo/pom.xml
branches/3.2.x/samples/richfaces-art-datatable/pom.xml
branches/3.2.x/samples/richfaces-demo/pom.xml
branches/3.2.x/samples/richfaces-ear-demo/ejb/pom.xml
branches/3.2.x/samples/richfaces-ear-demo/pom.xml
branches/3.2.x/samples/richfaces-ear-demo/richfacesEAR/pom.xml
branches/3.2.x/samples/richfaces-ear-demo/webapp/pom.xml
branches/3.2.x/samples/scrollableDataTableDemo/pom.xml
branches/3.2.x/samples/seamEAR/ear/pom.xml
branches/3.2.x/samples/seamEAR/ejbs/pom.xml
branches/3.2.x/samples/seamEAR/pom.xml
branches/3.2.x/samples/seamEAR/primary-source/pom.xml
branches/3.2.x/samples/seamEAR/projects/logging/pom.xml
branches/3.2.x/samples/seamEAR/projects/pom.xml
branches/3.2.x/samples/seamEAR/wars/pom.xml
branches/3.2.x/samples/seamEAR/wars/seamWebapp/pom.xml
branches/3.2.x/samples/seamIntegration/pom.xml
branches/3.2.x/samples/separator-sample/pom.xml
branches/3.2.x/samples/simpleTogglePanel-sample/pom.xml
branches/3.2.x/samples/skins/pom.xml
branches/3.2.x/samples/sortingFilteringDemo/pom.xml
branches/3.2.x/samples/state-sample/pom.xml
branches/3.2.x/samples/stdcomponents-sample/pom.xml
branches/3.2.x/samples/suggestionbox-sample/pom.xml
branches/3.2.x/samples/tabPanelDemo/pom.xml
branches/3.2.x/samples/togglePanel-sample/pom.xml
branches/3.2.x/samples/tomahawkCompability/pom.xml
branches/3.2.x/samples/toolBarDemo/pom.xml
branches/3.2.x/samples/tooltip-sample/pom.xml
branches/3.2.x/samples/tree-demo/pom.xml
branches/3.2.x/samples/treeModelDemo/pom.xml
branches/3.2.x/samples/virtualEarth-sample/pom.xml
branches/3.2.x/sandbox/api/pom.xml
branches/3.2.x/sandbox/impl/pom.xml
branches/3.2.x/sandbox/pom.xml
branches/3.2.x/sandbox/samples/dialog-window-sample/pom.xml
branches/3.2.x/sandbox/samples/editor-sample/pom.xml
branches/3.2.x/sandbox/samples/fileUploadPOC/pom.xml
branches/3.2.x/sandbox/samples/panel2-sample/pom.xml
branches/3.2.x/sandbox/samples/pom.xml
branches/3.2.x/sandbox/samples/rex-demo/pom.xml
branches/3.2.x/sandbox/samples/simpleTogglePanel2-sample/pom.xml
branches/3.2.x/sandbox/ui/create.bat
branches/3.2.x/sandbox/ui/dialog-window/pom.xml
branches/3.2.x/sandbox/ui/editor/pom.xml
branches/3.2.x/sandbox/ui/panel2/pom.xml
branches/3.2.x/sandbox/ui/pom.xml
branches/3.2.x/sandbox/ui/rex-button/pom.xml
branches/3.2.x/sandbox/ui/rex-messageBox/pom.xml
branches/3.2.x/sandbox/ui/rex-resizable/pom.xml
branches/3.2.x/sandbox/ui/simpleTogglePanel2/pom.xml
branches/3.2.x/sandbox/ui/sortableHeader/pom.xml
branches/3.2.x/sandbox/ui/treeTable/pom.xml
branches/3.2.x/test-applications/facelets/pom.xml
branches/3.2.x/test-applications/jsp/pom.xml
branches/3.2.x/test-applications/pom.xml
branches/3.2.x/test-applications/seam/pom.xml
branches/3.2.x/test-applications/seleniumTest/pom.xml
branches/3.2.x/test-applications/seleniumTest/richfaces/pom.xml
branches/3.2.x/test-applications/seleniumTest/samples/pom.xml
branches/3.2.x/ui/assembly/pom.xml
branches/3.2.x/ui/beanValidator/pom.xml
branches/3.2.x/ui/calendar/pom.xml
branches/3.2.x/ui/columns/pom.xml
branches/3.2.x/ui/combobox/pom.xml
branches/3.2.x/ui/componentControl/pom.xml
branches/3.2.x/ui/contextMenu/pom.xml
branches/3.2.x/ui/core/pom.xml
branches/3.2.x/ui/create.bat
branches/3.2.x/ui/dataFilterSlider/pom.xml
branches/3.2.x/ui/dataTable/pom.xml
branches/3.2.x/ui/datascroller/pom.xml
branches/3.2.x/ui/drag-drop/pom.xml
branches/3.2.x/ui/dropdown-menu/pom.xml
branches/3.2.x/ui/effect/pom.xml
branches/3.2.x/ui/extendedDataTable/pom.xml
branches/3.2.x/ui/fileUpload/pom.xml
branches/3.2.x/ui/functions/pom.xml
branches/3.2.x/ui/gmap/pom.xml
branches/3.2.x/ui/hotKey/pom.xml
branches/3.2.x/ui/inplaceInput/pom.xml
branches/3.2.x/ui/inplaceSelect/pom.xml
branches/3.2.x/ui/inputnumber-slider/pom.xml
branches/3.2.x/ui/inputnumber-spinner/pom.xml
branches/3.2.x/ui/insert/pom.xml
branches/3.2.x/ui/jQuery/pom.xml
branches/3.2.x/ui/listShuttle/pom.xml
branches/3.2.x/ui/menu-components/pom.xml
branches/3.2.x/ui/message/pom.xml
branches/3.2.x/ui/modal-panel/pom.xml
branches/3.2.x/ui/orderingList/pom.xml
branches/3.2.x/ui/paint2D/pom.xml
branches/3.2.x/ui/panel/pom.xml
branches/3.2.x/ui/panelbar/pom.xml
branches/3.2.x/ui/panelmenu/pom.xml
branches/3.2.x/ui/pickList/pom.xml
branches/3.2.x/ui/pom.xml
branches/3.2.x/ui/progressBAR/pom.xml
branches/3.2.x/ui/scrollableDataTable/pom.xml
branches/3.2.x/ui/separator/pom.xml
branches/3.2.x/ui/simpleTogglePanel/pom.xml
branches/3.2.x/ui/spacer/pom.xml
branches/3.2.x/ui/state/pom.xml
branches/3.2.x/ui/suggestionbox/pom.xml
branches/3.2.x/ui/tabPanel/pom.xml
branches/3.2.x/ui/togglePanel/pom.xml
branches/3.2.x/ui/toolBar/pom.xml
branches/3.2.x/ui/tooltip/pom.xml
branches/3.2.x/ui/tree/pom.xml
branches/3.2.x/ui/treeModel/pom.xml
branches/3.2.x/ui/treeTable/pom.xml
branches/3.2.x/ui/virtualEarth/pom.xml
Log:
Version changed to 3.2.3-snapshot
Modified: branches/3.2.x/cdk/generator/pom.xml
===================================================================
--- branches/3.2.x/cdk/generator/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/cdk/generator/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: branches/3.2.x/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-jsf-component/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/cdk/maven-archetype-jsf-component/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: branches/3.2.x/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/3.2.x/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-jsfwebapp/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/cdk/maven-archetype-jsfwebapp/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: branches/3.2.x/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/3.2.x/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-plug-n-skin/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/cdk/maven-archetype-plug-n-skin/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: branches/3.2.x/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/3.2.x/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-cdk-plugin/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/cdk/maven-cdk-plugin/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
Modified: branches/3.2.x/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-javascript-plugin/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/cdk/maven-javascript-plugin/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: branches/3.2.x/cdk/pom.xml
===================================================================
--- branches/3.2.x/cdk/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/cdk/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: branches/3.2.x/docs/cdkguide/en/pom.xml
===================================================================
--- branches/3.2.x/docs/cdkguide/en/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/cdkguide/en/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: branches/3.2.x/docs/cdkguide/pom.xml
===================================================================
--- branches/3.2.x/docs/cdkguide/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/cdkguide/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: branches/3.2.x/docs/faq/en/pom.xml
===================================================================
--- branches/3.2.x/docs/faq/en/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/faq/en/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: branches/3.2.x/docs/faq/pom.xml
===================================================================
--- branches/3.2.x/docs/faq/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/faq/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<pluginRepositories>
Modified: branches/3.2.x/docs/highlight/pom.xml
===================================================================
--- branches/3.2.x/docs/highlight/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/highlight/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: branches/3.2.x/docs/migrationguide/en/pom.xml
===================================================================
--- branches/3.2.x/docs/migrationguide/en/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/migrationguide/en/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: branches/3.2.x/docs/migrationguide/pom.xml
===================================================================
--- branches/3.2.x/docs/migrationguide/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/migrationguide/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: branches/3.2.x/docs/pom.xml
===================================================================
--- branches/3.2.x/docs/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: branches/3.2.x/docs/userguide/en/pom.xml
===================================================================
--- branches/3.2.x/docs/userguide/en/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/userguide/en/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: branches/3.2.x/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/3.2.x/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3158,7 +3158,7 @@
<listitem>
<para>
<code>DarchetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.2.2-SNAPSHOT"</code>
+ <code>"3.2.3-SNAPSHOT"</code>
</para>
</listitem>
<listitem>
@@ -3455,7 +3455,7 @@
mvn archetype:create
-DarchetypeGroupId=org.richfaces.cdk
-DarchetypeArtifactId=maven-archetype-plug-n-skin
--DarchetypeVersion=3.2.2-SNAPSHOT
+-DarchetypeVersion=3.2.3-SNAPSHOT
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: branches/3.2.x/docs/userguide/pom.xml
===================================================================
--- branches/3.2.x/docs/userguide/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/userguide/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: branches/3.2.x/docs/xslt/en/pom.xml
===================================================================
--- branches/3.2.x/docs/xslt/en/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/xslt/en/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,12 +2,12 @@
<parent>
<artifactId>xslt</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.xslt</groupId>
<artifactId>en</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Documentation stylesheets (English translation)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
Modified: branches/3.2.x/docs/xslt/pom.xml
===================================================================
--- branches/3.2.x/docs/xslt/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/docs/xslt/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>xslt</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Documentation stylesheets</name>
<description>Docbook documentation stylesheets</description>
Modified: branches/3.2.x/extensions/gwt/pom.xml
===================================================================
--- branches/3.2.x/extensions/gwt/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/extensions/gwt/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: branches/3.2.x/extensions/pom.xml
===================================================================
--- branches/3.2.x/extensions/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/extensions/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: branches/3.2.x/extensions/seam/pom.xml
===================================================================
--- branches/3.2.x/extensions/seam/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/extensions/seam/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: branches/3.2.x/extensions/trinidad/pom.xml
===================================================================
--- branches/3.2.x/extensions/trinidad/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/extensions/trinidad/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: branches/3.2.x/framework/api/pom.xml
===================================================================
--- branches/3.2.x/framework/api/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/framework/api/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: branches/3.2.x/framework/impl/pom.xml
===================================================================
--- branches/3.2.x/framework/impl/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/framework/impl/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<resources>
<resource>
@@ -160,7 +160,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/3.2.x/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-09-10 00:19:21 UTC (rev 10392)
@@ -1,4 +1,4 @@
-/**
+/**
* License Agreement.
*
* Rich Faces - Natural Ajax for Java Server Faces (JSF)
@@ -37,7 +37,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "2-SNAPSHOT" ;
+ 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();
Modified: branches/3.2.x/framework/pom.xml
===================================================================
--- branches/3.2.x/framework/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/framework/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: branches/3.2.x/framework/test/pom.xml
===================================================================
--- branches/3.2.x/framework/test/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/framework/test/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/3.2.x/pom.xml
===================================================================
--- branches/3.2.x/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
Modified: branches/3.2.x/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/3.2.x/samples/beanValidatorSample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/beanValidatorSample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<finalName>beanValidatorSample</finalName>
<plugins>
@@ -33,7 +33,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/samples/calendar-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/calendar-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/calendar-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/columnsDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/columnsDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/columnsDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/combobox-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/combobox-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/combobox-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/contextMenuDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/contextMenuDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/darkX/pom.xml
===================================================================
--- branches/3.2.x/samples/darkX/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/darkX/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/3.2.x/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/dataFilterSliderDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/dataFilterSliderDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/dataTableDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/dataTableDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/dataTableDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/datascroller-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/datascroller-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/datascroller-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/dragDropDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/dragDropDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/dragDropDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/dropdownmenu-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/dropdownmenu-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/effect-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/effect-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/effect-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/extendedDataTable-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/extendedDataTable-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/3.2.x/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/fileUploadDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/fileUploadDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/functions-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/functions-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/functions-demo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/glassX/pom.xml
===================================================================
--- branches/3.2.x/samples/glassX/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/glassX/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/3.2.x/samples/gmap-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/gmap-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/gmap-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/hotKey-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/hotKey-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/hotKey-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/3.2.x/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/inplaceInput-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/inplaceInput-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/inplaceSelect-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/inplaceSelect-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/inputNumberSliderDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/inputNumberSliderDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/inputNumberSpinnerDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/inputNumberSpinnerDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/jQuery-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/jQuery-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/jQuery-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/jira-data/pom.xml
===================================================================
--- branches/3.2.x/samples/jira-data/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/jira-data/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/laguna/pom.xml
===================================================================
--- branches/3.2.x/samples/laguna/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/laguna/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: branches/3.2.x/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/listShuttleDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/listShuttleDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/local-value-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/local-value-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/local-value-demo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/modalpanel-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/modalpanel-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/orderingListDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/orderingListDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/orderingListDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/panel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/panel-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/panel-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/panelbar-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/panelbar-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/panelbar-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/panelmenu-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/panelmenu-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/pickList-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/pickList-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/pickList-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/pom.xml
===================================================================
--- branches/3.2.x/samples/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/3.2.x/samples/progressBarDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/progressBarDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/progressBarDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/rich-message-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/rich-message-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/rich-message-demo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-art-datatable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/richfaces-art-datatable/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/richfaces-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -207,22 +207,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: branches/3.2.x/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/ejb/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/richfaces-ear-demo/ejb/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/3.2.x/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/richfaces-ear-demo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/3.2.x/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/webapp/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/richfaces-ear-demo/webapp/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/3.2.x/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/scrollableDataTableDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/scrollableDataTableDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: branches/3.2.x/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/ear/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/seamEAR/ear/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/3.2.x/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/ejbs/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/seamEAR/ejbs/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/3.2.x/samples/seamEAR/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/seamEAR/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/primary-source/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/seamEAR/primary-source/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/3.2.x/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/projects/logging/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/seamEAR/projects/logging/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
</project>
Modified: branches/3.2.x/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/projects/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/seamEAR/projects/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modules>
<module>logging</module>
Modified: branches/3.2.x/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/wars/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/seamEAR/wars/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: branches/3.2.x/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/wars/seamWebapp/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/seamEAR/wars/seamWebapp/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: branches/3.2.x/samples/seamIntegration/pom.xml
===================================================================
--- branches/3.2.x/samples/seamIntegration/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/seamIntegration/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/separator-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/separator-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/separator-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/simpleTogglePanel-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/simpleTogglePanel-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/skins/pom.xml
===================================================================
--- branches/3.2.x/samples/skins/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/skins/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/sortingFilteringDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/sortingFilteringDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency-->
<dependency>
Modified: branches/3.2.x/samples/state-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/state-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/state-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/stdcomponents-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/stdcomponents-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/suggestionbox-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/suggestionbox-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/tabPanelDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/tabPanelDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/togglePanel-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/togglePanel-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/3.2.x/samples/tomahawkCompability/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/tomahawkCompability/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/toolBarDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/toolBarDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/toolBarDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/tooltip-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/tooltip-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/tooltip-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/tree-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/tree-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/tree-demo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/treeModelDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/treeModelDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/treeModelDemo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/virtualEarth-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/samples/virtualEarth-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/3.2.x/sandbox/api/pom.xml
===================================================================
--- branches/3.2.x/sandbox/api/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/api/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/3.2.x/sandbox/impl/pom.xml
===================================================================
--- branches/3.2.x/sandbox/impl/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/impl/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/3.2.x/sandbox/pom.xml
===================================================================
--- branches/3.2.x/sandbox/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/3.2.x/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/dialog-window-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/samples/dialog-window-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/3.2.x/sandbox/samples/editor-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/editor-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/samples/editor-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/3.2.x/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/fileUploadPOC/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/samples/fileUploadPOC/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/3.2.x/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/panel2-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/samples/panel2-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/3.2.x/sandbox/samples/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/samples/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/3.2.x/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/rex-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/samples/rex-demo/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
Modified: branches/3.2.x/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/3.2.x/sandbox/ui/create.bat
===================================================================
--- branches/3.2.x/sandbox/ui/create.bat 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/ui/create.bat 2008-09-10 00:19:21 UTC (rev 10392)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.2.2-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.2.3-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: branches/3.2.x/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/dialog-window/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/ui/dialog-window/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: branches/3.2.x/sandbox/ui/editor/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/editor/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/ui/editor/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/panel2/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/ui/panel2/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/sandbox/ui/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/ui/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: branches/3.2.x/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/rex-button/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/ui/rex-button/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/rex-messageBox/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/ui/rex-messageBox/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/rex-resizable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/ui/rex-resizable/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/simpleTogglePanel2/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/ui/simpleTogglePanel2/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/sortableHeader/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/ui/sortableHeader/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/treeTable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/sandbox/ui/treeTable/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/test-applications/facelets/pom.xml
===================================================================
--- branches/3.2.x/test-applications/facelets/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/test-applications/facelets/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/3.2.x/test-applications/jsp/pom.xml
===================================================================
--- branches/3.2.x/test-applications/jsp/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/test-applications/jsp/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/3.2.x/test-applications/pom.xml
===================================================================
--- branches/3.2.x/test-applications/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/test-applications/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.2.2-SNAPSHOT</rfVersion>
+ <rfVersion>3.2.3-SNAPSHOT</rfVersion>
</properties>
<modules>
Modified: branches/3.2.x/test-applications/seam/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seam/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/test-applications/seam/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -5,7 +5,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications</groupId>
Modified: branches/3.2.x/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seleniumTest/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/test-applications/seleniumTest/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -217,7 +217,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/3.2.x/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seleniumTest/richfaces/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/test-applications/seleniumTest/richfaces/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: branches/3.2.x/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seleniumTest/samples/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/test-applications/seleniumTest/samples/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: branches/3.2.x/ui/assembly/pom.xml
===================================================================
--- branches/3.2.x/ui/assembly/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/assembly/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: branches/3.2.x/ui/beanValidator/pom.xml
===================================================================
--- branches/3.2.x/ui/beanValidator/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/beanValidator/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -3,19 +3,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: branches/3.2.x/ui/calendar/pom.xml
===================================================================
--- branches/3.2.x/ui/calendar/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/calendar/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/columns/pom.xml
===================================================================
--- branches/3.2.x/ui/columns/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/columns/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/3.2.x/ui/combobox/pom.xml
===================================================================
--- branches/3.2.x/ui/combobox/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/combobox/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/3.2.x/ui/componentControl/pom.xml
===================================================================
--- branches/3.2.x/ui/componentControl/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/componentControl/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/contextMenu/pom.xml
===================================================================
--- branches/3.2.x/ui/contextMenu/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/contextMenu/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/core/pom.xml
===================================================================
--- branches/3.2.x/ui/core/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/core/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/create.bat
===================================================================
--- branches/3.2.x/ui/create.bat 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/create.bat 2008-09-10 00:19:21 UTC (rev 10392)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.2.2-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.2.3-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: branches/3.2.x/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/3.2.x/ui/dataFilterSlider/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/dataFilterSlider/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/dataTable/pom.xml
===================================================================
--- branches/3.2.x/ui/dataTable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/dataTable/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
-->
</dependencies>
Modified: branches/3.2.x/ui/datascroller/pom.xml
===================================================================
--- branches/3.2.x/ui/datascroller/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/datascroller/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/drag-drop/pom.xml
===================================================================
--- branches/3.2.x/ui/drag-drop/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/drag-drop/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
-->
</dependencies>
Modified: branches/3.2.x/ui/dropdown-menu/pom.xml
===================================================================
--- branches/3.2.x/ui/dropdown-menu/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/dropdown-menu/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/effect/pom.xml
===================================================================
--- branches/3.2.x/ui/effect/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/effect/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/extendedDataTable/pom.xml
===================================================================
--- branches/3.2.x/ui/extendedDataTable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/extendedDataTable/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,45 +64,45 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/fileUpload/pom.xml
===================================================================
--- branches/3.2.x/ui/fileUpload/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/fileUpload/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/functions/pom.xml
===================================================================
--- branches/3.2.x/ui/functions/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/functions/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/gmap/pom.xml
===================================================================
--- branches/3.2.x/ui/gmap/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/gmap/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/hotKey/pom.xml
===================================================================
--- branches/3.2.x/ui/hotKey/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/hotKey/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/inplaceInput/pom.xml
===================================================================
--- branches/3.2.x/ui/inplaceInput/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/inplaceInput/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/inplaceSelect/pom.xml
===================================================================
--- branches/3.2.x/ui/inplaceSelect/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/inplaceSelect/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/3.2.x/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/3.2.x/ui/inputnumber-slider/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/inputnumber-slider/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/3.2.x/ui/inputnumber-spinner/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/inputnumber-spinner/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/3.2.x/ui/insert/pom.xml
===================================================================
--- branches/3.2.x/ui/insert/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/insert/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/jQuery/pom.xml
===================================================================
--- branches/3.2.x/ui/jQuery/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/jQuery/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/listShuttle/pom.xml
===================================================================
--- branches/3.2.x/ui/listShuttle/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/listShuttle/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/3.2.x/ui/menu-components/pom.xml
===================================================================
--- branches/3.2.x/ui/menu-components/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/menu-components/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/message/pom.xml
===================================================================
--- branches/3.2.x/ui/message/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/message/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/modal-panel/pom.xml
===================================================================
--- branches/3.2.x/ui/modal-panel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/modal-panel/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/orderingList/pom.xml
===================================================================
--- branches/3.2.x/ui/orderingList/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/orderingList/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/paint2D/pom.xml
===================================================================
--- branches/3.2.x/ui/paint2D/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/paint2D/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/panel/pom.xml
===================================================================
--- branches/3.2.x/ui/panel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/panel/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/panelbar/pom.xml
===================================================================
--- branches/3.2.x/ui/panelbar/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/panelbar/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/panelmenu/pom.xml
===================================================================
--- branches/3.2.x/ui/panelmenu/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/panelmenu/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/pickList/pom.xml
===================================================================
--- branches/3.2.x/ui/pickList/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/pickList/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/3.2.x/ui/pom.xml
===================================================================
--- branches/3.2.x/ui/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -135,12 +135,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: branches/3.2.x/ui/progressBAR/pom.xml
===================================================================
--- branches/3.2.x/ui/progressBAR/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/progressBAR/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/3.2.x/ui/scrollableDataTable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/scrollableDataTable/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/separator/pom.xml
===================================================================
--- branches/3.2.x/ui/separator/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/separator/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/3.2.x/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/3.2.x/ui/simpleTogglePanel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/simpleTogglePanel/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/spacer/pom.xml
===================================================================
--- branches/3.2.x/ui/spacer/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/spacer/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/state/pom.xml
===================================================================
--- branches/3.2.x/ui/state/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/state/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/suggestionbox/pom.xml
===================================================================
--- branches/3.2.x/ui/suggestionbox/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/suggestionbox/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/tabPanel/pom.xml
===================================================================
--- branches/3.2.x/ui/tabPanel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/tabPanel/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/togglePanel/pom.xml
===================================================================
--- branches/3.2.x/ui/togglePanel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/togglePanel/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/toolBar/pom.xml
===================================================================
--- branches/3.2.x/ui/toolBar/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/toolBar/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/tooltip/pom.xml
===================================================================
--- branches/3.2.x/ui/tooltip/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/tooltip/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/tree/pom.xml
===================================================================
--- branches/3.2.x/ui/tree/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/tree/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/treeModel/pom.xml
===================================================================
--- branches/3.2.x/ui/treeModel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/treeModel/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/3.2.x/ui/treeTable/pom.xml
===================================================================
--- branches/3.2.x/ui/treeTable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/treeTable/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/3.2.x/ui/virtualEarth/pom.xml
===================================================================
--- branches/3.2.x/ui/virtualEarth/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
+++ branches/3.2.x/ui/virtualEarth/pom.xml 2008-09-10 00:19:21 UTC (rev 10392)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</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.2.2-SNAPSHOT</version>
+ <version>3.2.3-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
16 years, 3 months
JBoss Rich Faces SVN: r10391 - in tags: 3.2.2.GA and 177 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-09 20:02:07 -0400 (Tue, 09 Sep 2008)
New Revision: 10391
Added:
tags/3.2.2.GA/
tags/3.2.2.GA/samples/richfaces-demo/
Removed:
tags/3.2.2.GA/samples/richfaces-demo/
Modified:
tags/3.2.2.GA/cdk/generator/pom.xml
tags/3.2.2.GA/cdk/maven-archetype-jsf-component/pom.xml
tags/3.2.2.GA/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.2.2.GA/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.2.2.GA/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.2.2.GA/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.2.2.GA/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.2.2.GA/cdk/maven-cdk-plugin/pom.xml
tags/3.2.2.GA/cdk/maven-javascript-plugin/pom.xml
tags/3.2.2.GA/cdk/pom.xml
tags/3.2.2.GA/docs/cdkguide/en/pom.xml
tags/3.2.2.GA/docs/cdkguide/pom.xml
tags/3.2.2.GA/docs/faq/en/pom.xml
tags/3.2.2.GA/docs/faq/pom.xml
tags/3.2.2.GA/docs/highlight/pom.xml
tags/3.2.2.GA/docs/migrationguide/en/pom.xml
tags/3.2.2.GA/docs/migrationguide/pom.xml
tags/3.2.2.GA/docs/pom.xml
tags/3.2.2.GA/docs/userguide/en/pom.xml
tags/3.2.2.GA/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.2.2.GA/docs/userguide/pom.xml
tags/3.2.2.GA/docs/xslt/en/pom.xml
tags/3.2.2.GA/docs/xslt/pom.xml
tags/3.2.2.GA/extensions/gwt/pom.xml
tags/3.2.2.GA/extensions/pom.xml
tags/3.2.2.GA/extensions/seam/pom.xml
tags/3.2.2.GA/extensions/trinidad/pom.xml
tags/3.2.2.GA/framework/api/pom.xml
tags/3.2.2.GA/framework/impl/pom.xml
tags/3.2.2.GA/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.2.2.GA/framework/pom.xml
tags/3.2.2.GA/framework/test/pom.xml
tags/3.2.2.GA/pom.xml
tags/3.2.2.GA/samples/beanValidatorSample/pom.xml
tags/3.2.2.GA/samples/calendar-sample/pom.xml
tags/3.2.2.GA/samples/columnsDemo/pom.xml
tags/3.2.2.GA/samples/combobox-sample/pom.xml
tags/3.2.2.GA/samples/contextMenuDemo/pom.xml
tags/3.2.2.GA/samples/darkX/pom.xml
tags/3.2.2.GA/samples/dataFilterSliderDemo/pom.xml
tags/3.2.2.GA/samples/dataTableDemo/pom.xml
tags/3.2.2.GA/samples/datascroller-sample/pom.xml
tags/3.2.2.GA/samples/dragDropDemo/pom.xml
tags/3.2.2.GA/samples/dropdownmenu-sample/pom.xml
tags/3.2.2.GA/samples/effect-sample/pom.xml
tags/3.2.2.GA/samples/extendedDataTable-sample/pom.xml
tags/3.2.2.GA/samples/fileUploadDemo/pom.xml
tags/3.2.2.GA/samples/functions-demo/pom.xml
tags/3.2.2.GA/samples/glassX/pom.xml
tags/3.2.2.GA/samples/gmap-sample/pom.xml
tags/3.2.2.GA/samples/hotKey-sample/pom.xml
tags/3.2.2.GA/samples/inplaceInput-sample/pom.xml
tags/3.2.2.GA/samples/inplaceSelect-sample/pom.xml
tags/3.2.2.GA/samples/inputNumberSliderDemo/pom.xml
tags/3.2.2.GA/samples/inputNumberSpinnerDemo/pom.xml
tags/3.2.2.GA/samples/jQuery-sample/pom.xml
tags/3.2.2.GA/samples/jira-data/pom.xml
tags/3.2.2.GA/samples/laguna/pom.xml
tags/3.2.2.GA/samples/listShuttleDemo/pom.xml
tags/3.2.2.GA/samples/local-value-demo/pom.xml
tags/3.2.2.GA/samples/modalpanel-sample/pom.xml
tags/3.2.2.GA/samples/orderingListDemo/pom.xml
tags/3.2.2.GA/samples/panel-sample/pom.xml
tags/3.2.2.GA/samples/panelbar-sample/pom.xml
tags/3.2.2.GA/samples/panelmenu-sample/pom.xml
tags/3.2.2.GA/samples/pickList-sample/pom.xml
tags/3.2.2.GA/samples/pom.xml
tags/3.2.2.GA/samples/progressBarDemo/pom.xml
tags/3.2.2.GA/samples/rich-message-demo/pom.xml
tags/3.2.2.GA/samples/richfaces-art-datatable/pom.xml
tags/3.2.2.GA/samples/richfaces-demo/pom.xml
tags/3.2.2.GA/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.2.2.GA/samples/richfaces-ear-demo/pom.xml
tags/3.2.2.GA/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.2.2.GA/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.2.2.GA/samples/scrollableDataTableDemo/pom.xml
tags/3.2.2.GA/samples/seamEAR/ear/pom.xml
tags/3.2.2.GA/samples/seamEAR/ejbs/pom.xml
tags/3.2.2.GA/samples/seamEAR/pom.xml
tags/3.2.2.GA/samples/seamEAR/primary-source/pom.xml
tags/3.2.2.GA/samples/seamEAR/projects/logging/pom.xml
tags/3.2.2.GA/samples/seamEAR/projects/pom.xml
tags/3.2.2.GA/samples/seamEAR/wars/pom.xml
tags/3.2.2.GA/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.2.2.GA/samples/seamIntegration/pom.xml
tags/3.2.2.GA/samples/separator-sample/pom.xml
tags/3.2.2.GA/samples/simpleTogglePanel-sample/pom.xml
tags/3.2.2.GA/samples/skins/pom.xml
tags/3.2.2.GA/samples/sortingFilteringDemo/pom.xml
tags/3.2.2.GA/samples/state-sample/pom.xml
tags/3.2.2.GA/samples/stdcomponents-sample/pom.xml
tags/3.2.2.GA/samples/suggestionbox-sample/pom.xml
tags/3.2.2.GA/samples/tabPanelDemo/pom.xml
tags/3.2.2.GA/samples/togglePanel-sample/pom.xml
tags/3.2.2.GA/samples/tomahawkCompability/pom.xml
tags/3.2.2.GA/samples/toolBarDemo/pom.xml
tags/3.2.2.GA/samples/tooltip-sample/pom.xml
tags/3.2.2.GA/samples/tree-demo/pom.xml
tags/3.2.2.GA/samples/treeModelDemo/pom.xml
tags/3.2.2.GA/samples/virtualEarth-sample/pom.xml
tags/3.2.2.GA/sandbox/api/pom.xml
tags/3.2.2.GA/sandbox/impl/pom.xml
tags/3.2.2.GA/sandbox/pom.xml
tags/3.2.2.GA/sandbox/samples/dialog-window-sample/pom.xml
tags/3.2.2.GA/sandbox/samples/editor-sample/pom.xml
tags/3.2.2.GA/sandbox/samples/fileUploadPOC/pom.xml
tags/3.2.2.GA/sandbox/samples/panel2-sample/pom.xml
tags/3.2.2.GA/sandbox/samples/pom.xml
tags/3.2.2.GA/sandbox/samples/rex-demo/pom.xml
tags/3.2.2.GA/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.2.2.GA/sandbox/ui/create.bat
tags/3.2.2.GA/sandbox/ui/dialog-window/pom.xml
tags/3.2.2.GA/sandbox/ui/editor/pom.xml
tags/3.2.2.GA/sandbox/ui/panel2/pom.xml
tags/3.2.2.GA/sandbox/ui/pom.xml
tags/3.2.2.GA/sandbox/ui/rex-button/pom.xml
tags/3.2.2.GA/sandbox/ui/rex-messageBox/pom.xml
tags/3.2.2.GA/sandbox/ui/rex-resizable/pom.xml
tags/3.2.2.GA/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.2.2.GA/sandbox/ui/sortableHeader/pom.xml
tags/3.2.2.GA/sandbox/ui/treeTable/pom.xml
tags/3.2.2.GA/test-applications/facelets/pom.xml
tags/3.2.2.GA/test-applications/jsp/pom.xml
tags/3.2.2.GA/test-applications/pom.xml
tags/3.2.2.GA/test-applications/seam/pom.xml
tags/3.2.2.GA/test-applications/seleniumTest/pom.xml
tags/3.2.2.GA/test-applications/seleniumTest/richfaces/pom.xml
tags/3.2.2.GA/test-applications/seleniumTest/samples/pom.xml
tags/3.2.2.GA/ui/assembly/pom.xml
tags/3.2.2.GA/ui/beanValidator/pom.xml
tags/3.2.2.GA/ui/calendar/pom.xml
tags/3.2.2.GA/ui/columns/pom.xml
tags/3.2.2.GA/ui/combobox/pom.xml
tags/3.2.2.GA/ui/componentControl/pom.xml
tags/3.2.2.GA/ui/contextMenu/pom.xml
tags/3.2.2.GA/ui/core/pom.xml
tags/3.2.2.GA/ui/create.bat
tags/3.2.2.GA/ui/dataFilterSlider/pom.xml
tags/3.2.2.GA/ui/dataTable/pom.xml
tags/3.2.2.GA/ui/datascroller/pom.xml
tags/3.2.2.GA/ui/drag-drop/pom.xml
tags/3.2.2.GA/ui/dropdown-menu/pom.xml
tags/3.2.2.GA/ui/effect/pom.xml
tags/3.2.2.GA/ui/extendedDataTable/pom.xml
tags/3.2.2.GA/ui/fileUpload/pom.xml
tags/3.2.2.GA/ui/functions/pom.xml
tags/3.2.2.GA/ui/gmap/pom.xml
tags/3.2.2.GA/ui/hotKey/pom.xml
tags/3.2.2.GA/ui/inplaceInput/pom.xml
tags/3.2.2.GA/ui/inplaceSelect/pom.xml
tags/3.2.2.GA/ui/inputnumber-slider/pom.xml
tags/3.2.2.GA/ui/inputnumber-spinner/pom.xml
tags/3.2.2.GA/ui/insert/pom.xml
tags/3.2.2.GA/ui/jQuery/pom.xml
tags/3.2.2.GA/ui/listShuttle/pom.xml
tags/3.2.2.GA/ui/menu-components/pom.xml
tags/3.2.2.GA/ui/message/pom.xml
tags/3.2.2.GA/ui/modal-panel/pom.xml
tags/3.2.2.GA/ui/orderingList/pom.xml
tags/3.2.2.GA/ui/paint2D/pom.xml
tags/3.2.2.GA/ui/panel/pom.xml
tags/3.2.2.GA/ui/panelbar/pom.xml
tags/3.2.2.GA/ui/panelmenu/pom.xml
tags/3.2.2.GA/ui/pickList/pom.xml
tags/3.2.2.GA/ui/pom.xml
tags/3.2.2.GA/ui/progressBAR/pom.xml
tags/3.2.2.GA/ui/scrollableDataTable/pom.xml
tags/3.2.2.GA/ui/separator/pom.xml
tags/3.2.2.GA/ui/simpleTogglePanel/pom.xml
tags/3.2.2.GA/ui/spacer/pom.xml
tags/3.2.2.GA/ui/state/pom.xml
tags/3.2.2.GA/ui/suggestionbox/pom.xml
tags/3.2.2.GA/ui/tabPanel/pom.xml
tags/3.2.2.GA/ui/togglePanel/pom.xml
tags/3.2.2.GA/ui/toolBar/pom.xml
tags/3.2.2.GA/ui/tooltip/pom.xml
tags/3.2.2.GA/ui/tree/pom.xml
tags/3.2.2.GA/ui/treeModel/pom.xml
tags/3.2.2.GA/ui/treeTable/pom.xml
tags/3.2.2.GA/ui/virtualEarth/pom.xml
Log:
create tag for a release 3.2.2.GA
Copied: tags/3.2.2.GA (from rev 10388, branches/3.2.x)
Modified: tags/3.2.2.GA/cdk/generator/pom.xml
===================================================================
--- branches/3.2.x/cdk/generator/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/cdk/generator/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -1,93 +1,92 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <parent>
- <artifactId>cdk</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>generator</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- <name>Java Server Faces component generator</name>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <inherited>true</inherited>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.6.5</version>
- </dependency>
- <dependency>
- <groupId>velocity</groupId>
- <artifactId>velocity-dep</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>commons-digester</groupId>
- <artifactId>commons-digester</artifactId>
- <version>1.5</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_03</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>qdox</groupId>
- <artifactId>qdox</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib</artifactId>
- <version>2.1_3</version>
- </dependency>
- <dependency>
- <groupId>wutka</groupId>
- <artifactId>dtdparser</artifactId>
- <version>1.21</version>
- </dependency>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.8.1</version>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>cdk</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.2.2.GA</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>generator</artifactId>
+ <version>3.2.2.GA</version>
+ <name>Java Server Faces component generator</name>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ <dependency>
+ <groupId>velocity</groupId>
+ <artifactId>velocity-dep</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ <version>1.5</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_03</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>qdox</groupId>
+ <artifactId>qdox</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>cglib</groupId>
+ <artifactId>cglib</artifactId>
+ <version>2.1_3</version>
+ </dependency>
+ <dependency>
+ <groupId>wutka</groupId>
+ <artifactId>dtdparser</artifactId>
+ <version>1.21</version>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.8.1</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-jsf-component/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/cdk/maven-archetype-jsf-component/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.2.2.GA/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-jsfwebapp/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/cdk/maven-archetype-jsfwebapp/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.2.2.GA/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-plug-n-skin/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/cdk/maven-archetype-plug-n-skin/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.2.2.GA/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.2.2.GA/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-cdk-plugin/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/cdk/maven-cdk-plugin/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.2.2.GA/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-javascript-plugin/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/cdk/maven-javascript-plugin/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.2.2.GA/cdk/pom.xml
===================================================================
--- branches/3.2.x/cdk/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/cdk/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.2.2.GA/docs/cdkguide/en/pom.xml
===================================================================
--- branches/3.2.x/docs/cdkguide/en/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/cdkguide/en/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.2.2.GA/docs/cdkguide/pom.xml
===================================================================
--- branches/3.2.x/docs/cdkguide/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/cdkguide/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.2.2.GA/docs/faq/en/pom.xml
===================================================================
--- branches/3.2.x/docs/faq/en/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/faq/en/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.2.2.GA/docs/faq/pom.xml
===================================================================
--- branches/3.2.x/docs/faq/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/faq/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<pluginRepositories>
Modified: tags/3.2.2.GA/docs/highlight/pom.xml
===================================================================
--- branches/3.2.x/docs/highlight/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/highlight/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.2.2.GA/docs/migrationguide/en/pom.xml
===================================================================
--- branches/3.2.x/docs/migrationguide/en/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/migrationguide/en/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: tags/3.2.2.GA/docs/migrationguide/pom.xml
===================================================================
--- branches/3.2.x/docs/migrationguide/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/migrationguide/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.2.2.GA/docs/pom.xml
===================================================================
--- branches/3.2.x/docs/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.2.2.GA/docs/userguide/en/pom.xml
===================================================================
--- branches/3.2.x/docs/userguide/en/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/userguide/en/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.2.2.GA/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/3.2.x/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3158,7 +3158,7 @@
<listitem>
<para>
<code>DarchetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.2.2-SNAPSHOT"</code>
+ <code>"3.2.2.GA"</code>
</para>
</listitem>
<listitem>
@@ -3455,7 +3455,7 @@
mvn archetype:create
-DarchetypeGroupId=org.richfaces.cdk
-DarchetypeArtifactId=maven-archetype-plug-n-skin
--DarchetypeVersion=3.2.2-SNAPSHOT
+-DarchetypeVersion=3.2.2.GA
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: tags/3.2.2.GA/docs/userguide/pom.xml
===================================================================
--- branches/3.2.x/docs/userguide/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/userguide/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.2.2.GA/docs/xslt/en/pom.xml
===================================================================
--- branches/3.2.x/docs/xslt/en/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/xslt/en/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,12 +2,12 @@
<parent>
<artifactId>xslt</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.xslt</groupId>
<artifactId>en</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<packaging>jar</packaging>
<name>Documentation stylesheets (English translation)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.2.2.GA/docs/xslt/pom.xml
===================================================================
--- branches/3.2.x/docs/xslt/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/docs/xslt/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>xslt</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<packaging>pom</packaging>
<name>Documentation stylesheets</name>
<description>Docbook documentation stylesheets</description>
Modified: tags/3.2.2.GA/extensions/gwt/pom.xml
===================================================================
--- branches/3.2.x/extensions/gwt/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/extensions/gwt/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.2.2.GA/extensions/pom.xml
===================================================================
--- branches/3.2.x/extensions/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/extensions/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.2.2.GA/extensions/seam/pom.xml
===================================================================
--- branches/3.2.x/extensions/seam/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/extensions/seam/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.2.2.GA/extensions/trinidad/pom.xml
===================================================================
--- branches/3.2.x/extensions/trinidad/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/extensions/trinidad/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.2.2.GA/framework/api/pom.xml
===================================================================
--- branches/3.2.x/framework/api/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/framework/api/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: tags/3.2.2.GA/framework/impl/pom.xml
===================================================================
--- branches/3.2.x/framework/impl/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/framework/impl/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -1,15 +1,14 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<resources>
<resource>
@@ -160,7 +159,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/3.2.x/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-09-10 00:02:07 UTC (rev 10391)
@@ -37,7 +37,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "2-SNAPSHOT" ;
+ public static final String REVISION = "2.GA" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.2.2.GA/framework/pom.xml
===================================================================
--- branches/3.2.x/framework/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/framework/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: tags/3.2.2.GA/framework/test/pom.xml
===================================================================
--- branches/3.2.x/framework/test/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/framework/test/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.GA/pom.xml
===================================================================
--- branches/3.2.x/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
@@ -199,9 +199,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/3.2.x</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.2.x</developerConnection>
- <url>https://svn.jboss.org/repos/richfaces/branches/3.2.x</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/3.2.2.GA</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.2.2.GA</developerConnection>
+ <url>https://svn.jboss.org/repos/richfaces/branches/3.2.2.GA</url>
</scm>
<profiles>
<profile>
@@ -224,9 +224,9 @@
.settings/org.eclipse.jdt.ui.prefs
</name>
<content>
- <![CDATA[
- eclipse.preferences.version=1
- org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
+ <![CDATA[
+ eclipse.preferences.version=1
+ org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
]]>
</content>
</file>
@@ -394,4 +394,4 @@
</distributionManagement>
</profile>
</profiles>
-</project>
+</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/3.2.x/samples/beanValidatorSample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/beanValidatorSample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<finalName>beanValidatorSample</finalName>
<plugins>
@@ -33,7 +33,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/samples/calendar-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/calendar-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/calendar-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/columnsDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/columnsDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/columnsDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/combobox-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/combobox-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/combobox-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/contextMenuDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/contextMenuDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/darkX/pom.xml
===================================================================
--- branches/3.2.x/samples/darkX/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/darkX/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -1,48 +1,48 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>darkX</artifactId>
- <name>darkX</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.2.2.GA</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>darkX</artifactId>
+ <name>darkX</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.2.2.GA</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/dataFilterSliderDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/dataFilterSliderDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/dataTableDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/dataTableDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/dataTableDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/datascroller-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/datascroller-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/datascroller-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/dragDropDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/dragDropDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/dragDropDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/dropdownmenu-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/dropdownmenu-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/effect-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/effect-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/effect-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/extendedDataTable-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/extendedDataTable-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.GA/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/fileUploadDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/fileUploadDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/functions-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/functions-demo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/functions-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/glassX/pom.xml
===================================================================
--- branches/3.2.x/samples/glassX/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/glassX/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -1,49 +1,49 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>glassX</artifactId>
- <name>glassX</name>
- <version>3.2.2-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.2.2.GA</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>glassX</artifactId>
+ <name>glassX</name>
+ <version>3.2.2.GA</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.2.2.GA</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/samples/gmap-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/gmap-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/gmap-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/hotKey-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/hotKey-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/hotKey-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.GA/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/inplaceInput-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/inplaceInput-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/inplaceSelect-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/inplaceSelect-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/inputNumberSliderDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/inputNumberSliderDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/inputNumberSpinnerDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/inputNumberSpinnerDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/jQuery-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/jQuery-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/jQuery-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/jira-data/pom.xml
===================================================================
--- branches/3.2.x/samples/jira-data/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/jira-data/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/laguna/pom.xml
===================================================================
--- branches/3.2.x/samples/laguna/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/laguna/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.2.2.GA/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/listShuttleDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/listShuttleDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/local-value-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/local-value-demo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/local-value-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/modalpanel-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/modalpanel-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/orderingListDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/orderingListDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/orderingListDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/panel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/panel-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/panel-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/panelbar-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/panelbar-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/panelbar-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/panelmenu-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/panelmenu-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/pickList-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/pickList-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/pickList-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/pom.xml
===================================================================
--- branches/3.2.x/samples/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -1,496 +1,495 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>root</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces</groupId>
- <artifactId>samples</artifactId>
- <packaging>pom</packaging>
- <name>RichFaces Components Examples</name>
- <url>http://labs.jboss.com/jbossrichfaces/samples</url>
- <properties>
- <!-- -->
- </properties>
- <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <!--
- -->
- <version>6.1.5</version>
- <configuration>
- <scanIntervalSeconds>10</scanIntervalSeconds>
- <connectors>
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
- <port>8080</port>
- <maxIdleTime>60000</maxIdleTime>
- </connector>
- </connectors>
- </configuration>
-
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- <executions>
- <execution>
- <id>surefire-it</id>
- <phase>integration-test</phase>
- <goals>
- <goal>test</goal>
- </goals>
- <configuration>
- <skip>false</skip>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sun.facelets</groupId>
- <artifactId>jsf-facelets</artifactId>
- <version>1.1.14</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>0.9.5</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <artifactId>xerces</artifactId>
- <groupId>xerces</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>jsf1_1</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.1</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jsf1_2</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.2</value>
- </property>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_09</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_09</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat5</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_09</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_09</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat6</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_09</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_09</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jboss42</id>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_09</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_09</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>myfaces</id>
- <properties>
- <myfaces>1.2.4</myfaces>
- <tomahawk>1.1.6</tomahawk>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- <exclusions>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-api</artifactId>
- <version>${myfaces}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-impl</artifactId>
- <version>${myfaces}</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>seam</id>
- <modules>
- <module>seamEAR</module>
- <module>seamIntegration</module>
- </modules>
- </profile>
- <profile>
- <id>clover</id>
- <build>
- <plugins>
- <plugin>
- <groupId>com.atlassian.maven.plugins</groupId>
- <artifactId>maven-clover2-plugin</artifactId>
- <configuration>
- <includesAllSourceRoots>
- false
- </includesAllSourceRoots>
- <includesTestSourceRoots>
- false
- </includesTestSourceRoots>
- <jdk>1.5</jdk>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>allSamples</id>
- <modules>
- <module>separator-sample</module>
- <module>panel-sample</module>
- <module>gmap-sample</module>
- <module>togglePanel-sample</module>
- <module>tabPanelDemo</module>
- <module>simpleTogglePanel-sample</module>
- <module>inputNumberSpinnerDemo</module>
- <module>inputNumberSliderDemo</module>
- <module>panelbar-sample</module>
- <module>toolBarDemo</module>
- <module>tree-demo</module>
- <module>dataFilterSliderDemo</module>
- <module>suggestionbox-sample</module>
- <module>dragDropDemo</module>
- <module>dataTableDemo</module>
- <module>modalpanel-sample</module>
- <module>datascroller-sample</module>
- <module>effect-sample</module>
- <module>dropdownmenu-sample</module>
- <module>tooltip-sample</module>
- <module>calendar-sample</module>
- <module>treeModelDemo</module>
- <module>local-value-demo</module>
- <module>panelmenu-sample</module>
- <module>rich-message-demo</module>
- <module>scrollableDataTableDemo</module>
- <module>richfaces-ear-demo</module>
- <module>contextMenuDemo</module>
- <module>orderingListDemo</module>
- <module>listShuttleDemo</module>
- <module>columnsDemo</module>
- <module>combobox-sample</module>
- <module>pickList-sample</module>
- <module>progressBarDemo</module>
- <module>jira-data</module>
- <module>stdcomponents-sample</module>
- <module>fileUploadDemo</module>
- <module>sortingFilteringDemo</module>
- <module>inplaceInput-sample</module>
- <module>inplaceSelect-sample</module>
- <module>functions-demo</module>
- <module>hotKey-sample</module>
- <module>beanValidatorSample</module>
- <module>state-sample</module>
- <module>extendedDataTable-sample</module>
- </modules>
- </profile>
- </profiles>
- <modules>
- <module>skins</module>
- <module>laguna</module>
- <module>glassX</module>
- <module>darkX</module>
- <module>richfaces-demo</module>
- </modules>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>root</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.2.2.GA</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>samples</artifactId>
+ <packaging>pom</packaging>
+ <name>RichFaces Components Examples</name>
+ <url>http://labs.jboss.com/jbossrichfaces/samples</url>
+ <properties>
+ <!-- -->
+ </properties>
+ <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <!--
+ -->
+ <version>6.1.5</version>
+ <configuration>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
+ <connectors>
+ <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>8080</port>
+ <maxIdleTime>60000</maxIdleTime>
+ </connector>
+ </connectors>
+ </configuration>
+
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ <executions>
+ <execution>
+ <id>surefire-it</id>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <skip>false</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.facelets</groupId>
+ <artifactId>jsf-facelets</artifactId>
+ <version>1.1.14</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>0.9.5</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>xerces</artifactId>
+ <groupId>xerces</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+ <profiles>
+ <profile>
+ <id>jsf1_1</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.1</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jsf1_2</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.2</value>
+ </property>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_09</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_09</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat5</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_09</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_09</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat6</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_09</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_09</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jboss42</id>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_09</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_09</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>myfaces</id>
+ <properties>
+ <myfaces>1.2.4</myfaces>
+ <tomahawk>1.1.6</tomahawk>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-api</artifactId>
+ <version>${myfaces}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-impl</artifactId>
+ <version>${myfaces}</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>seam</id>
+ <modules>
+ <module>seamEAR</module>
+ <module>seamIntegration</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>clover</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.atlassian.maven.plugins</groupId>
+ <artifactId>maven-clover2-plugin</artifactId>
+ <configuration>
+ <includesAllSourceRoots>
+ false
+ </includesAllSourceRoots>
+ <includesTestSourceRoots>
+ false
+ </includesTestSourceRoots>
+ <jdk>1.5</jdk>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>allSamples</id>
+ <modules>
+ <module>separator-sample</module>
+ <module>panel-sample</module>
+ <module>gmap-sample</module>
+ <module>togglePanel-sample</module>
+ <module>tabPanelDemo</module>
+ <module>simpleTogglePanel-sample</module>
+ <module>inputNumberSpinnerDemo</module>
+ <module>inputNumberSliderDemo</module>
+ <module>panelbar-sample</module>
+ <module>toolBarDemo</module>
+ <module>tree-demo</module>
+ <module>dataFilterSliderDemo</module>
+ <module>suggestionbox-sample</module>
+ <module>dragDropDemo</module>
+ <module>dataTableDemo</module>
+ <module>modalpanel-sample</module>
+ <module>datascroller-sample</module>
+ <module>effect-sample</module>
+ <module>dropdownmenu-sample</module>
+ <module>tooltip-sample</module>
+ <module>calendar-sample</module>
+ <module>treeModelDemo</module>
+ <module>local-value-demo</module>
+ <module>panelmenu-sample</module>
+ <module>rich-message-demo</module>
+ <module>scrollableDataTableDemo</module>
+ <module>richfaces-ear-demo</module>
+ <module>contextMenuDemo</module>
+ <module>orderingListDemo</module>
+ <module>listShuttleDemo</module>
+ <module>columnsDemo</module>
+ <module>combobox-sample</module>
+ <module>pickList-sample</module>
+ <module>progressBarDemo</module>
+ <module>jira-data</module>
+ <module>stdcomponents-sample</module>
+ <module>fileUploadDemo</module>
+ <module>sortingFilteringDemo</module>
+ <module>inplaceInput-sample</module>
+ <module>inplaceSelect-sample</module>
+ <module>functions-demo</module>
+ <module>hotKey-sample</module>
+ <module>beanValidatorSample</module>
+ <module>state-sample</module>
+ <module>extendedDataTable-sample</module>
+ </modules>
+ </profile>
+ </profiles>
+ <modules>
+ <module>skins</module>
+ <module>laguna</module>
+ <module>glassX</module>
+ <module>darkX</module>
+ <module>richfaces-demo</module>
+ </modules>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/samples/progressBarDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/progressBarDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/progressBarDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/rich-message-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/rich-message-demo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/rich-message-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-art-datatable/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/richfaces-art-datatable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Copied: tags/3.2.2.GA/samples/richfaces-demo (from rev 10389, branches/3.2.x/samples/richfaces-demo)
Modified: tags/3.2.2.GA/samples/richfaces-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-09 22:22:50 UTC (rev 10389)
+++ tags/3.2.2.GA/samples/richfaces-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -207,22 +207,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.2.2.GA/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/ejb/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/richfaces-ear-demo/ejb/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.2.2.GA/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/richfaces-ear-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.2.2.GA/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/webapp/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/richfaces-ear-demo/webapp/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.2.2.GA/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/scrollableDataTableDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/scrollableDataTableDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.2.2.GA/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/ear/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/seamEAR/ear/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.2.2.GA/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/ejbs/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/seamEAR/ejbs/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.2.2.GA/samples/seamEAR/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/seamEAR/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/primary-source/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/seamEAR/primary-source/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.2.2.GA/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/projects/logging/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/seamEAR/projects/logging/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
</project>
Modified: tags/3.2.2.GA/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/projects/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/seamEAR/projects/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.2.2.GA/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/wars/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/seamEAR/wars/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.2.2.GA/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/wars/seamWebapp/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/seamEAR/wars/seamWebapp/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.2.2.GA/samples/seamIntegration/pom.xml
===================================================================
--- branches/3.2.x/samples/seamIntegration/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/seamIntegration/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/separator-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/separator-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/separator-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/simpleTogglePanel-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/simpleTogglePanel-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/skins/pom.xml
===================================================================
--- branches/3.2.x/samples/skins/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/skins/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/sortingFilteringDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/sortingFilteringDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency-->
<dependency>
Modified: tags/3.2.2.GA/samples/state-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/state-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/state-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/stdcomponents-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/stdcomponents-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/suggestionbox-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/suggestionbox-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/tabPanelDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/tabPanelDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/togglePanel-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/togglePanel-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/3.2.x/samples/tomahawkCompability/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/tomahawkCompability/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/toolBarDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/toolBarDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/toolBarDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/tooltip-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/tooltip-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/tooltip-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/tree-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/tree-demo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/tree-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/treeModelDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/treeModelDemo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/treeModelDemo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/virtualEarth-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/samples/virtualEarth-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.GA/sandbox/api/pom.xml
===================================================================
--- branches/3.2.x/sandbox/api/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/api/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.GA/sandbox/impl/pom.xml
===================================================================
--- branches/3.2.x/sandbox/impl/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/impl/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.GA/sandbox/pom.xml
===================================================================
--- branches/3.2.x/sandbox/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.GA/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/dialog-window-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/samples/dialog-window-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.GA/sandbox/samples/editor-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/editor-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/samples/editor-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.GA/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/fileUploadPOC/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/samples/fileUploadPOC/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.GA/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/panel2-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/samples/panel2-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.GA/sandbox/samples/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/samples/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.GA/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/rex-demo/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/samples/rex-demo/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
Modified: tags/3.2.2.GA/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.GA/sandbox/ui/create.bat
===================================================================
--- branches/3.2.x/sandbox/ui/create.bat 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/ui/create.bat 2008-09-10 00:02:07 UTC (rev 10391)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.2.2-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.2.2.GA -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.2.2.GA/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/dialog-window/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/ui/dialog-window/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.2.2.GA/sandbox/ui/editor/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/editor/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/ui/editor/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/panel2/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/ui/panel2/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/sandbox/ui/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/ui/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.2.2.GA/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/rex-button/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/ui/rex-button/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/rex-messageBox/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/ui/rex-messageBox/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/rex-resizable/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/ui/rex-resizable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/simpleTogglePanel2/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/ui/simpleTogglePanel2/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/sortableHeader/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/ui/sortableHeader/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/treeTable/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/sandbox/ui/treeTable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/test-applications/facelets/pom.xml
===================================================================
--- branches/3.2.x/test-applications/facelets/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/test-applications/facelets/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.GA/test-applications/jsp/pom.xml
===================================================================
--- branches/3.2.x/test-applications/jsp/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/test-applications/jsp/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.GA/test-applications/pom.xml
===================================================================
--- branches/3.2.x/test-applications/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/test-applications/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.2.2-SNAPSHOT</rfVersion>
+ <rfVersion>3.2.2.GA</rfVersion>
</properties>
<modules>
Modified: tags/3.2.2.GA/test-applications/seam/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seam/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/test-applications/seam/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -5,7 +5,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications</groupId>
Modified: tags/3.2.2.GA/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seleniumTest/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/test-applications/seleniumTest/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -217,7 +217,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.GA/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seleniumTest/richfaces/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/test-applications/seleniumTest/richfaces/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.2.2.GA/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seleniumTest/samples/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/test-applications/seleniumTest/samples/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.2.2.GA/ui/assembly/pom.xml
===================================================================
--- branches/3.2.x/ui/assembly/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/assembly/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.2.2.GA/ui/beanValidator/pom.xml
===================================================================
--- branches/3.2.x/ui/beanValidator/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/beanValidator/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -1,70 +1,69 @@
-<?xml version="1.0"?>
-<project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>beanValidator</artifactId>
- <name>beanValidator</name>
- <version>3.2.2-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>beanValidator</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-validator</artifactId>
- <version>3.1.0.CR1</version>
- <exclusions>
- <!--
- <exclusion> <artifactId>hibernate-core</artifactId>
- <groupId>org.hibernate</groupId> </exclusion> <exclusion>
- <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
- </exclusion>
- -->
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.4.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.2.2.GA</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>beanValidator</artifactId>
+ <name>beanValidator</name>
+ <version>3.2.2.GA</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.2.2.GA</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>beanValidator</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ <version>3.1.0.CR1</version>
+ <exclusions>
+ <!--
+ <exclusion> <artifactId>hibernate-core</artifactId>
+ <groupId>org.hibernate</groupId> </exclusion> <exclusion>
+ <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
+ </exclusion>
+ -->
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.4.2</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/calendar/pom.xml
===================================================================
--- branches/3.2.x/ui/calendar/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/calendar/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/columns/pom.xml
===================================================================
--- branches/3.2.x/ui/columns/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/columns/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.2.2.GA/ui/combobox/pom.xml
===================================================================
--- branches/3.2.x/ui/combobox/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/combobox/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
Modified: tags/3.2.2.GA/ui/componentControl/pom.xml
===================================================================
--- branches/3.2.x/ui/componentControl/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/componentControl/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/contextMenu/pom.xml
===================================================================
--- branches/3.2.x/ui/contextMenu/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/contextMenu/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/core/pom.xml
===================================================================
--- branches/3.2.x/ui/core/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/core/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/create.bat
===================================================================
--- branches/3.2.x/ui/create.bat 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/create.bat 2008-09-10 00:02:07 UTC (rev 10391)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.2.2-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.2.2.GA -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/3.2.x/ui/dataFilterSlider/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/dataFilterSlider/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/dataTable/pom.xml
===================================================================
--- branches/3.2.x/ui/dataTable/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/dataTable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
-->
</dependencies>
Modified: tags/3.2.2.GA/ui/datascroller/pom.xml
===================================================================
--- branches/3.2.x/ui/datascroller/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/datascroller/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/drag-drop/pom.xml
===================================================================
--- branches/3.2.x/ui/drag-drop/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/drag-drop/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
-->
</dependencies>
Modified: tags/3.2.2.GA/ui/dropdown-menu/pom.xml
===================================================================
--- branches/3.2.x/ui/dropdown-menu/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/dropdown-menu/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/effect/pom.xml
===================================================================
--- branches/3.2.x/ui/effect/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/effect/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/extendedDataTable/pom.xml
===================================================================
--- branches/3.2.x/ui/extendedDataTable/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/extendedDataTable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -1,35 +1,35 @@
-<?xml version="1.0"?><project>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>extendedDataTable</artifactId>
- <name>extendedDataTable</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>extendedDataTable</shortName>
- </taglib>
- </library>
- </configuration>
+ <version>3.2.2.GA</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>extendedDataTable</artifactId>
+ <name>extendedDataTable</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.2.2.GA</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>extendedDataTable</shortName>
+ </taglib>
+ </library>
+ </configuration>
</plugin>
<plugin>
@@ -57,52 +57,52 @@
</execution>
</executions>
</plugin>
-
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>drag-drop</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>dataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.2.2.GA</version>
</dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>menu-components</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>contextMenu</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>jQuery</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>componentControl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>scrollableDataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- </dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>drag-drop</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>dataTable</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>menu-components</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>contextMenu</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>jQuery</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>componentControl</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>scrollableDataTable</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/fileUpload/pom.xml
===================================================================
--- branches/3.2.x/ui/fileUpload/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/fileUpload/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/functions/pom.xml
===================================================================
--- branches/3.2.x/ui/functions/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/functions/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/gmap/pom.xml
===================================================================
--- branches/3.2.x/ui/gmap/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/gmap/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/hotKey/pom.xml
===================================================================
--- branches/3.2.x/ui/hotKey/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/hotKey/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -1,56 +1,56 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>hotKey</artifactId>
- <name>hotKey</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>hotKey</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.2.2.GA</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>hotKey</artifactId>
+ <name>hotKey</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.2.2.GA</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>hotKey</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/inplaceInput/pom.xml
===================================================================
--- branches/3.2.x/ui/inplaceInput/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/inplaceInput/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/inplaceSelect/pom.xml
===================================================================
--- branches/3.2.x/ui/inplaceSelect/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/inplaceSelect/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
Modified: tags/3.2.2.GA/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/3.2.x/ui/inputnumber-slider/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/inputnumber-slider/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/3.2.x/ui/inputnumber-spinner/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/inputnumber-spinner/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.2.2.GA/ui/insert/pom.xml
===================================================================
--- branches/3.2.x/ui/insert/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/insert/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/jQuery/pom.xml
===================================================================
--- branches/3.2.x/ui/jQuery/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/jQuery/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/listShuttle/pom.xml
===================================================================
--- branches/3.2.x/ui/listShuttle/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/listShuttle/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.2.2.GA/ui/menu-components/pom.xml
===================================================================
--- branches/3.2.x/ui/menu-components/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/menu-components/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/message/pom.xml
===================================================================
--- branches/3.2.x/ui/message/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/message/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/modal-panel/pom.xml
===================================================================
--- branches/3.2.x/ui/modal-panel/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/modal-panel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/orderingList/pom.xml
===================================================================
--- branches/3.2.x/ui/orderingList/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/orderingList/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/paint2D/pom.xml
===================================================================
--- branches/3.2.x/ui/paint2D/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/paint2D/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/panel/pom.xml
===================================================================
--- branches/3.2.x/ui/panel/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/panel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/panelbar/pom.xml
===================================================================
--- branches/3.2.x/ui/panelbar/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/panelbar/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/panelmenu/pom.xml
===================================================================
--- branches/3.2.x/ui/panelmenu/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/panelmenu/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/pickList/pom.xml
===================================================================
--- branches/3.2.x/ui/pickList/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/pickList/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
Modified: tags/3.2.2.GA/ui/pom.xml
===================================================================
--- branches/3.2.x/ui/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -135,12 +135,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.2.2.GA/ui/progressBAR/pom.xml
===================================================================
--- branches/3.2.x/ui/progressBAR/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/progressBAR/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/3.2.x/ui/scrollableDataTable/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/scrollableDataTable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/separator/pom.xml
===================================================================
--- branches/3.2.x/ui/separator/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/separator/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.2.2.GA/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/3.2.x/ui/simpleTogglePanel/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/simpleTogglePanel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/spacer/pom.xml
===================================================================
--- branches/3.2.x/ui/spacer/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/spacer/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/state/pom.xml
===================================================================
--- branches/3.2.x/ui/state/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/state/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -1,43 +1,43 @@
-<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>state</artifactId>
- <name>state</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>state</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.2.2.GA</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>state</artifactId>
+ <name>state</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.2.2.GA</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>state</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.2.2.GA</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/suggestionbox/pom.xml
===================================================================
--- branches/3.2.x/ui/suggestionbox/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/suggestionbox/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/tabPanel/pom.xml
===================================================================
--- branches/3.2.x/ui/tabPanel/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/tabPanel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/togglePanel/pom.xml
===================================================================
--- branches/3.2.x/ui/togglePanel/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/togglePanel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/toolBar/pom.xml
===================================================================
--- branches/3.2.x/ui/toolBar/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/toolBar/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/tooltip/pom.xml
===================================================================
--- branches/3.2.x/ui/tooltip/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/tooltip/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/tree/pom.xml
===================================================================
--- branches/3.2.x/ui/tree/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/tree/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/treeModel/pom.xml
===================================================================
--- branches/3.2.x/ui/treeModel/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/treeModel/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.GA/ui/treeTable/pom.xml
===================================================================
--- branches/3.2.x/ui/treeTable/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/treeTable/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.GA/ui/virtualEarth/pom.xml
===================================================================
--- branches/3.2.x/ui/virtualEarth/pom.xml 2008-09-09 19:26:42 UTC (rev 10388)
+++ tags/3.2.2.GA/ui/virtualEarth/pom.xml 2008-09-10 00:02:07 UTC (rev 10391)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.GA</version>
<executions>
<execution>
<phase>generate-sources</phase>
16 years, 3 months
JBoss Rich Faces SVN: r10390 - trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-09 18:24:54 -0400 (Tue, 09 Sep 2008)
New Revision: 10390
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-4437
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml 2008-09-09 22:22:50 UTC (rev 10389)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml 2008-09-09 22:24:54 UTC (rev 10390)
@@ -20,20 +20,19 @@
popup="false" showApplyButton="false"
cellWidth="100px" cellHeight="100px"
boundaryDatesMode="none" showWeeksBar="false"
- dataModel="#{calendarDataModel}" oncurrentdateselect="return false" id="organizer" valueChangeListener="#{calendarDataModel.valueChanged}" showFooter="false">
+ dataModel="#{calendarDataModel}" onchanged="if (event.rich.date) {ajaxSubmit();}" oncurrentdateselect="return false" id="organizer" valueChangeListener="#{calendarDataModel.valueChanged}" showFooter="false">
<f:facet name="header">
<h:panelGroup>
<h:outputText value="Current Month" styleClass="header"/>
</h:panelGroup>
</f:facet>
- <a4j:outputPanel layout="block" id="cell" onclick="ajaxSubmit()" style="height: 100%;">
+ <a4j:outputPanel layout="block" id="cell" onclick="#{rich:component('organizer')}.resetSelectedDate()" style="height: 100%;">
<h:panelGrid columns="1">
<h:outputText value="{day}" style="align:center"/>
<h:outputText value="{data.shortDescription}"/>
<h:outputText value="{data.description}"/>
</h:panelGrid>
</a4j:outputPanel>
- <a4j:support event="onchanged" reRender="editContent" />
</rich:calendar>
</h:form>
<rich:modalPanel id="panel" resizeable="false">
16 years, 3 months
JBoss Rich Faces SVN: r10389 - branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-09 18:22:50 -0400 (Tue, 09 Sep 2008)
New Revision: 10389
Modified:
branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-4437
Modified: branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml 2008-09-09 19:26:42 UTC (rev 10388)
+++ branches/3.2.x/samples/richfaces-demo/src/main/webapp/richfaces/calendar/examples/organiser.xhtml 2008-09-09 22:22:50 UTC (rev 10389)
@@ -20,20 +20,19 @@
popup="false" showApplyButton="false"
cellWidth="100px" cellHeight="100px"
boundaryDatesMode="none" showWeeksBar="false"
- dataModel="#{calendarDataModel}" oncurrentdateselect="return false" id="organizer" valueChangeListener="#{calendarDataModel.valueChanged}" showFooter="false">
+ dataModel="#{calendarDataModel}" onchanged="if (event.rich.date) {ajaxSubmit();}" oncurrentdateselect="return false" id="organizer" valueChangeListener="#{calendarDataModel.valueChanged}" showFooter="false">
<f:facet name="header">
<h:panelGroup>
<h:outputText value="Current Month" styleClass="header"/>
</h:panelGroup>
</f:facet>
- <a4j:outputPanel layout="block" id="cell" onclick="ajaxSubmit()" style="height: 100%;">
+ <a4j:outputPanel layout="block" id="cell" onclick="#{rich:component('organizer')}.resetSelectedDate()" style="height: 100%;">
<h:panelGrid columns="1">
<h:outputText value="{day}" style="align:center"/>
<h:outputText value="{data.shortDescription}"/>
<h:outputText value="{data.description}"/>
</h:panelGrid>
</a4j:outputPanel>
- <a4j:support event="onchanged" reRender="editContent" />
</rich:calendar>
</h:form>
<rich:modalPanel id="panel" resizeable="false">
16 years, 3 months