JBoss Rich Faces SVN: r10348 - trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-09-08 09:16:01 -0400 (Mon, 08 Sep 2008)
New Revision: 10348
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/DataFilterSliderBean.java
Log:
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/DataFilterSliderBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/DataFilterSliderBean.java 2008-09-08 13:04:02 UTC (rev 10347)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/DataFilterSliderBean.java 2008-09-08 13:16:01 UTC (rev 10348)
@@ -8,7 +8,7 @@
public class DataFilterSliderBean {
- public class Planet {
+ public static class Planet {
private String name;
private double gravity;
16 years, 3 months
JBoss Rich Faces SVN: r10347 - trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-09-08 09:04:02 -0400 (Mon, 08 Sep 2008)
New Revision: 10347
Removed:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/Planet.java
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/DataFilterSliderBean.java
Log:
made the class inner
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/DataFilterSliderBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/DataFilterSliderBean.java 2008-09-08 11:51:03 UTC (rev 10346)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/DataFilterSliderBean.java 2008-09-08 13:04:02 UTC (rev 10347)
@@ -7,8 +7,28 @@
import org.richfaces.event.DataFilterSliderEvent;
public class DataFilterSliderBean {
+
+ public class Planet {
+ private String name;
+
+ private double gravity;
+
+ Planet(String n, double g) {
+ name = n;
+ gravity = g;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public double getGravity() {
+ return gravity;
+ }
+ }
+
private UIDataFltrSlider slider;
-
+
private List<Planet> planets;
private String eventSnapshot = "";
Deleted: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/Planet.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/Planet.java 2008-09-08 11:51:03 UTC (rev 10346)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/Planet.java 2008-09-08 13:04:02 UTC (rev 10347)
@@ -1,20 +0,0 @@
-package org.ajax4jsf.bean;
-
-public class Planet {
- private String name;
-
- private double gravity;
-
- Planet(String n, double g) {
- name = n;
- gravity = g;
- }
-
- public String getName() {
- return name;
- }
-
- public double getGravity() {
- return gravity;
- }
-}
16 years, 3 months
JBoss Rich Faces SVN: r10346 - trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean.
by richfaces-svn-commits@lists.jboss.org
Author: dsvyatobatsko
Date: 2008-09-08 07:51:03 -0400 (Mon, 08 Sep 2008)
New Revision: 10346
Modified:
trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/IndexBean.java
Log:
brought to up-to-date
Modified: trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/IndexBean.java
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/IndexBean.java 2008-09-08 11:08:43 UTC (rev 10345)
+++ trunk/test-applications/seleniumTest/richfaces/src/main/java/org/ajax4jsf/bean/IndexBean.java 2008-09-08 11:51:03 UTC (rev 10346)
@@ -7,94 +7,105 @@
import java.util.Map;
public class IndexBean {
-
- private List<ComponentItem> list = new ArrayList<ComponentItem>();
-
- public class ComponentItem {
- String name;
- String link;
-
-
- public ComponentItem(String name, String link) {
- this.name = name;
- this.link = link;
- }
- /**
- * @return the name
- */
- public String getName() {
- return name;
- }
+ private List<ComponentItem> list = new ArrayList<ComponentItem>();
- /**
- * @return the link
- */
- public String getLink() {
- return link;
- }
-
- };
-
- private void sortList () {
- String [] names = new String [list.size()];
- Map<String, ComponentItem> map = new HashMap<String, ComponentItem>();
- for (int i=0; i < list.size(); i++) {
- names [i] = list.get(i).name;
- map.put(list.get(i).name, list.get(i));
- }
- Arrays.sort(names);
- list = new ArrayList<ComponentItem>();
- for (String name : names) {
- list.add(map.get(name));
- }
- }
-
- public IndexBean() {
- list.add(new ComponentItem("<a4j:commandButton>", "ajaxCommandButton/ajaxButtonTest.xhtml"));
- list.add(new ComponentItem("<a4j:commandLink>", "ajaxCommandLink/ajaxLinkTest.xhtml"));
- list.add(new ComponentItem("<a4j:htmlCommandLink>", "ajaxHTMLCommandLink/ajaxHTMLLinkTest.xhtml"));
- list.add(new ComponentItem("<a4j:poll>", "ajaxPoll/ajaxPollTest.xhtml"));
- list.add(new ComponentItem("<a4j:region>", "ajaxRegion/ajaxRegionTest.xhtml"));
- list.add(new ComponentItem("<rich:calendar>", "calendar/calendarTest.xhtml"));
- list.add(new ComponentItem("<rich:combobox>", "comboBox/comboBoxTest.xhtml"));
- list.add(new ComponentItem("<rich:contextMenu>", "contextMenu/contextMenu.xhtml"));
- list.add(new ComponentItem("<rich:dataTable>", "dataTable/dataTableTest.xhtml"));
- list.add(new ComponentItem("<rich:dropDownMenu>", "dropDownMenu/dropDownMenuTest.xhtml"));
- list.add(new ComponentItem("<rich:inplaceSelect>", "inplaceSelect/inplaceSelectTest.xhtml"));
- list.add(new ComponentItem("<rich:inputNumberSpinner>", "inputNumberSpinner/inputNumberSpinnerTest.xhtml"));
- list.add(new ComponentItem("<a4j:keepAlive>", "keepAlive/keepAliveTest.xhtml"));
- list.add(new ComponentItem("<a4j:loadScript>", "loadScript/loadScriptTest.xhtml"));
- list.add(new ComponentItem("<a4j:loadStyle>", "loadStyle/loadStyleTest.xhtml"));
- list.add(new ComponentItem("<rich:orderingList>", "orderingList/orderingListTest.xhtml"));
- list.add(new ComponentItem("<rich:panelBar>", "panelBar/panelBarTest.xhtml"));
- list.add(new ComponentItem("<rich:panelMenu>", "panelMenu/panelMenuTest.xhtml"));
- list.add(new ComponentItem("<rich:pickList>", "pickList/pickListTest.xhtml"));
- list.add(new ComponentItem("<rich:progressBar>", "progressBar/progressBarTest.xhtml"));
- list.add(new ComponentItem("<rich:simpleTogglePanel>", "simpleTogglePanel/simpleTogglePanel.xhtml"));
- list.add(new ComponentItem("<rich:tabPanel>", "tabPanel/tabPanelTest.xhtml"));
- list.add(new ComponentItem("<rich:togglePanel>", "togglePanel/togglePanelTest.xhtml"));
- list.add(new ComponentItem("<a4j:actionParam>", "actionParam/actionParam.xhtml"));
- list.add(new ComponentItem("<a4j:form>", "ajaxForm/ajaxFormTest.xhtml"));
- list.add(new ComponentItem("<a4j:ajaxListener>", "ajaxListener/ajaxListenerTest.xhtml"));
- list.add(new ComponentItem("<a4j:outputPanel>", "ajaxOutputPanel/ajaxOutputPanelTest.xhtml"));
- list.add(new ComponentItem("<a4j:support>", "ajaxOutputPanel/ajaxOutputPanelTest.xhtml"));
- list.add(new ComponentItem("<a4j:jsFunction>", "jsFunction/jsFunctionTest.xhtml"));
- list.add(new ComponentItem("<rich:spacer>", "spacer/spacerTest.xhtml"));
- list.add(new ComponentItem("<a4j:loadBundle>", "loadBundle/loadBundle.xhtml"));
- list.add(new ComponentItem("<rich:toolTip>", "toolTip/toolTip.xhtml"));
- list.add(new ComponentItem("<rich:listShuttle>", "listShuttle/listShuttleTest.xhtml"));
-
- sortList();
-
- }
-
- /**
- * @return the list
- */
- public List<ComponentItem> getList() {
- return list;
- }
+ public class ComponentItem {
+ String name;
+ String link;
+ public ComponentItem(String name, String link) {
+ this.name = name;
+ this.link = link;
+ }
+
+ /**
+ * @return the name
+ */
+ public String getName() {
+ return name;
+ }
+
+ /**
+ * @return the link
+ */
+ public String getLink() {
+ return link;
+ }
+
+ };
+
+ private void sortList() {
+ String[] names = new String[list.size()];
+ Map<String, ComponentItem> map = new HashMap<String, ComponentItem>();
+ for (int i = 0; i < list.size(); i++) {
+ names[i] = list.get(i).name;
+ map.put(list.get(i).name, list.get(i));
+ }
+ Arrays.sort(names);
+ list = new ArrayList<ComponentItem>();
+ for (String name : names) {
+ list.add(map.get(name));
+ }
+ }
+
+ public IndexBean() {
+ list.add(new ComponentItem("<a4j:commandButton>", "ajaxCommandButton/ajaxButtonTest.xhtml"));
+ list.add(new ComponentItem("<a4j:commandLink>", "ajaxCommandLink/ajaxLinkTest.xhtml"));
+ list.add(new ComponentItem("<a4j:htmlCommandLink>", "ajaxHTMLCommandLink/ajaxHTMLLinkTest.xhtml"));
+ list.add(new ComponentItem("<a4j:poll>", "ajaxPoll/ajaxPollTest.xhtml"));
+ list.add(new ComponentItem("<a4j:region>", "ajaxRegion/ajaxRegionTest.xhtml"));
+ list.add(new ComponentItem("<rich:calendar>", "calendar/calendarTest.xhtml"));
+ list.add(new ComponentItem("<rich:combobox>", "comboBox/comboBoxTest.xhtml"));
+ list.add(new ComponentItem("<rich:contextMenu>", "contextMenu/contextMenu.xhtml"));
+ list.add(new ComponentItem("<rich:dataTable>", "dataTable/dataTableTest.xhtml"));
+ list.add(new ComponentItem("<rich:dropDownMenu>", "dropDownMenu/dropDownMenuTest.xhtml"));
+ list.add(new ComponentItem("<rich:inplaceSelect>", "inplaceSelect/inplaceSelectTest.xhtml"));
+ list.add(new ComponentItem("<rich:inputNumberSpinner>", "inputNumberSpinner/inputNumberSpinnerTest.xhtml"));
+ list.add(new ComponentItem("<a4j:keepAlive>", "keepAlive/keepAliveTest.xhtml"));
+ list.add(new ComponentItem("<a4j:loadScript>", "loadScript/loadScriptTest.xhtml"));
+ list.add(new ComponentItem("<a4j:loadStyle>", "loadStyle/loadStyleTest.xhtml"));
+ list.add(new ComponentItem("<rich:orderingList>", "orderingList/orderingListTest.xhtml"));
+ list.add(new ComponentItem("<rich:panelBar>", "panelBar/panelBarTest.xhtml"));
+ list.add(new ComponentItem("<rich:panelMenu>", "panelMenu/panelMenuTest.xhtml"));
+ list.add(new ComponentItem("<rich:pickList>", "pickList/pickListTest.xhtml"));
+ list.add(new ComponentItem("<rich:progressBar>", "progressBar/progressBarTest.xhtml"));
+ list.add(new ComponentItem("<rich:simpleTogglePanel>", "simpleTogglePanel/simpleTogglePanel.xhtml"));
+ list.add(new ComponentItem("<rich:tabPanel>", "tabPanel/tabPanelTest.xhtml"));
+ list.add(new ComponentItem("<rich:togglePanel>", "togglePanel/togglePanelTest.xhtml"));
+ list.add(new ComponentItem("<a4j:actionParam>", "actionParam/actionParam.xhtml"));
+ list.add(new ComponentItem("<a4j:form>", "ajaxForm/ajaxFormTest.xhtml"));
+ list.add(new ComponentItem("<a4j:ajaxListener>", "ajaxListener/ajaxListenerTest.xhtml"));
+ list.add(new ComponentItem("<a4j:outputPanel>", "ajaxOutputPanel/ajaxOutputPanelTest.xhtml"));
+ list.add(new ComponentItem("<a4j:support>", "ajaxSupport/ajaxSupport.xhtml"));
+ list.add(new ComponentItem("<a4j:jsFunction>", "jsFunction/jsFunctionTest.xhtml"));
+ list.add(new ComponentItem("<rich:spacer>", "spacer/spacerTest.xhtml"));
+ list.add(new ComponentItem("<a4j:loadBundle>", "loadBundle/loadBundle.xhtml"));
+ list.add(new ComponentItem("<rich:toolTip>", "toolTip/toolTip.xhtml"));
+ list.add(new ComponentItem("<rich:listShuttle>", "listShuttle/listShuttleTest.xhtml"));
+ list.add(new ComponentItem("<a4j:include>", "ajaxInclude/ajaxIncludeTest.xhtml"));
+ list.add(new ComponentItem("<a4j:log>", "ajaxLog/ajaxLogTest.xhtml"));
+ list.add(new ComponentItem("<a4j:mediaOutput>", "ajaxMediaOutput/ajaxMediaOutputTest.xhtml"));
+ list.add(new ComponentItem("<a4j:push>", "ajaxPush/ajaxPushTest.xhtml"));
+ list.add(new ComponentItem("<a4j:repeat>", "ajaxRepeat/ajaxRepeatTest.xhtml"));
+ list.add(new ComponentItem("<a4j:status>", "ajaxStatus/ajaxStatusTest.xhtml"));
+ list.add(new ComponentItem("<rich:columns>", "columns/columnsTest.xhtml"));
+ list.add(new ComponentItem("<rich:dataFilterSlider>", "dataFilterSlider/dataFilterSliderTest.xhtml"));
+ list.add(new ComponentItem("<rich:inplaceInput>", "inplaceInput/inplaceInputTest.xhtml"));
+ list.add(new ComponentItem("<rich:inputNumberSlider>", "inputNumberSlider/inputNumberSliderTest.xhtml"));
+ list.add(new ComponentItem("<rich:modalPanel>", "modalPanel/modalPanelTest.xhtml"));
+ list.add(new ComponentItem("<rich:toolBar>", "toolBar/toolBarTest.xhtml"));
+
+ sortList();
+
+ }
+
+ /**
+ * @return the list
+ */
+ public List<ComponentItem> getList() {
+ return list;
+ }
+
}
16 years, 3 months
JBoss Rich Faces SVN: r10345 - Reports/3.2.2 and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2008-09-08 07:08:43 -0400 (Mon, 08 Sep 2008)
New Revision: 10345
Added:
branches/3.2.x/test-applications/qa/Test Reports/3.2.2/ComponentsAssignment3.2.2.CR3.xls
Log:
Added: branches/3.2.x/test-applications/qa/Test Reports/3.2.2/ComponentsAssignment3.2.2.CR3.xls
===================================================================
(Binary files differ)
Property changes on: branches/3.2.x/test-applications/qa/Test Reports/3.2.2/ComponentsAssignment3.2.2.CR3.xls
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 3 months
JBoss Rich Faces SVN: r10344 - trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable.
by richfaces-svn-commits@lists.jboss.org
Author: pkawiak
Date: 2008-09-08 06:41:13 -0400 (Mon, 08 Sep 2008)
New Revision: 10344
Modified:
trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js
Log:
RF-4359 - wrong calculation of header elements top value if header facet present.
Modified: trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js
===================================================================
--- trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js 2008-09-08 08:48:26 UTC (rev 10343)
+++ trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js 2008-09-08 10:41:13 UTC (rev 10344)
@@ -169,7 +169,7 @@
var headerChildChildren = headerChild.childElements();
var sepSpan = headerChildChildren[2];
var headerRowHeight = this.headerRow.getHeight();
- var headerRowY = this.getCaptionHeight();
+ var headerRowY = this.headerRow.getY();
sepSpan.columnIndex = i;
var sd = sepSpan.getWidth()/2 + 1;
var dropSpanLeft = headerChildChildren[3];
16 years, 3 months
JBoss Rich Faces SVN: r10343 - management/design/Editor.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-09-08 04:48:26 -0400 (Mon, 08 Sep 2008)
New Revision: 10343
Modified:
management/design/Editor/Func-Spec-Editor.doc
management/design/Editor/vision.doc
Log:
Modified: management/design/Editor/Func-Spec-Editor.doc
===================================================================
(Binary files differ)
Modified: management/design/Editor/vision.doc
===================================================================
(Binary files differ)
16 years, 3 months
JBoss Rich Faces SVN: r10342 - management/design/Editor.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2008-09-08 04:36:18 -0400 (Mon, 08 Sep 2008)
New Revision: 10342
Added:
management/design/Editor/Func-Spec-Editor.doc
Removed:
management/design/Editor/Func-Spec-Split Panel.doc
Log:
Added: management/design/Editor/Func-Spec-Editor.doc
===================================================================
(Binary files differ)
Property changes on: management/design/Editor/Func-Spec-Editor.doc
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: management/design/Editor/Func-Spec-Split Panel.doc
===================================================================
(Binary files differ)
16 years, 3 months
JBoss Rich Faces SVN: r10341 - trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable.
by richfaces-svn-commits@lists.jboss.org
Author: pkawiak
Date: 2008-09-08 02:16:16 -0400 (Mon, 08 Sep 2008)
New Revision: 10341
Modified:
trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js
trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js
Log:
extDt not rendering under opera 9.5
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-07 23:04:20 UTC (rev 10340)
+++ trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js 2008-09-08 06:16:16 UTC (rev 10341)
@@ -149,18 +149,26 @@
},
showSplashScreen: function(){
+ /**
+ Opera 95 is not drawing additional
+ element, and so I am commenting this out.
if (ClientUILib.isOpera) {
this.mainDiv.setStyle({display:'none'});
}
+ */
this.table.setStyle({visibility:'hidden'});
var splshscr = this.splashScreen;
splshscr.className = 'extdt-ss-vsbl';
},
hideSplashScreen: function(){
+ /**
+ Opera 95 is not drawing additional
+ element, and so I am commenting this out.
if (ClientUILib.isOpera) {
this.mainDiv.setStyle({display:''});
}
+ */
this.table.setStyle({visibility:'visible'});
this.splashScreen.className = 'extdt-ss-hdn';
},
@@ -354,15 +362,6 @@
if (excessWidth > 0) {
this.validateColumnsWidth(cols,excessWidth);
};
- if (ClientUILib.isOpera) {
- var _stl = 2;
- var cols = this.header.getColumns();
- var columnsNumber = this.header.getColumnsNumber();
- for (var i=0; i<columnsNumber-1; i++) {
- ClientUILib.log(ClientUILogger.INFO, "this.getColumnWidth(i) "+this.getColumnWidth(i));
- cols[i].width = this.getColumnWidth(i) - _stl;
- }
- };
cols[columnsNumber-1].width = null;
cols[cols.length-1].width = null;
var newHeight = mainDivHeight - header.getHeight() - footerHeight - 2;
@@ -386,11 +385,11 @@
this.createControls();
if ( !ClientUILib.isIE ) {
if (this.fakeIeRow) {
- this.table.getElement().deleteRow(this.fakeIeRow);
+ this.table.getElement().deleteRow(this.fakeIeRow.rowIndex);
this.fakeIeRow = null;
}
if (this.fakeIeBodyRow) {
- this.tableB.deleteRow(this.fakeIeBodyRow);
+ this.tableB.deleteRow(this.fakeIeBodyRow.rowIndex);
this.fakeIeBodyRow = null;
}
}
Modified: trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js
===================================================================
--- trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js 2008-09-07 23:04:20 UTC (rev 10340)
+++ trunk/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTableHeader.js 2008-09-08 06:16:16 UTC (rev 10341)
@@ -161,9 +161,8 @@
adjustSeparators: function() {
var columnCells = this.getColumnCells();
- this._redrawTable(this.extDt.table.getElement());
- this._redrawTable(this.extDt.tableB);
var l = columnCells.length;
+ this._redrawTable(this.extDt.table.getElement());
for (var i=0; i<l-1; i++) {
var headerChild = columnCells[i];
var headerNextChild = columnCells[i+1];
@@ -207,7 +206,8 @@
this.lastColWidth = this.extDt.getColumnWidth(this.getColumnsNumber()-1);
if (ClientUILib.isIE){
this.lastColWidth -= 15;
- }
+ }
+ this._redrawTable(this.extDt.tableB);
},
OnSepClick: function(event) {
@@ -221,7 +221,7 @@
srcElement: Event.element(event),
dragStarted: false,
mouseDown: true,
- startX: Event.pointerX(event) - this.extDt.outerDiv.getX(),
+ startX: Event.pointerX(event),
originalX: 0
};
var srcElement = this.dragColumnInfo.srcElement;
@@ -240,7 +240,7 @@
this._createSplitter();
}
- var pos = this.dragColumnInfo.startX;
+ var pos = this.dragColumnInfo.srcElement.offsetLeft;
pos += 6; //6 stands for width of the separatorSpan
this.dragColumnInfo.originalX = pos;
this.columnSplitter.show();
@@ -270,8 +270,7 @@
this.dragColumnInfo.mouseDown = false;
var delta = Event.pointerX(event) -
- this.dragColumnInfo.startX -
- this.extDt.outerDiv.getX();
+ this.dragColumnInfo.startX;
if (delta < this.minDelta) {
delta = this.minDelta;
}
@@ -307,8 +306,7 @@
this._showSplitter(this.dragColumnInfo.srcElement.columnIndex);
}
var delta = Event.pointerX(event) -
- this.dragColumnInfo.startX -
- this.extDt.outerDiv.getX();
+ this.dragColumnInfo.startX
if (delta < this.minDelta) {
delta = this.minDelta;
}
@@ -322,12 +320,10 @@
}
},
_redrawTable: function(table) {
- table.hide();
var tr = table.insertRow(0);
var td = tr.insertCell(0);
td.setAttribute("colspan", 5);
td.innerHTML = "safari-must-have-something-inserted-to-redraw-table";
- table.deleteRow(tr);
- table.show();
+ table.deleteRow(tr.rowIndex);
}
});
\ No newline at end of file
16 years, 3 months
JBoss Rich Faces SVN: r10340 - in tags: 3.2.2.CR4 and 177 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-09-07 19:04:20 -0400 (Sun, 07 Sep 2008)
New Revision: 10340
Added:
tags/3.2.2.CR4/
Modified:
tags/3.2.2.CR4/cdk/generator/pom.xml
tags/3.2.2.CR4/cdk/maven-archetype-jsf-component/pom.xml
tags/3.2.2.CR4/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.2.2.CR4/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.2.2.CR4/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.2.2.CR4/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.2.2.CR4/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.2.2.CR4/cdk/maven-cdk-plugin/pom.xml
tags/3.2.2.CR4/cdk/maven-javascript-plugin/pom.xml
tags/3.2.2.CR4/cdk/pom.xml
tags/3.2.2.CR4/docs/cdkguide/en/pom.xml
tags/3.2.2.CR4/docs/cdkguide/pom.xml
tags/3.2.2.CR4/docs/faq/en/pom.xml
tags/3.2.2.CR4/docs/faq/pom.xml
tags/3.2.2.CR4/docs/highlight/pom.xml
tags/3.2.2.CR4/docs/migrationguide/en/pom.xml
tags/3.2.2.CR4/docs/migrationguide/pom.xml
tags/3.2.2.CR4/docs/pom.xml
tags/3.2.2.CR4/docs/userguide/en/pom.xml
tags/3.2.2.CR4/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.2.2.CR4/docs/userguide/pom.xml
tags/3.2.2.CR4/docs/xslt/en/pom.xml
tags/3.2.2.CR4/docs/xslt/pom.xml
tags/3.2.2.CR4/extensions/gwt/pom.xml
tags/3.2.2.CR4/extensions/pom.xml
tags/3.2.2.CR4/extensions/seam/pom.xml
tags/3.2.2.CR4/extensions/trinidad/pom.xml
tags/3.2.2.CR4/framework/api/pom.xml
tags/3.2.2.CR4/framework/impl/pom.xml
tags/3.2.2.CR4/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.2.2.CR4/framework/pom.xml
tags/3.2.2.CR4/framework/test/pom.xml
tags/3.2.2.CR4/pom.xml
tags/3.2.2.CR4/samples/beanValidatorSample/pom.xml
tags/3.2.2.CR4/samples/calendar-sample/pom.xml
tags/3.2.2.CR4/samples/columnsDemo/pom.xml
tags/3.2.2.CR4/samples/combobox-sample/pom.xml
tags/3.2.2.CR4/samples/contextMenuDemo/pom.xml
tags/3.2.2.CR4/samples/darkX/pom.xml
tags/3.2.2.CR4/samples/dataFilterSliderDemo/pom.xml
tags/3.2.2.CR4/samples/dataTableDemo/pom.xml
tags/3.2.2.CR4/samples/datascroller-sample/pom.xml
tags/3.2.2.CR4/samples/dragDropDemo/pom.xml
tags/3.2.2.CR4/samples/dropdownmenu-sample/pom.xml
tags/3.2.2.CR4/samples/effect-sample/pom.xml
tags/3.2.2.CR4/samples/extendedDataTable-sample/pom.xml
tags/3.2.2.CR4/samples/fileUploadDemo/pom.xml
tags/3.2.2.CR4/samples/functions-demo/pom.xml
tags/3.2.2.CR4/samples/glassX/pom.xml
tags/3.2.2.CR4/samples/gmap-sample/pom.xml
tags/3.2.2.CR4/samples/hotKey-sample/pom.xml
tags/3.2.2.CR4/samples/inplaceInput-sample/pom.xml
tags/3.2.2.CR4/samples/inplaceSelect-sample/pom.xml
tags/3.2.2.CR4/samples/inputNumberSliderDemo/pom.xml
tags/3.2.2.CR4/samples/inputNumberSpinnerDemo/pom.xml
tags/3.2.2.CR4/samples/jQuery-sample/pom.xml
tags/3.2.2.CR4/samples/jira-data/pom.xml
tags/3.2.2.CR4/samples/laguna/pom.xml
tags/3.2.2.CR4/samples/listShuttleDemo/pom.xml
tags/3.2.2.CR4/samples/local-value-demo/pom.xml
tags/3.2.2.CR4/samples/modalpanel-sample/pom.xml
tags/3.2.2.CR4/samples/orderingListDemo/pom.xml
tags/3.2.2.CR4/samples/panel-sample/pom.xml
tags/3.2.2.CR4/samples/panelbar-sample/pom.xml
tags/3.2.2.CR4/samples/panelmenu-sample/pom.xml
tags/3.2.2.CR4/samples/pickList-sample/pom.xml
tags/3.2.2.CR4/samples/pom.xml
tags/3.2.2.CR4/samples/progressBarDemo/pom.xml
tags/3.2.2.CR4/samples/rich-message-demo/pom.xml
tags/3.2.2.CR4/samples/richfaces-art-datatable/pom.xml
tags/3.2.2.CR4/samples/richfaces-demo/pom.xml
tags/3.2.2.CR4/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.2.2.CR4/samples/richfaces-ear-demo/pom.xml
tags/3.2.2.CR4/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.2.2.CR4/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.2.2.CR4/samples/scrollableDataTableDemo/pom.xml
tags/3.2.2.CR4/samples/seamEAR/ear/pom.xml
tags/3.2.2.CR4/samples/seamEAR/ejbs/pom.xml
tags/3.2.2.CR4/samples/seamEAR/pom.xml
tags/3.2.2.CR4/samples/seamEAR/primary-source/pom.xml
tags/3.2.2.CR4/samples/seamEAR/projects/logging/pom.xml
tags/3.2.2.CR4/samples/seamEAR/projects/pom.xml
tags/3.2.2.CR4/samples/seamEAR/wars/pom.xml
tags/3.2.2.CR4/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.2.2.CR4/samples/seamIntegration/pom.xml
tags/3.2.2.CR4/samples/separator-sample/pom.xml
tags/3.2.2.CR4/samples/simpleTogglePanel-sample/pom.xml
tags/3.2.2.CR4/samples/skins/pom.xml
tags/3.2.2.CR4/samples/sortingFilteringDemo/pom.xml
tags/3.2.2.CR4/samples/state-sample/pom.xml
tags/3.2.2.CR4/samples/stdcomponents-sample/pom.xml
tags/3.2.2.CR4/samples/suggestionbox-sample/pom.xml
tags/3.2.2.CR4/samples/tabPanelDemo/pom.xml
tags/3.2.2.CR4/samples/togglePanel-sample/pom.xml
tags/3.2.2.CR4/samples/tomahawkCompability/pom.xml
tags/3.2.2.CR4/samples/toolBarDemo/pom.xml
tags/3.2.2.CR4/samples/tooltip-sample/pom.xml
tags/3.2.2.CR4/samples/tree-demo/pom.xml
tags/3.2.2.CR4/samples/treeModelDemo/pom.xml
tags/3.2.2.CR4/samples/virtualEarth-sample/pom.xml
tags/3.2.2.CR4/sandbox/api/pom.xml
tags/3.2.2.CR4/sandbox/impl/pom.xml
tags/3.2.2.CR4/sandbox/pom.xml
tags/3.2.2.CR4/sandbox/samples/dialog-window-sample/pom.xml
tags/3.2.2.CR4/sandbox/samples/editor-sample/pom.xml
tags/3.2.2.CR4/sandbox/samples/fileUploadPOC/pom.xml
tags/3.2.2.CR4/sandbox/samples/panel2-sample/pom.xml
tags/3.2.2.CR4/sandbox/samples/pom.xml
tags/3.2.2.CR4/sandbox/samples/rex-demo/pom.xml
tags/3.2.2.CR4/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.2.2.CR4/sandbox/ui/create.bat
tags/3.2.2.CR4/sandbox/ui/dialog-window/pom.xml
tags/3.2.2.CR4/sandbox/ui/editor/pom.xml
tags/3.2.2.CR4/sandbox/ui/panel2/pom.xml
tags/3.2.2.CR4/sandbox/ui/pom.xml
tags/3.2.2.CR4/sandbox/ui/rex-button/pom.xml
tags/3.2.2.CR4/sandbox/ui/rex-messageBox/pom.xml
tags/3.2.2.CR4/sandbox/ui/rex-resizable/pom.xml
tags/3.2.2.CR4/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.2.2.CR4/sandbox/ui/sortableHeader/pom.xml
tags/3.2.2.CR4/sandbox/ui/treeTable/pom.xml
tags/3.2.2.CR4/test-applications/facelets/pom.xml
tags/3.2.2.CR4/test-applications/jsp/pom.xml
tags/3.2.2.CR4/test-applications/pom.xml
tags/3.2.2.CR4/test-applications/seam/pom.xml
tags/3.2.2.CR4/test-applications/seleniumTest/pom.xml
tags/3.2.2.CR4/test-applications/seleniumTest/richfaces/pom.xml
tags/3.2.2.CR4/test-applications/seleniumTest/samples/pom.xml
tags/3.2.2.CR4/ui/assembly/pom.xml
tags/3.2.2.CR4/ui/beanValidator/pom.xml
tags/3.2.2.CR4/ui/calendar/pom.xml
tags/3.2.2.CR4/ui/columns/pom.xml
tags/3.2.2.CR4/ui/combobox/pom.xml
tags/3.2.2.CR4/ui/componentControl/pom.xml
tags/3.2.2.CR4/ui/contextMenu/pom.xml
tags/3.2.2.CR4/ui/core/pom.xml
tags/3.2.2.CR4/ui/create.bat
tags/3.2.2.CR4/ui/dataFilterSlider/pom.xml
tags/3.2.2.CR4/ui/dataTable/pom.xml
tags/3.2.2.CR4/ui/datascroller/pom.xml
tags/3.2.2.CR4/ui/drag-drop/pom.xml
tags/3.2.2.CR4/ui/dropdown-menu/pom.xml
tags/3.2.2.CR4/ui/effect/pom.xml
tags/3.2.2.CR4/ui/extendedDataTable/pom.xml
tags/3.2.2.CR4/ui/fileUpload/pom.xml
tags/3.2.2.CR4/ui/functions/pom.xml
tags/3.2.2.CR4/ui/gmap/pom.xml
tags/3.2.2.CR4/ui/hotKey/pom.xml
tags/3.2.2.CR4/ui/inplaceInput/pom.xml
tags/3.2.2.CR4/ui/inplaceSelect/pom.xml
tags/3.2.2.CR4/ui/inputnumber-slider/pom.xml
tags/3.2.2.CR4/ui/inputnumber-spinner/pom.xml
tags/3.2.2.CR4/ui/insert/pom.xml
tags/3.2.2.CR4/ui/jQuery/pom.xml
tags/3.2.2.CR4/ui/listShuttle/pom.xml
tags/3.2.2.CR4/ui/menu-components/pom.xml
tags/3.2.2.CR4/ui/message/pom.xml
tags/3.2.2.CR4/ui/modal-panel/pom.xml
tags/3.2.2.CR4/ui/orderingList/pom.xml
tags/3.2.2.CR4/ui/paint2D/pom.xml
tags/3.2.2.CR4/ui/panel/pom.xml
tags/3.2.2.CR4/ui/panelbar/pom.xml
tags/3.2.2.CR4/ui/panelmenu/pom.xml
tags/3.2.2.CR4/ui/pickList/pom.xml
tags/3.2.2.CR4/ui/pom.xml
tags/3.2.2.CR4/ui/progressBAR/pom.xml
tags/3.2.2.CR4/ui/scrollableDataTable/pom.xml
tags/3.2.2.CR4/ui/separator/pom.xml
tags/3.2.2.CR4/ui/simpleTogglePanel/pom.xml
tags/3.2.2.CR4/ui/spacer/pom.xml
tags/3.2.2.CR4/ui/state/pom.xml
tags/3.2.2.CR4/ui/suggestionbox/pom.xml
tags/3.2.2.CR4/ui/tabPanel/pom.xml
tags/3.2.2.CR4/ui/togglePanel/pom.xml
tags/3.2.2.CR4/ui/toolBar/pom.xml
tags/3.2.2.CR4/ui/tooltip/pom.xml
tags/3.2.2.CR4/ui/tree/pom.xml
tags/3.2.2.CR4/ui/treeModel/pom.xml
tags/3.2.2.CR4/ui/treeTable/pom.xml
tags/3.2.2.CR4/ui/virtualEarth/pom.xml
Log:
create tag for a release 3.2.2.CR4
Copied: tags/3.2.2.CR4 (from rev 10339, branches/3.2.x)
Modified: tags/3.2.2.CR4/cdk/generator/pom.xml
===================================================================
--- branches/3.2.x/cdk/generator/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/cdk/generator/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>generator</artifactId>
+ <version>3.2.2.CR4</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.CR4/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-jsf-component/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/cdk/maven-archetype-jsf-component/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/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-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.2.2.CR4/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-jsfwebapp/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/cdk/maven-archetype-jsfwebapp/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/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-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.2.2.CR4/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-archetype-plug-n-skin/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/cdk/maven-archetype-plug-n-skin/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.2.2.CR4/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-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.2.2.CR4/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-cdk-plugin/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/cdk/maven-cdk-plugin/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.2.2.CR4/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/3.2.x/cdk/maven-javascript-plugin/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/cdk/maven-javascript-plugin/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.2.2.CR4/cdk/pom.xml
===================================================================
--- branches/3.2.x/cdk/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/cdk/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.2.2.CR4/docs/cdkguide/en/pom.xml
===================================================================
--- branches/3.2.x/docs/cdkguide/en/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/cdkguide/en/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.2.2.CR4/docs/cdkguide/pom.xml
===================================================================
--- branches/3.2.x/docs/cdkguide/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/cdkguide/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.2.2.CR4/docs/faq/en/pom.xml
===================================================================
--- branches/3.2.x/docs/faq/en/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/faq/en/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.2.2.CR4/docs/faq/pom.xml
===================================================================
--- branches/3.2.x/docs/faq/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/faq/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<pluginRepositories>
Modified: tags/3.2.2.CR4/docs/highlight/pom.xml
===================================================================
--- branches/3.2.x/docs/highlight/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/highlight/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.2.2.CR4/docs/migrationguide/en/pom.xml
===================================================================
--- branches/3.2.x/docs/migrationguide/en/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/migrationguide/en/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: tags/3.2.2.CR4/docs/migrationguide/pom.xml
===================================================================
--- branches/3.2.x/docs/migrationguide/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/migrationguide/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.2.2.CR4/docs/pom.xml
===================================================================
--- branches/3.2.x/docs/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.2.2.CR4/docs/userguide/en/pom.xml
===================================================================
--- branches/3.2.x/docs/userguide/en/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/userguide/en/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.2.2.CR4/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/3.2.x/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4"</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.CR4
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: tags/3.2.2.CR4/docs/userguide/pom.xml
===================================================================
--- branches/3.2.x/docs/userguide/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/userguide/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.2.2.CR4/docs/xslt/en/pom.xml
===================================================================
--- branches/3.2.x/docs/xslt/en/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/xslt/en/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,12 +2,12 @@
<parent>
<artifactId>xslt</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.2.2.CR4/docs/xslt/pom.xml
===================================================================
--- branches/3.2.x/docs/xslt/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/docs/xslt/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<packaging>pom</packaging>
<name>Documentation stylesheets</name>
<description>Docbook documentation stylesheets</description>
Modified: tags/3.2.2.CR4/extensions/gwt/pom.xml
===================================================================
--- branches/3.2.x/extensions/gwt/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/extensions/gwt/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.2.2.CR4/extensions/pom.xml
===================================================================
--- branches/3.2.x/extensions/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/extensions/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.2.2.CR4/extensions/seam/pom.xml
===================================================================
--- branches/3.2.x/extensions/seam/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/extensions/seam/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.2.2.CR4/extensions/trinidad/pom.xml
===================================================================
--- branches/3.2.x/extensions/trinidad/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/extensions/trinidad/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.2.2.CR4/framework/api/pom.xml
===================================================================
--- branches/3.2.x/framework/api/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/framework/api/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: tags/3.2.2.CR4/framework/impl/pom.xml
===================================================================
--- branches/3.2.x/framework/impl/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/framework/impl/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/3.2.x/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.2.2.CR4/framework/pom.xml
===================================================================
--- branches/3.2.x/framework/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/framework/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: tags/3.2.2.CR4/framework/test/pom.xml
===================================================================
--- branches/3.2.x/framework/test/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/framework/test/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.CR4/pom.xml
===================================================================
--- branches/3.2.x/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</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.CR4</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.2.2.CR4</developerConnection>
+ <url>https://svn.jboss.org/repos/richfaces/branches/3.2.2.CR4</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.CR4/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/3.2.x/samples/beanValidatorSample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/beanValidatorSample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/samples/calendar-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/calendar-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/calendar-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/columnsDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/columnsDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/columnsDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/combobox-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/combobox-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/combobox-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/contextMenuDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/contextMenuDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/darkX/pom.xml
===================================================================
--- branches/3.2.x/samples/darkX/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/darkX/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</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.CR4</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.CR4</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.CR4/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/dataFilterSliderDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/dataFilterSliderDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/dataTableDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/dataTableDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/dataTableDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/datascroller-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/datascroller-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/datascroller-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/dragDropDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/dragDropDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/dragDropDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/dropdownmenu-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/dropdownmenu-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/effect-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/effect-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/effect-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/extendedDataTable-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/extendedDataTable-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.CR4/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/fileUploadDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/fileUploadDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/functions-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/functions-demo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/functions-demo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/glassX/pom.xml
===================================================================
--- branches/3.2.x/samples/glassX/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/glassX/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>glassX</artifactId>
+ <name>glassX</name>
+ <version>3.2.2.CR4</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.2.2.CR4</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.CR4</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.CR4/samples/gmap-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/gmap-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/gmap-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/hotKey-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/hotKey-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/hotKey-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.CR4/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/inplaceInput-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/inplaceInput-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/inplaceSelect-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/inplaceSelect-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/inputNumberSliderDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/inputNumberSliderDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/inputNumberSpinnerDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/inputNumberSpinnerDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/jQuery-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/jQuery-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/jQuery-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/jira-data/pom.xml
===================================================================
--- branches/3.2.x/samples/jira-data/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/jira-data/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/laguna/pom.xml
===================================================================
--- branches/3.2.x/samples/laguna/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/laguna/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.2.2.CR4/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/listShuttleDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/listShuttleDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/local-value-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/local-value-demo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/local-value-demo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/modalpanel-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/modalpanel-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/orderingListDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/orderingListDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/orderingListDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/panel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/panel-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/panel-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/panelbar-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/panelbar-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/panelbar-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/panelmenu-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/panelmenu-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/pickList-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/pickList-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/pickList-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/pom.xml
===================================================================
--- branches/3.2.x/samples/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</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.CR4/samples/progressBarDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/progressBarDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/progressBarDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/rich-message-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/rich-message-demo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/rich-message-demo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-art-datatable/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/richfaces-art-datatable/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/richfaces-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-demo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/richfaces-demo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.2.2.CR4/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/ejb/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/richfaces-ear-demo/ejb/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.2.2.CR4/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/richfaces-ear-demo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.2.2.CR4/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/3.2.x/samples/richfaces-ear-demo/webapp/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/richfaces-ear-demo/webapp/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.2.2.CR4/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/scrollableDataTableDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/scrollableDataTableDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.2.2.CR4/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/ear/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/seamEAR/ear/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.2.2.CR4/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/ejbs/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/seamEAR/ejbs/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.2.2.CR4/samples/seamEAR/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/seamEAR/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/primary-source/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/seamEAR/primary-source/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.2.2.CR4/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/projects/logging/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/seamEAR/projects/logging/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
</project>
Modified: tags/3.2.2.CR4/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/projects/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/seamEAR/projects/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.2.2.CR4/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/wars/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/seamEAR/wars/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.2.2.CR4/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/3.2.x/samples/seamEAR/wars/seamWebapp/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/seamEAR/wars/seamWebapp/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.2.2.CR4/samples/seamIntegration/pom.xml
===================================================================
--- branches/3.2.x/samples/seamIntegration/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/seamIntegration/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/separator-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/separator-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/separator-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/simpleTogglePanel-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/simpleTogglePanel-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/skins/pom.xml
===================================================================
--- branches/3.2.x/samples/skins/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/skins/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/sortingFilteringDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/sortingFilteringDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency-->
<dependency>
Modified: tags/3.2.2.CR4/samples/state-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/state-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/state-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/stdcomponents-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/stdcomponents-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/suggestionbox-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/suggestionbox-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/tabPanelDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/tabPanelDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/togglePanel-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/togglePanel-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/3.2.x/samples/tomahawkCompability/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/tomahawkCompability/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/toolBarDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/toolBarDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/toolBarDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/tooltip-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/tooltip-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/tooltip-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/tree-demo/pom.xml
===================================================================
--- branches/3.2.x/samples/tree-demo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/tree-demo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/treeModelDemo/pom.xml
===================================================================
--- branches/3.2.x/samples/treeModelDemo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/treeModelDemo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/3.2.x/samples/virtualEarth-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/samples/virtualEarth-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR4/sandbox/api/pom.xml
===================================================================
--- branches/3.2.x/sandbox/api/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/api/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.CR4/sandbox/impl/pom.xml
===================================================================
--- branches/3.2.x/sandbox/impl/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/impl/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.CR4/sandbox/pom.xml
===================================================================
--- branches/3.2.x/sandbox/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.CR4/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/dialog-window-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/samples/dialog-window-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR4/sandbox/samples/editor-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/editor-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/samples/editor-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR4/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/fileUploadPOC/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/samples/fileUploadPOC/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.CR4/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/panel2-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/samples/panel2-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR4/sandbox/samples/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/samples/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR4/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/rex-demo/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/samples/rex-demo/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
Modified: tags/3.2.2.CR4/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/3.2.x/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.CR4/sandbox/ui/create.bat
===================================================================
--- branches/3.2.x/sandbox/ui/create.bat 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/ui/create.bat 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4 -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.2.2.CR4/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/dialog-window/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/ui/dialog-window/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.2.2.CR4/sandbox/ui/editor/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/editor/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/ui/editor/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/panel2/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/ui/panel2/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/sandbox/ui/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/ui/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.2.2.CR4/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/rex-button/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/ui/rex-button/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/rex-messageBox/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/ui/rex-messageBox/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/rex-resizable/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/ui/rex-resizable/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/simpleTogglePanel2/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/ui/simpleTogglePanel2/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/sortableHeader/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/ui/sortableHeader/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/3.2.x/sandbox/ui/treeTable/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/sandbox/ui/treeTable/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/test-applications/facelets/pom.xml
===================================================================
--- branches/3.2.x/test-applications/facelets/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/test-applications/facelets/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR4/test-applications/jsp/pom.xml
===================================================================
--- branches/3.2.x/test-applications/jsp/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/test-applications/jsp/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR4/test-applications/pom.xml
===================================================================
--- branches/3.2.x/test-applications/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/test-applications/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.2.2-SNAPSHOT</rfVersion>
+ <rfVersion>3.2.2.CR4</rfVersion>
</properties>
<modules>
Modified: tags/3.2.2.CR4/test-applications/seam/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seam/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/test-applications/seam/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -5,7 +5,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications</groupId>
Modified: tags/3.2.2.CR4/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seleniumTest/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/test-applications/seleniumTest/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.CR4/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seleniumTest/richfaces/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/test-applications/seleniumTest/richfaces/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.2.2.CR4/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/3.2.x/test-applications/seleniumTest/samples/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/test-applications/seleniumTest/samples/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.2.2.CR4/ui/assembly/pom.xml
===================================================================
--- branches/3.2.x/ui/assembly/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/assembly/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.2.2.CR4/ui/beanValidator/pom.xml
===================================================================
--- branches/3.2.x/ui/beanValidator/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/beanValidator/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>beanValidator</artifactId>
+ <name>beanValidator</name>
+ <version>3.2.2.CR4</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.2.2.CR4</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.CR4</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.CR4/ui/calendar/pom.xml
===================================================================
--- branches/3.2.x/ui/calendar/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/calendar/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/columns/pom.xml
===================================================================
--- branches/3.2.x/ui/columns/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/columns/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.2.2.CR4/ui/combobox/pom.xml
===================================================================
--- branches/3.2.x/ui/combobox/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/combobox/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
Modified: tags/3.2.2.CR4/ui/componentControl/pom.xml
===================================================================
--- branches/3.2.x/ui/componentControl/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/componentControl/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/contextMenu/pom.xml
===================================================================
--- branches/3.2.x/ui/contextMenu/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/contextMenu/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/core/pom.xml
===================================================================
--- branches/3.2.x/ui/core/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/core/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/create.bat
===================================================================
--- branches/3.2.x/ui/create.bat 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/create.bat 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/3.2.x/ui/dataFilterSlider/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/dataFilterSlider/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/dataTable/pom.xml
===================================================================
--- branches/3.2.x/ui/dataTable/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/dataTable/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
-->
</dependencies>
Modified: tags/3.2.2.CR4/ui/datascroller/pom.xml
===================================================================
--- branches/3.2.x/ui/datascroller/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/datascroller/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/drag-drop/pom.xml
===================================================================
--- branches/3.2.x/ui/drag-drop/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/drag-drop/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
-->
</dependencies>
Modified: tags/3.2.2.CR4/ui/dropdown-menu/pom.xml
===================================================================
--- branches/3.2.x/ui/dropdown-menu/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/dropdown-menu/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/effect/pom.xml
===================================================================
--- branches/3.2.x/ui/effect/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/effect/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/extendedDataTable/pom.xml
===================================================================
--- branches/3.2.x/ui/extendedDataTable/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/extendedDataTable/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</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.CR4</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.CR4</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.CR4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>dataTable</artifactId>
+ <version>3.2.2.CR4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>menu-components</artifactId>
+ <version>3.2.2.CR4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>contextMenu</artifactId>
+ <version>3.2.2.CR4</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>jQuery</artifactId>
+ <version>3.2.2.CR4</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>componentControl</artifactId>
+ <version>3.2.2.CR4</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>scrollableDataTable</artifactId>
+ <version>3.2.2.CR4</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/fileUpload/pom.xml
===================================================================
--- branches/3.2.x/ui/fileUpload/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/fileUpload/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/functions/pom.xml
===================================================================
--- branches/3.2.x/ui/functions/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/functions/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/gmap/pom.xml
===================================================================
--- branches/3.2.x/ui/gmap/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/gmap/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/hotKey/pom.xml
===================================================================
--- branches/3.2.x/ui/hotKey/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/hotKey/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</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.CR4</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.CR4</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/inplaceInput/pom.xml
===================================================================
--- branches/3.2.x/ui/inplaceInput/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/inplaceInput/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/inplaceSelect/pom.xml
===================================================================
--- branches/3.2.x/ui/inplaceSelect/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/inplaceSelect/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
Modified: tags/3.2.2.CR4/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/3.2.x/ui/inputnumber-slider/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/inputnumber-slider/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/3.2.x/ui/inputnumber-spinner/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/inputnumber-spinner/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.2.2.CR4/ui/insert/pom.xml
===================================================================
--- branches/3.2.x/ui/insert/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/insert/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/jQuery/pom.xml
===================================================================
--- branches/3.2.x/ui/jQuery/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/jQuery/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/listShuttle/pom.xml
===================================================================
--- branches/3.2.x/ui/listShuttle/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/listShuttle/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.2.2.CR4/ui/menu-components/pom.xml
===================================================================
--- branches/3.2.x/ui/menu-components/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/menu-components/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/message/pom.xml
===================================================================
--- branches/3.2.x/ui/message/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/message/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/modal-panel/pom.xml
===================================================================
--- branches/3.2.x/ui/modal-panel/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/modal-panel/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/orderingList/pom.xml
===================================================================
--- branches/3.2.x/ui/orderingList/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/orderingList/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/paint2D/pom.xml
===================================================================
--- branches/3.2.x/ui/paint2D/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/paint2D/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/panel/pom.xml
===================================================================
--- branches/3.2.x/ui/panel/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/panel/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/panelbar/pom.xml
===================================================================
--- branches/3.2.x/ui/panelbar/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/panelbar/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/panelmenu/pom.xml
===================================================================
--- branches/3.2.x/ui/panelmenu/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/panelmenu/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/pickList/pom.xml
===================================================================
--- branches/3.2.x/ui/pickList/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/pickList/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
Modified: tags/3.2.2.CR4/ui/pom.xml
===================================================================
--- branches/3.2.x/ui/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.2.2.CR4/ui/progressBAR/pom.xml
===================================================================
--- branches/3.2.x/ui/progressBAR/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/progressBAR/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/3.2.x/ui/scrollableDataTable/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/scrollableDataTable/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/separator/pom.xml
===================================================================
--- branches/3.2.x/ui/separator/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/separator/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.2.2.CR4/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/3.2.x/ui/simpleTogglePanel/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/simpleTogglePanel/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/spacer/pom.xml
===================================================================
--- branches/3.2.x/ui/spacer/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/spacer/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/state/pom.xml
===================================================================
--- branches/3.2.x/ui/state/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/state/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -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.CR4</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.CR4</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.CR4</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/suggestionbox/pom.xml
===================================================================
--- branches/3.2.x/ui/suggestionbox/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/suggestionbox/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/tabPanel/pom.xml
===================================================================
--- branches/3.2.x/ui/tabPanel/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/tabPanel/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/togglePanel/pom.xml
===================================================================
--- branches/3.2.x/ui/togglePanel/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/togglePanel/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/toolBar/pom.xml
===================================================================
--- branches/3.2.x/ui/toolBar/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/toolBar/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/tooltip/pom.xml
===================================================================
--- branches/3.2.x/ui/tooltip/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/tooltip/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/tree/pom.xml
===================================================================
--- branches/3.2.x/ui/tree/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/tree/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/treeModel/pom.xml
===================================================================
--- branches/3.2.x/ui/treeModel/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/treeModel/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</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.CR4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR4/ui/treeTable/pom.xml
===================================================================
--- branches/3.2.x/ui/treeTable/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/treeTable/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR4/ui/virtualEarth/pom.xml
===================================================================
--- branches/3.2.x/ui/virtualEarth/pom.xml 2008-09-07 21:13:25 UTC (rev 10339)
+++ tags/3.2.2.CR4/ui/virtualEarth/pom.xml 2008-09-07 23:04:20 UTC (rev 10340)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR4</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.CR4</version>
<executions>
<execution>
<phase>generate-sources</phase>
16 years, 3 months