JBoss Rich Faces SVN: r21553 - in trunk/core/impl/src: test/resources/javascript and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2011-02-08 18:23:53 -0500 (Tue, 08 Feb 2011)
New Revision: 21553
Modified:
trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js
trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js
trunk/core/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js
Log:
https://issues.jboss.org/browse/RF-10365
Modified: trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js
===================================================================
--- trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js 2011-02-08 22:55:55 UTC (rev 21552)
+++ trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js 2011-02-08 23:23:53 UTC (rev 21553)
@@ -9,18 +9,22 @@
* @class
* @memberOf RichFaces
* @static
- * @name ajax
+ * @name ajaxContainer
* */
- richfaces.ajax = richfaces.ajax || {};
+ richfaces.ajaxContainer = richfaces.ajaxContainer || {};
+ if (richfaces.ajaxContainer.jsfRequest) {
+ return;
+ }
+
/**
* JSF 2.0 original method that sends an asynchronous ajax request to the server
* see jsf.ajax.request method for parameter's description
* @function
- * @name RichFaces.ajax.jsfRequest
+ * @name RichFaces.ajaxContainer.jsfRequest
*
* */
- richfaces.ajax.jsfRequest = jsf.ajax.request;
+ richfaces.ajaxContainer.jsfRequest = jsf.ajax.request;
/**
* RichFaces wrapper function of JSF 2.0 original method jsf.ajax.request
@@ -35,9 +39,9 @@
richfaces.queue.push(source, event, options);
};
- richfaces.ajax.jsfResponse = jsf.ajax.response;
+ richfaces.ajaxContainer.jsfResponse = jsf.ajax.response;
- richfaces.ajax.isIgnoreResponse = function() {
+ richfaces.ajaxContainer.isIgnoreResponse = function() {
return richfaces.queue.isIgnoreResponse();
};
@@ -257,7 +261,7 @@
log.debug("richfaces.queue: will submit request NOW");
var o = lastRequestedEntry.options;
o["AJAX:EVENTS_COUNT"] = lastRequestedEntry.eventsCount;
- richfaces.ajax.jsfRequest(lastRequestedEntry.source, lastRequestedEntry.event, o);
+ richfaces.ajaxContainer.jsfRequest(lastRequestedEntry.source, lastRequestedEntry.event, o);
// call event handlers
if (o.queueonsubmit) {
@@ -285,7 +289,7 @@
};
var callEventHandler = function (handlerName, entry) {
- handler = entry.queueOptions[handlerName];
+ var handler = entry.queueOptions[handlerName];
if (handler) {
// what is a context should be??
handler.call(null, entry);
@@ -397,7 +401,7 @@
lastRequestedEntry = null;
submitFirstEntry();
} else {
- richfaces.ajax.jsfResponse(request, context);
+ richfaces.ajaxContainer.jsfResponse(request, context);
}
},
Modified: trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js
===================================================================
--- trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js 2011-02-08 22:55:55 UTC (rev 21552)
+++ trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js 2011-02-08 23:23:53 UTC (rev 21553)
@@ -408,7 +408,7 @@
ignoreSuccess = true;
} else if (ignoreSuccess) {
return;
- } else if (status == 'complete' && richfaces.ajax.isIgnoreResponse && richfaces.ajax.isIgnoreResponse()) {
+ } else if (status == 'complete' && richfaces.ajaxContainer.isIgnoreResponse && richfaces.ajaxContainer.isIgnoreResponse()) {
return;
}
Modified: trunk/core/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js
===================================================================
--- trunk/core/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js 2011-02-08 22:55:55 UTC (rev 21552)
+++ trunk/core/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js 2011-02-08 23:23:53 UTC (rev 21553)
@@ -9,7 +9,7 @@
// reference to original jsf.ajax.request function
test("Reference to origional jsf.ajax.request function", function() {
expect(1);
- equals(RichFaces.ajax.jsfRequest, jsf_ajax_request);
+ equals(RichFaces.ajaxContainer.jsfRequest, jsf_ajax_request);
});
// default queue id
@@ -66,7 +66,7 @@
test("jsf.ajax.request - parameters", function() {
expect(5);
- RichFaces.ajax.jsfRequest = function (source, event, options) {
+ RichFaces.ajaxContainer.jsfRequest = function (source, event, options) {
for (var i=0; i<jsf.ajax.eventHandlers.length;i++) {
jsf.ajax.eventHandlers[i]({type:"event", status:"success"});
}
@@ -91,7 +91,7 @@
test("jsf.ajax.request - queueId", function() {
expect(3);
- RichFaces.ajax.jsfRequest = function (source, event, options) {
+ RichFaces.ajaxContainer.jsfRequest = function (source, event, options) {
for (var i=0; i<jsf.ajax.eventHandlers.length;i++) {
jsf.ajax.eventHandlers[i]({type:"event", status:"success"});
}
@@ -116,7 +116,7 @@
test("jsf.ajax.request - 2 x queueId", function() {
expect(3);
- RichFaces.ajax.jsfRequest = function (source, event, options) {
+ RichFaces.ajaxContainer.jsfRequest = function (source, event, options) {
for (var i=0; i<jsf.ajax.eventHandlers.length;i++) {
jsf.ajax.eventHandlers[i]({type:"event", status:"success"});
}
@@ -158,7 +158,7 @@
RichFaces.queue.clear();
}
}
- RichFaces.ajax.jsfRequest = function (source, event, options) {
+ RichFaces.ajaxContainer.jsfRequest = function (source, event, options) {
for (var i=0; i<jsf.ajax.eventHandlers.length;i++) {
jsf.ajax.eventHandlers[i]({type:"event", status:"success"});
}
@@ -202,7 +202,7 @@
RichFaces.queue.clear();
}
}
- RichFaces.ajax.jsfRequest = function (source, event, options) {
+ RichFaces.ajaxContainer.jsfRequest = function (source, event, options) {
for (var i=0; i<jsf.ajax.eventHandlers.length;i++) {
jsf.ajax.eventHandlers[i]({type:"event", status:"success"});
}
@@ -256,7 +256,7 @@
RichFaces.queue.clear();
}
}
- RichFaces.ajax.jsfRequest = function (source, event, options) {
+ RichFaces.ajaxContainer.jsfRequest = function (source, event, options) {
for (var i=0; i<jsf.ajax.eventHandlers.length;i++) {
jsf.ajax.eventHandlers[i]({type:"event", status:"success"});
}
15 years, 2 months
JBoss Rich Faces SVN: r21552 - trunk/core/impl/src/main/java/org/richfaces/context.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2011-02-08 17:55:55 -0500 (Tue, 08 Feb 2011)
New Revision: 21552
Modified:
trunk/core/impl/src/main/java/org/richfaces/context/ExtendedPartialViewContextImpl.java
Log:
Added Exception object to data logged in ExtendedPartialViewContextImpl
Modified: trunk/core/impl/src/main/java/org/richfaces/context/ExtendedPartialViewContextImpl.java
===================================================================
--- trunk/core/impl/src/main/java/org/richfaces/context/ExtendedPartialViewContextImpl.java 2011-02-08 19:39:57 UTC (rev 21551)
+++ trunk/core/impl/src/main/java/org/richfaces/context/ExtendedPartialViewContextImpl.java 2011-02-08 22:55:55 UTC (rev 21552)
@@ -488,11 +488,8 @@
private void logException(Exception e) {
if (LOG.isErrorEnabled()) {
- LOG.error(e.getMessage());
+ LOG.error(e.getMessage(), e);
}
- if (LOG.isDebugEnabled()) {
- LOG.debug(e.getMessage(), e);
- }
}
/* (non-Javadoc)
15 years, 2 months
JBoss Rich Faces SVN: r21551 - in branches/4.0.0.M6/ui/output/ui/src/main/java/org/richfaces: renderkit/html and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2011-02-08 14:39:57 -0500 (Tue, 08 Feb 2011)
New Revision: 21551
Modified:
branches/4.0.0.M6/ui/output/ui/src/main/java/org/richfaces/component/AbstractAccordionItem.java
branches/4.0.0.M6/ui/output/ui/src/main/java/org/richfaces/renderkit/html/AccordionItemHeaderRenderer.java
Log:
RF-10440: "inactiveRightIcon" is renamed to "rightInactiveIcon"
Modified: branches/4.0.0.M6/ui/output/ui/src/main/java/org/richfaces/component/AbstractAccordionItem.java
===================================================================
--- branches/4.0.0.M6/ui/output/ui/src/main/java/org/richfaces/component/AbstractAccordionItem.java 2011-02-08 18:58:36 UTC (rev 21550)
+++ branches/4.0.0.M6/ui/output/ui/src/main/java/org/richfaces/component/AbstractAccordionItem.java 2011-02-08 19:39:57 UTC (rev 21551)
@@ -129,11 +129,11 @@
}
@Attribute(generate = false)
- public String getInactiveRightIcon() {
+ public String getRightInactiveIcon() {
return (String) getStateHelper().eval(Properties.rightInactiveIcon, getAccordion().getItemInactiveRightIcon());
}
- public void setInactiveRightIcon(String inactiveRightIcon) {
+ public void setRightInactiveIcon(String inactiveRightIcon) {
getStateHelper().put(Properties.rightInactiveIcon, inactiveRightIcon);
}
Modified: branches/4.0.0.M6/ui/output/ui/src/main/java/org/richfaces/renderkit/html/AccordionItemHeaderRenderer.java
===================================================================
--- branches/4.0.0.M6/ui/output/ui/src/main/java/org/richfaces/renderkit/html/AccordionItemHeaderRenderer.java 2011-02-08 18:58:36 UTC (rev 21550)
+++ branches/4.0.0.M6/ui/output/ui/src/main/java/org/richfaces/renderkit/html/AccordionItemHeaderRenderer.java 2011-02-08 19:39:57 UTC (rev 21551)
@@ -27,7 +27,7 @@
}
protected void encodeHeaderRightIcon(ResponseWriter writer, FacesContext context, AbstractAccordionItem panel) throws IOException {
- String iconInactive = panel.isDisabled() ? panel.getRightDisabledIcon() : panel.getInactiveRightIcon();
+ String iconInactive = panel.isDisabled() ? panel.getRightDisabledIcon() : panel.getRightInactiveIcon();
String iconActive = panel.isDisabled() ? panel.getRightDisabledIcon() : panel.getRightActiveIcon();
//TODO nick - should this be "-ico-exp"? also why expanded icon state is connected with right icon alignment?
15 years, 2 months
JBoss Rich Faces SVN: r21550 - in trunk/ui/output/ui/src/main/java/org/richfaces: renderkit/html and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2011-02-08 13:58:36 -0500 (Tue, 08 Feb 2011)
New Revision: 21550
Modified:
trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractAccordionItem.java
trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/AccordionItemHeaderRenderer.java
Log:
RF-10440: "inactiveRightIcon" is renamed to "rightInactiveIcon"
Modified: trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractAccordionItem.java
===================================================================
--- trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractAccordionItem.java 2011-02-08 18:44:39 UTC (rev 21549)
+++ trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractAccordionItem.java 2011-02-08 18:58:36 UTC (rev 21550)
@@ -129,11 +129,11 @@
}
@Attribute(generate = false)
- public String getInactiveRightIcon() {
+ public String getRightInactiveIcon() {
return (String) getStateHelper().eval(Properties.rightInactiveIcon, getAccordion().getItemInactiveRightIcon());
}
- public void setInactiveRightIcon(String inactiveRightIcon) {
+ public void setRightInactiveIcon(String inactiveRightIcon) {
getStateHelper().put(Properties.rightInactiveIcon, inactiveRightIcon);
}
Modified: trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/AccordionItemHeaderRenderer.java
===================================================================
--- trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/AccordionItemHeaderRenderer.java 2011-02-08 18:44:39 UTC (rev 21549)
+++ trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/AccordionItemHeaderRenderer.java 2011-02-08 18:58:36 UTC (rev 21550)
@@ -27,7 +27,7 @@
}
protected void encodeHeaderRightIcon(ResponseWriter writer, FacesContext context, AbstractAccordionItem panel) throws IOException {
- String iconInactive = panel.isDisabled() ? panel.getRightDisabledIcon() : panel.getInactiveRightIcon();
+ String iconInactive = panel.isDisabled() ? panel.getRightDisabledIcon() : panel.getRightInactiveIcon();
String iconActive = panel.isDisabled() ? panel.getRightDisabledIcon() : panel.getRightActiveIcon();
//TODO nick - should this be "-ico-exp"? also why expanded icon state is connected with right icon alignment?
15 years, 2 months
JBoss Rich Faces SVN: r21549 - in branches/enterprise/3.3.X: cdk and 214 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2011-02-08 13:44:39 -0500 (Tue, 08 Feb 2011)
New Revision: 21549
Modified:
branches/enterprise/3.3.X/cdk/generator/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml
branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml
branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml
branches/enterprise/3.3.X/cdk/pom.xml
branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml
branches/enterprise/3.3.X/docs/cdkguide/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/docs/common-resources/pom.xml
branches/enterprise/3.3.X/docs/faq/en/pom.xml
branches/enterprise/3.3.X/docs/faq/pom.xml
branches/enterprise/3.3.X/docs/highlight/pom.xml
branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml
branches/enterprise/3.3.X/docs/migrationguide/pom.xml
branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml
branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml
branches/enterprise/3.3.X/docs/pom.xml
branches/enterprise/3.3.X/docs/userguide/en/pom.xml
branches/enterprise/3.3.X/docs/userguide/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml
branches/enterprise/3.3.X/extensions/gwt/pom.xml
branches/enterprise/3.3.X/extensions/pom.xml
branches/enterprise/3.3.X/extensions/seam/pom.xml
branches/enterprise/3.3.X/extensions/trinidad/pom.xml
branches/enterprise/3.3.X/framework/api/pom.xml
branches/enterprise/3.3.X/framework/impl/pom.xml
branches/enterprise/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java
branches/enterprise/3.3.X/framework/jsf-test/pom.xml
branches/enterprise/3.3.X/framework/pom.xml
branches/enterprise/3.3.X/framework/test/pom.xml
branches/enterprise/3.3.X/pom.xml
branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml
branches/enterprise/3.3.X/samples/calendar-sample/pom.xml
branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml
branches/enterprise/3.3.X/samples/columnsDemo/pom.xml
branches/enterprise/3.3.X/samples/combobox-sample/pom.xml
branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml
branches/enterprise/3.3.X/samples/createProject.sh
branches/enterprise/3.3.X/samples/darkX/pom.xml
branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml
branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml
branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml
branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml
branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml
branches/enterprise/3.3.X/samples/editor-sample/pom.xml
branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml
branches/enterprise/3.3.X/samples/effect-sample/pom.xml
branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml
branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml
branches/enterprise/3.3.X/samples/functions-demo/pom.xml
branches/enterprise/3.3.X/samples/glassX/pom.xml
branches/enterprise/3.3.X/samples/gmap-sample/pom.xml
branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml
branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml
branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml
branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml
branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml
branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml
branches/enterprise/3.3.X/samples/jira-data/pom.xml
branches/enterprise/3.3.X/samples/laguna/pom.xml
branches/enterprise/3.3.X/samples/layout-sample/pom.xml
branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml
branches/enterprise/3.3.X/samples/local-value-demo/pom.xml
branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml
branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml
branches/enterprise/3.3.X/samples/panel-sample/pom.xml
branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml
branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml
branches/enterprise/3.3.X/samples/pickList-sample/pom.xml
branches/enterprise/3.3.X/samples/pom.xml
branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml
branches/enterprise/3.3.X/samples/queue-sample/pom.xml
branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml
branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml
branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml
branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml
branches/enterprise/3.3.X/samples/seamIntegration/pom.xml
branches/enterprise/3.3.X/samples/separator-sample/pom.xml
branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml
branches/enterprise/3.3.X/samples/skins/pom.xml
branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml
branches/enterprise/3.3.X/samples/state-sample/pom.xml
branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml
branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml
branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml
branches/enterprise/3.3.X/samples/themes/pom.xml
branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml
branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml
branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml
branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml
branches/enterprise/3.3.X/samples/tree-demo/pom.xml
branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml
branches/enterprise/3.3.X/samples/violetRays/pom.xml
branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml
branches/enterprise/3.3.X/sandbox/api/pom.xml
branches/enterprise/3.3.X/sandbox/cdk/pom.xml
branches/enterprise/3.3.X/sandbox/impl/pom.xml
branches/enterprise/3.3.X/sandbox/pom.xml
branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml
branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/pom.xml
branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml
branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml
branches/enterprise/3.3.X/sandbox/ui/create.bat
branches/enterprise/3.3.X/sandbox/ui/create.sh
branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml
branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml
branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml
branches/enterprise/3.3.X/sandbox/ui/pom.xml
branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml
branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml
branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml
branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml
branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml
branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml
branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml
branches/enterprise/3.3.X/test-applications/automator/pom.xml
branches/enterprise/3.3.X/test-applications/facelets/pom.xml
branches/enterprise/3.3.X/test-applications/jsp/pom.xml
branches/enterprise/3.3.X/test-applications/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml
branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml
branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml
branches/enterprise/3.3.X/test-applications/seamApp/pom.xml
branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml
branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml
branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml
branches/enterprise/3.3.X/ui/assembly/pom.xml
branches/enterprise/3.3.X/ui/beanValidator/pom.xml
branches/enterprise/3.3.X/ui/calendar/pom.xml
branches/enterprise/3.3.X/ui/colorPicker/pom.xml
branches/enterprise/3.3.X/ui/columns/pom.xml
branches/enterprise/3.3.X/ui/combobox/pom.xml
branches/enterprise/3.3.X/ui/componentControl/pom.xml
branches/enterprise/3.3.X/ui/contextMenu/pom.xml
branches/enterprise/3.3.X/ui/core/pom.xml
branches/enterprise/3.3.X/ui/create.bat
branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml
branches/enterprise/3.3.X/ui/dataTable/pom.xml
branches/enterprise/3.3.X/ui/datascroller/pom.xml
branches/enterprise/3.3.X/ui/drag-drop/pom.xml
branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml
branches/enterprise/3.3.X/ui/editor/pom.xml
branches/enterprise/3.3.X/ui/effect/pom.xml
branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml
branches/enterprise/3.3.X/ui/fileUpload/pom.xml
branches/enterprise/3.3.X/ui/functions/pom.xml
branches/enterprise/3.3.X/ui/gmap/pom.xml
branches/enterprise/3.3.X/ui/hotKey/pom.xml
branches/enterprise/3.3.X/ui/inplaceInput/pom.xml
branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml
branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml
branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml
branches/enterprise/3.3.X/ui/insert/pom.xml
branches/enterprise/3.3.X/ui/jQuery/pom.xml
branches/enterprise/3.3.X/ui/layout/pom.xml
branches/enterprise/3.3.X/ui/listShuttle/pom.xml
branches/enterprise/3.3.X/ui/menu-components/pom.xml
branches/enterprise/3.3.X/ui/message/pom.xml
branches/enterprise/3.3.X/ui/modal-panel/pom.xml
branches/enterprise/3.3.X/ui/orderingList/pom.xml
branches/enterprise/3.3.X/ui/paint2D/pom.xml
branches/enterprise/3.3.X/ui/panel/pom.xml
branches/enterprise/3.3.X/ui/panelbar/pom.xml
branches/enterprise/3.3.X/ui/panelmenu/pom.xml
branches/enterprise/3.3.X/ui/pickList/pom.xml
branches/enterprise/3.3.X/ui/pom.xml
branches/enterprise/3.3.X/ui/progressBAR/pom.xml
branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml
branches/enterprise/3.3.X/ui/separator/pom.xml
branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml
branches/enterprise/3.3.X/ui/spacer/pom.xml
branches/enterprise/3.3.X/ui/state/pom.xml
branches/enterprise/3.3.X/ui/suggestionbox/pom.xml
branches/enterprise/3.3.X/ui/tabPanel/pom.xml
branches/enterprise/3.3.X/ui/togglePanel/pom.xml
branches/enterprise/3.3.X/ui/toolBar/pom.xml
branches/enterprise/3.3.X/ui/tooltip/pom.xml
branches/enterprise/3.3.X/ui/tree/pom.xml
branches/enterprise/3.3.X/ui/treeModel/pom.xml
branches/enterprise/3.3.X/ui/treeTable/pom.xml
branches/enterprise/3.3.X/ui/virtualEarth/pom.xml
Log:
RFPL-1071 preparing trunk for SP4-SNAPSHOT work
Modified: branches/enterprise/3.3.X/cdk/generator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/generator/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/generator/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.1.SP3</richfacesVersion>
+ <richfacesVersion>3.3.1.SP4-SNAPSHOT</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<!-- Required for JSF -->
Modified: branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
Modified: branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>maven-resource-dependency-plugin</name>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/cdk/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/cdkguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/cdkguide/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/common-resources/en/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>en</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Documentation common resources (en)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<extensions>
<extension>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/common-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/common-resources/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: branches/enterprise/3.3.X/docs/faq/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/en/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/faq/en/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/faq/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/faq/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/highlight/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/highlight/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/highlight/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/migrationguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/migrationguide/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: branches/enterprise/3.3.X/docs/userguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/userguide/en/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/userguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/docs/userguide/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/examples/photoalbum/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<distributionManagement>
<downloadUrl>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/extensions/gwt/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/gwt/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/extensions/gwt/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: branches/enterprise/3.3.X/extensions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/extensions/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: branches/enterprise/3.3.X/extensions/seam/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/seam/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/extensions/seam/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: branches/enterprise/3.3.X/extensions/trinidad/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/trinidad/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/extensions/trinidad/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: branches/enterprise/3.3.X/framework/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/api/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/framework/api/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: branches/enterprise/3.3.X/framework/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/impl/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/framework/impl/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<resources>
<resource>
@@ -161,7 +161,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/enterprise/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2011-02-08 18:44:39 UTC (rev 21549)
@@ -38,7 +38,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "1.SP3" ;
+ public static final String REVISION = "1.SP4-SNAPSHOT" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: branches/enterprise/3.3.X/framework/jsf-test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/jsf-test/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/framework/jsf-test/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/framework/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/framework/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: branches/enterprise/3.3.X/framework/test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/test/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/framework/test/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/pom.xml
===================================================================
--- branches/enterprise/3.3.X/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<dependencies />
<build>
Modified: branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -52,7 +52,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.1.SP3</version> </dependency>
+ <version>3.3.1.SP4-SNAPSHOT</version> </dependency>
-->
<dependency>
<groupId>org.hibernate</groupId>
@@ -75,7 +75,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: branches/enterprise/3.3.X/samples/calendar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/calendar-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/calendar-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -35,7 +35,7 @@
<groupId>org.richfaces.framework
</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples
@@ -46,17 +46,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/samples/columnsDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/columnsDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/columnsDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/combobox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/combobox-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/combobox-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/createProject.sh
===================================================================
--- branches/enterprise/3.3.X/samples/createProject.sh 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/createProject.sh 2011-02-08 18:44:39 UTC (rev 21549)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.1.SP3 -Dversion=3.3.1.SP3 -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.1.SP4-SNAPSHOT -Dversion=3.3.1.SP4-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: branches/enterprise/3.3.X/samples/darkX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/darkX/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/darkX/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/editor-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editor-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/editor-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/samples/effect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/effect-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/effect-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/functions-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/functions-demo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/functions-demo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/glassX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/glassX/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/glassX/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/samples/gmap-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/gmap-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/gmap-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/jira-data/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jira-data/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/jira-data/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/laguna/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/laguna/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/laguna/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: branches/enterprise/3.3.X/samples/layout-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/layout-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/layout-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>layout-sample</artifactId>
<packaging>war</packaging>
<name>layout Maven Webapp</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,22 +34,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/local-value-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/local-value-demo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/local-value-demo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/panel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panel-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/panel-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/pickList-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pickList-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/pickList-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/queue-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/queue-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/queue-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -207,22 +207,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -312,12 +312,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/seamEAR/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
</project>
Modified: branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modules>
<module>logging</module>
Modified: branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamIntegration/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamIntegration/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/seamIntegration/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/separator-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/separator-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/separator-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/skins/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/skins/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/skins/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency-->
<dependency>
Modified: branches/enterprise/3.3.X/samples/state-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/state-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/state-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/themes/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/themes/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/themes/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tree-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tree-demo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/tree-demo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/violetRays/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/violetRays/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/violetRays/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/sandbox/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/api/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/api/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/cdk/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/cdk/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: branches/enterprise/3.3.X/sandbox/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/impl/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/impl/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk.sandbox</groupId>
<artifactId>maven-rd-plugin-sample</artifactId>
<packaging>war</packaging>
<name>maven-rd-plugin-sample Maven Webapp</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<configuration>
<scriptFilePath>scripts/custom-dependencies.js</scriptFilePath>
<styleFilePath>css/custom-dependencies.xcss</styleFilePath>
@@ -59,7 +59,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/samples/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
Modified: branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/ui/create.bat
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/create.bat 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/create.bat 2011-02-08 18:44:39 UTC (rev 21549)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP3-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP4-SNAPSHOT-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/create.sh
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/create.sh 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/create.sh 2011-02-08 18:44:39 UTC (rev 21549)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP3-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP4-SNAPSHOT-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
Modified: branches/enterprise/3.3.X/test-applications/automator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/automator/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/automator/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/test-applications/facelets/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/facelets/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/facelets/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/test-applications/jsp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/jsp/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/jsp/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/test-applications/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<relativePath>../samples</relativePath>
</parent>
@@ -20,11 +20,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.1.SP3</rfVersion>
+ <rfVersion>3.3.1.SP4-SNAPSHOT</rfVersion>
</properties>
<modules>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Regresion Area:Seam Application</name>
<repositories>
@@ -22,7 +22,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.1.SP3</richversion>
+ <richversion>3.3.1.SP4-SNAPSHOT</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -8,7 +8,7 @@
<name>richfaces-docs</name>
<properties>
<projectName>richfaces-docs</projectName>
- <richfacesVersion>3.3.1.SP3</richfacesVersion>
+ <richfacesVersion>3.3.1.SP4-SNAPSHOT</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<droolsVersion>4.0.0</droolsVersion>
Modified: branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -47,7 +47,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
Modified: branches/enterprise/3.3.X/test-applications/seamApp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seamApp/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/seamApp/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.1.SP3</rfVersion>
+ <rfVersion>3.3.1.SP4-SNAPSHOT</rfVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.2.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.2.GA/jboss-4.2.2.GA/server/default/</jbossDeployDir>
Modified: branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -197,7 +197,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: branches/enterprise/3.3.X/ui/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/assembly/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/assembly/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: branches/enterprise/3.3.X/ui/beanValidator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/beanValidator/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/beanValidator/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -3,19 +3,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: branches/enterprise/3.3.X/ui/calendar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/calendar/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/calendar/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/colorPicker/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/colorPicker/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/colorPicker/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -12,7 +12,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/columns/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/columns/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/columns/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/enterprise/3.3.X/ui/combobox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/combobox/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/combobox/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/ui/componentControl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/componentControl/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/componentControl/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/contextMenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/contextMenu/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/contextMenu/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/core/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/core/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/core/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/create.bat
===================================================================
--- branches/enterprise/3.3.X/ui/create.bat 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/create.bat 2011-02-08 18:44:39 UTC (rev 21549)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP3 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP4-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/dataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataTable/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/dataTable/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
-->
</dependencies>
Modified: branches/enterprise/3.3.X/ui/datascroller/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/datascroller/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/datascroller/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/drag-drop/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/drag-drop/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/drag-drop/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
-->
</dependencies>
Modified: branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/editor/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/editor/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/editor/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -62,7 +62,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Modified: branches/enterprise/3.3.X/ui/effect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/effect/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/effect/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,45 +64,45 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/fileUpload/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/fileUpload/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/fileUpload/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/functions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/functions/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/functions/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/gmap/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/gmap/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/gmap/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/hotKey/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/hotKey/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/hotKey/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/inplaceInput/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceInput/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/inplaceInput/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/enterprise/3.3.X/ui/insert/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/insert/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/insert/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/jQuery/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/jQuery/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/jQuery/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/layout/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/layout/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/layout/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/ui/listShuttle/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/listShuttle/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/listShuttle/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/enterprise/3.3.X/ui/menu-components/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/menu-components/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/menu-components/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/message/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/message/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/message/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/modal-panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/modal-panel/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/modal-panel/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/orderingList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/orderingList/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/orderingList/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/paint2D/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/paint2D/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/paint2D/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panel/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/panel/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/panelbar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelbar/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/panelbar/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/panelmenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelmenu/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/panelmenu/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/pickList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pickList/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/pickList/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -138,12 +138,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: branches/enterprise/3.3.X/ui/progressBAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/progressBAR/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/progressBAR/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/separator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/separator/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/separator/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/spacer/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/spacer/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/spacer/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/state/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/state/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/state/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/suggestionbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/suggestionbox/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/suggestionbox/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/tabPanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tabPanel/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/tabPanel/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/togglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/togglePanel/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/togglePanel/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/toolBar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/toolBar/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/toolBar/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/tooltip/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tooltip/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/tooltip/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/tree/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tree/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/tree/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/treeModel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeModel/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/treeModel/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeTable/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/treeTable/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/virtualEarth/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/virtualEarth/pom.xml 2011-02-08 18:38:58 UTC (rev 21548)
+++ branches/enterprise/3.3.X/ui/virtualEarth/pom.xml 2011-02-08 18:44:39 UTC (rev 21549)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3</version>
+ <version>3.3.1.SP4-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
15 years, 2 months
JBoss Rich Faces SVN: r21548 - in trunk/ui/output/ui/src/main/java/org/richfaces: renderkit/html and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2011-02-08 13:38:58 -0500 (Tue, 08 Feb 2011)
New Revision: 21548
Modified:
trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractTabPanel.java
trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/TogglePanelRenderer.java
Log:
RF-10443 Tab panel: attribute execute ignored
RF-10441 Tab panel: attribute render ignored
Modified: trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractTabPanel.java
===================================================================
--- trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractTabPanel.java 2011-02-08 18:28:16 UTC (rev 21547)
+++ trunk/ui/output/ui/src/main/java/org/richfaces/component/AbstractTabPanel.java 2011-02-08 18:38:58 UTC (rev 21548)
@@ -92,11 +92,6 @@
}
@Attribute(hidden = true)
- public boolean isCycledSwitching() {
- throw new IllegalStateException("this method shouldn't be used");
- }
-
- @Attribute(hidden = true)
public Object getData() {
throw new IllegalStateException("this method shouldn't be used");
}
Modified: trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/TogglePanelRenderer.java
===================================================================
--- trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/TogglePanelRenderer.java 2011-02-08 18:28:16 UTC (rev 21547)
+++ trunk/ui/output/ui/src/main/java/org/richfaces/renderkit/html/TogglePanelRenderer.java 2011-02-08 18:38:58 UTC (rev 21548)
@@ -60,9 +60,10 @@
public static final String VALUE_POSTFIX = "-value";
+ protected static final String ITEM_CHANGE = "itemchange";
+ protected static final String BEFORE_ITEM_CHANGE = "beforeitemchange";
+
private static final String ON = "on";
- private static final String ITEM_CHANGE = "itemchange";
- private static final String BEFORE_ITEM_CHANGE = "beforeitemchange";
@Override
protected void doDecode(FacesContext context, UIComponent component) {
15 years, 2 months
JBoss Rich Faces SVN: r21547 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2011-02-08 13:28:16 -0500 (Tue, 08 Feb 2011)
New Revision: 21547
Added:
tags/3.3.1.SP3/
Log:
RFPL-1071 tag creation for 3.3.1.SP3
Copied: tags/3.3.1.SP3 (from rev 21546, branches/enterprise/3.3.X)
15 years, 2 months
JBoss Rich Faces SVN: r21546 - in branches/enterprise/3.3.X: cdk and 214 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2011-02-08 13:26:29 -0500 (Tue, 08 Feb 2011)
New Revision: 21546
Modified:
branches/enterprise/3.3.X/cdk/generator/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml
branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml
branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml
branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml
branches/enterprise/3.3.X/cdk/pom.xml
branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml
branches/enterprise/3.3.X/docs/cdkguide/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
branches/enterprise/3.3.X/docs/common-resources/pom.xml
branches/enterprise/3.3.X/docs/faq/en/pom.xml
branches/enterprise/3.3.X/docs/faq/pom.xml
branches/enterprise/3.3.X/docs/highlight/pom.xml
branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml
branches/enterprise/3.3.X/docs/migrationguide/pom.xml
branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml
branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml
branches/enterprise/3.3.X/docs/pom.xml
branches/enterprise/3.3.X/docs/userguide/en/pom.xml
branches/enterprise/3.3.X/docs/userguide/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml
branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml
branches/enterprise/3.3.X/extensions/gwt/pom.xml
branches/enterprise/3.3.X/extensions/pom.xml
branches/enterprise/3.3.X/extensions/seam/pom.xml
branches/enterprise/3.3.X/extensions/trinidad/pom.xml
branches/enterprise/3.3.X/framework/api/pom.xml
branches/enterprise/3.3.X/framework/impl/pom.xml
branches/enterprise/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java
branches/enterprise/3.3.X/framework/jsf-test/pom.xml
branches/enterprise/3.3.X/framework/pom.xml
branches/enterprise/3.3.X/framework/test/pom.xml
branches/enterprise/3.3.X/pom.xml
branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml
branches/enterprise/3.3.X/samples/calendar-sample/pom.xml
branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml
branches/enterprise/3.3.X/samples/columnsDemo/pom.xml
branches/enterprise/3.3.X/samples/combobox-sample/pom.xml
branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml
branches/enterprise/3.3.X/samples/createProject.sh
branches/enterprise/3.3.X/samples/darkX/pom.xml
branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml
branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml
branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml
branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml
branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml
branches/enterprise/3.3.X/samples/editor-sample/pom.xml
branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml
branches/enterprise/3.3.X/samples/effect-sample/pom.xml
branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml
branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml
branches/enterprise/3.3.X/samples/functions-demo/pom.xml
branches/enterprise/3.3.X/samples/glassX/pom.xml
branches/enterprise/3.3.X/samples/gmap-sample/pom.xml
branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml
branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml
branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml
branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml
branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml
branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml
branches/enterprise/3.3.X/samples/jira-data/pom.xml
branches/enterprise/3.3.X/samples/laguna/pom.xml
branches/enterprise/3.3.X/samples/layout-sample/pom.xml
branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml
branches/enterprise/3.3.X/samples/local-value-demo/pom.xml
branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml
branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml
branches/enterprise/3.3.X/samples/panel-sample/pom.xml
branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml
branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml
branches/enterprise/3.3.X/samples/pickList-sample/pom.xml
branches/enterprise/3.3.X/samples/pom.xml
branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml
branches/enterprise/3.3.X/samples/queue-sample/pom.xml
branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml
branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml
branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml
branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml
branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml
branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml
branches/enterprise/3.3.X/samples/seamIntegration/pom.xml
branches/enterprise/3.3.X/samples/separator-sample/pom.xml
branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml
branches/enterprise/3.3.X/samples/skins/pom.xml
branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml
branches/enterprise/3.3.X/samples/state-sample/pom.xml
branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml
branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml
branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml
branches/enterprise/3.3.X/samples/themes/pom.xml
branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml
branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml
branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml
branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml
branches/enterprise/3.3.X/samples/tree-demo/pom.xml
branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml
branches/enterprise/3.3.X/samples/violetRays/pom.xml
branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml
branches/enterprise/3.3.X/sandbox/api/pom.xml
branches/enterprise/3.3.X/sandbox/cdk/pom.xml
branches/enterprise/3.3.X/sandbox/impl/pom.xml
branches/enterprise/3.3.X/sandbox/pom.xml
branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml
branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml
branches/enterprise/3.3.X/sandbox/samples/pom.xml
branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml
branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml
branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml
branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml
branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml
branches/enterprise/3.3.X/sandbox/ui/pom.xml
branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml
branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml
branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml
branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml
branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml
branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml
branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml
branches/enterprise/3.3.X/test-applications/automator/pom.xml
branches/enterprise/3.3.X/test-applications/facelets/pom.xml
branches/enterprise/3.3.X/test-applications/jsp/pom.xml
branches/enterprise/3.3.X/test-applications/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml
branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml
branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml
branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml
branches/enterprise/3.3.X/test-applications/seamApp/pom.xml
branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml
branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml
branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml
branches/enterprise/3.3.X/ui/assembly/pom.xml
branches/enterprise/3.3.X/ui/beanValidator/pom.xml
branches/enterprise/3.3.X/ui/calendar/pom.xml
branches/enterprise/3.3.X/ui/colorPicker/pom.xml
branches/enterprise/3.3.X/ui/columns/pom.xml
branches/enterprise/3.3.X/ui/combobox/pom.xml
branches/enterprise/3.3.X/ui/componentControl/pom.xml
branches/enterprise/3.3.X/ui/contextMenu/pom.xml
branches/enterprise/3.3.X/ui/core/pom.xml
branches/enterprise/3.3.X/ui/create.bat
branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml
branches/enterprise/3.3.X/ui/dataTable/pom.xml
branches/enterprise/3.3.X/ui/datascroller/pom.xml
branches/enterprise/3.3.X/ui/drag-drop/pom.xml
branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml
branches/enterprise/3.3.X/ui/editor/pom.xml
branches/enterprise/3.3.X/ui/effect/pom.xml
branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml
branches/enterprise/3.3.X/ui/fileUpload/pom.xml
branches/enterprise/3.3.X/ui/functions/pom.xml
branches/enterprise/3.3.X/ui/gmap/pom.xml
branches/enterprise/3.3.X/ui/hotKey/pom.xml
branches/enterprise/3.3.X/ui/inplaceInput/pom.xml
branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml
branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml
branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml
branches/enterprise/3.3.X/ui/insert/pom.xml
branches/enterprise/3.3.X/ui/jQuery/pom.xml
branches/enterprise/3.3.X/ui/layout/pom.xml
branches/enterprise/3.3.X/ui/listShuttle/pom.xml
branches/enterprise/3.3.X/ui/menu-components/pom.xml
branches/enterprise/3.3.X/ui/message/pom.xml
branches/enterprise/3.3.X/ui/modal-panel/pom.xml
branches/enterprise/3.3.X/ui/orderingList/pom.xml
branches/enterprise/3.3.X/ui/paint2D/pom.xml
branches/enterprise/3.3.X/ui/panel/pom.xml
branches/enterprise/3.3.X/ui/panelbar/pom.xml
branches/enterprise/3.3.X/ui/panelmenu/pom.xml
branches/enterprise/3.3.X/ui/pickList/pom.xml
branches/enterprise/3.3.X/ui/pom.xml
branches/enterprise/3.3.X/ui/progressBAR/pom.xml
branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml
branches/enterprise/3.3.X/ui/separator/pom.xml
branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml
branches/enterprise/3.3.X/ui/spacer/pom.xml
branches/enterprise/3.3.X/ui/state/pom.xml
branches/enterprise/3.3.X/ui/suggestionbox/pom.xml
branches/enterprise/3.3.X/ui/tabPanel/pom.xml
branches/enterprise/3.3.X/ui/togglePanel/pom.xml
branches/enterprise/3.3.X/ui/toolBar/pom.xml
branches/enterprise/3.3.X/ui/tooltip/pom.xml
branches/enterprise/3.3.X/ui/tree/pom.xml
branches/enterprise/3.3.X/ui/treeModel/pom.xml
branches/enterprise/3.3.X/ui/treeTable/pom.xml
branches/enterprise/3.3.X/ui/virtualEarth/pom.xml
Log:
RFPL-1071 Preparing for 3.3.1.SP3 tag
Modified: branches/enterprise/3.3.X/cdk/generator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/generator/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/generator/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.1.SP3-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.SP3</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<!-- Required for JSF -->
Modified: branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
<build>
Modified: branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>maven-resource-dependency-plugin</name>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/cdk/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/cdkguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/cdkguide/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/common-resources/en/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>en</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>jar</packaging>
<name>Documentation common resources (en)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
<build>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<extensions>
<extension>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/common-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/common-resources/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: branches/enterprise/3.3.X/docs/faq/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/en/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/faq/en/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/faq/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/faq/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/highlight/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/highlight/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/highlight/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/migrationguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/migrationguide/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: branches/enterprise/3.3.X/docs/userguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/userguide/en/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: branches/enterprise/3.3.X/docs/userguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/docs/userguide/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/examples/photoalbum/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<distributionManagement>
<downloadUrl>
Modified: branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/enterprise/3.3.X/extensions/gwt/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/gwt/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/extensions/gwt/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: branches/enterprise/3.3.X/extensions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/extensions/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: branches/enterprise/3.3.X/extensions/seam/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/seam/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/extensions/seam/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: branches/enterprise/3.3.X/extensions/trinidad/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/trinidad/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/extensions/trinidad/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: branches/enterprise/3.3.X/framework/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/api/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/framework/api/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: branches/enterprise/3.3.X/framework/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/impl/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/framework/impl/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<resources>
<resource>
@@ -161,7 +161,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/enterprise/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2011-02-08 18:26:29 UTC (rev 21546)
@@ -38,7 +38,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "1.GA" ;
+ public static final String REVISION = "1.SP3" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: branches/enterprise/3.3.X/framework/jsf-test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/jsf-test/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/framework/jsf-test/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/framework/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/framework/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: branches/enterprise/3.3.X/framework/test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/test/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/framework/test/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/pom.xml
===================================================================
--- branches/enterprise/3.3.X/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<dependencies />
<build>
Modified: branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -52,7 +52,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version> </dependency>
+ <version>3.3.1.SP3</version> </dependency>
-->
<dependency>
<groupId>org.hibernate</groupId>
@@ -75,7 +75,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: branches/enterprise/3.3.X/samples/calendar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/calendar-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/calendar-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -35,7 +35,7 @@
<groupId>org.richfaces.framework
</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples
@@ -46,17 +46,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/samples/columnsDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/columnsDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/columnsDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/combobox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/combobox-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/combobox-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/createProject.sh
===================================================================
--- branches/enterprise/3.3.X/samples/createProject.sh 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/createProject.sh 2011-02-08 18:26:29 UTC (rev 21546)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.1.SP3-SNAPSHOT -Dversion=3.3.1.SP3-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.1.SP3 -Dversion=3.3.1.SP3 -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: branches/enterprise/3.3.X/samples/darkX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/darkX/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/darkX/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/editor-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editor-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/editor-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/samples/effect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/effect-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/effect-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/functions-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/functions-demo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/functions-demo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/glassX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/glassX/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/glassX/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: branches/enterprise/3.3.X/samples/gmap-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/gmap-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/gmap-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/jira-data/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jira-data/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/jira-data/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/laguna/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/laguna/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/laguna/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: branches/enterprise/3.3.X/samples/layout-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/layout-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/layout-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>layout-sample</artifactId>
<packaging>war</packaging>
<name>layout Maven Webapp</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,22 +34,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/local-value-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/local-value-demo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/local-value-demo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/panel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panel-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/panel-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/pickList-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pickList-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/pickList-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/queue-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/queue-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/queue-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -207,22 +207,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -312,12 +312,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<dependencies>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<dependencies>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/seamEAR/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<dependencies>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
</project>
Modified: branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modules>
<module>logging</module>
Modified: branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: branches/enterprise/3.3.X/samples/seamIntegration/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamIntegration/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/seamIntegration/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/separator-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/separator-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/separator-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/skins/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/skins/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/skins/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency-->
<dependency>
Modified: branches/enterprise/3.3.X/samples/state-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/state-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/state-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/themes/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/themes/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/themes/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/tree-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tree-demo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/tree-demo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/samples/violetRays/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/violetRays/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/violetRays/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/enterprise/3.3.X/sandbox/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/api/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/api/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/cdk/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/cdk/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: branches/enterprise/3.3.X/sandbox/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/impl/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/impl/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk.sandbox</groupId>
<artifactId>maven-rd-plugin-sample</artifactId>
<packaging>war</packaging>
<name>maven-rd-plugin-sample Maven Webapp</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<configuration>
<scriptFilePath>scripts/custom-dependencies.js</scriptFilePath>
<styleFilePath>css/custom-dependencies.xcss</styleFilePath>
@@ -59,7 +59,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/samples/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
Modified: branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/ui/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
Modified: branches/enterprise/3.3.X/test-applications/automator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/automator/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/automator/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/test-applications/facelets/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/facelets/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/facelets/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/test-applications/jsp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/jsp/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/jsp/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/enterprise/3.3.X/test-applications/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<relativePath>../samples</relativePath>
</parent>
@@ -20,11 +20,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.1.SP3-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.SP3</rfVersion>
</properties>
<modules>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Regresion Area:Seam Application</name>
<repositories>
@@ -22,7 +22,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.1.SP3-SNAPSHOT</richversion>
+ <richversion>3.3.1.SP3</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -8,7 +8,7 @@
<name>richfaces-docs</name>
<properties>
<projectName>richfaces-docs</projectName>
- <richfacesVersion>3.3.1.SP3-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.SP3</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<droolsVersion>4.0.0</droolsVersion>
Modified: branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -47,7 +47,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<scope>provided</scope>
</dependency>
Modified: branches/enterprise/3.3.X/test-applications/seamApp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seamApp/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/seamApp/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.1.SP3-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.SP3</rfVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.2.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.2.GA/jboss-4.2.2.GA/server/default/</jbossDeployDir>
Modified: branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -197,7 +197,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: branches/enterprise/3.3.X/ui/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/assembly/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/assembly/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: branches/enterprise/3.3.X/ui/beanValidator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/beanValidator/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/beanValidator/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -3,19 +3,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: branches/enterprise/3.3.X/ui/calendar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/calendar/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/calendar/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/colorPicker/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/colorPicker/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/colorPicker/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -12,7 +12,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/columns/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/columns/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/columns/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/enterprise/3.3.X/ui/combobox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/combobox/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/combobox/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/ui/componentControl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/componentControl/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/componentControl/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/contextMenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/contextMenu/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/contextMenu/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/core/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/core/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/core/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/create.bat
===================================================================
--- branches/enterprise/3.3.X/ui/create.bat 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/create.bat 2011-02-08 18:26:29 UTC (rev 21546)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP3-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP3 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/dataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataTable/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/dataTable/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
-->
</dependencies>
Modified: branches/enterprise/3.3.X/ui/datascroller/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/datascroller/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/datascroller/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/drag-drop/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/drag-drop/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/drag-drop/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
-->
</dependencies>
Modified: branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/editor/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/editor/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/editor/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -62,7 +62,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Modified: branches/enterprise/3.3.X/ui/effect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/effect/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/effect/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,45 +64,45 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/fileUpload/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/fileUpload/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/fileUpload/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/functions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/functions/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/functions/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/gmap/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/gmap/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/gmap/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/hotKey/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/hotKey/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/hotKey/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/inplaceInput/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceInput/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/inplaceInput/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/enterprise/3.3.X/ui/insert/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/insert/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/insert/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/jQuery/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/jQuery/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/jQuery/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/layout/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/layout/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/layout/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
Modified: branches/enterprise/3.3.X/ui/listShuttle/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/listShuttle/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/listShuttle/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/enterprise/3.3.X/ui/menu-components/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/menu-components/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/menu-components/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/message/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/message/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/message/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/modal-panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/modal-panel/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/modal-panel/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/orderingList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/orderingList/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/orderingList/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/paint2D/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/paint2D/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/paint2D/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panel/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/panel/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/panelbar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelbar/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/panelbar/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/panelmenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelmenu/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/panelmenu/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/pickList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pickList/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/pickList/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
Modified: branches/enterprise/3.3.X/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -138,12 +138,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: branches/enterprise/3.3.X/ui/progressBAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/progressBAR/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/progressBAR/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/separator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/separator/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/separator/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/spacer/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/spacer/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/spacer/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/state/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/state/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/state/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/suggestionbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/suggestionbox/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/suggestionbox/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/tabPanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tabPanel/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/tabPanel/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/togglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/togglePanel/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/togglePanel/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/toolBar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/toolBar/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/toolBar/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/tooltip/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tooltip/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/tooltip/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/tree/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tree/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/tree/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/treeModel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeModel/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/treeModel/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/enterprise/3.3.X/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeTable/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/treeTable/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/enterprise/3.3.X/ui/virtualEarth/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/virtualEarth/pom.xml 2011-02-08 17:39:09 UTC (rev 21545)
+++ branches/enterprise/3.3.X/ui/virtualEarth/pom.xml 2011-02-08 18:26:29 UTC (rev 21546)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP3-SNAPSHOT</version>
+ <version>3.3.1.SP3</version>
<executions>
<execution>
<phase>generate-sources</phase>
15 years, 2 months
JBoss Rich Faces SVN: r21545 - trunk/core/impl/src/main/resources/META-INF/resources.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2011-02-08 12:39:09 -0500 (Tue, 08 Feb 2011)
New Revision: 21545
Modified:
trunk/core/impl/src/main/resources/META-INF/resources/jquery.position.js
Log:
RF-10216 Menu group: horizontalOffset and verticalOffset don't work
Modified: trunk/core/impl/src/main/resources/META-INF/resources/jquery.position.js
===================================================================
--- trunk/core/impl/src/main/resources/META-INF/resources/jquery.position.js 2011-02-08 16:48:22 UTC (rev 21544)
+++ trunk/core/impl/src/main/resources/META-INF/resources/jquery.position.js 2011-02-08 17:39:09 UTC (rev 21545)
@@ -122,7 +122,8 @@
// vertical constants: T-top, B-bottom, M-middle, A-auto
// for auto: list of joinPoint-Direction pairs
TOOLTIP: {from:"AA", to:"AA", auto:["RTRT", "RBRT", "LTRT", "RTLT", "LTLT", "LBLT", "RTRB", "RBRB", "LBRB", "RBLB"]},
- DROPDOWN:{from:"AA", to:"AA", auto:["LBRB", "LTRT", "RBLB", "RTLT"]}
+ DROPDOWN:{from:"AA", to:"AA", auto:["LBRB", "LTRT", "RBLB", "RTLT"]},
+ DDMENUGROUP:{from:"AA", to:"AA", auto:["RTRB", "RBRT", "LTLB", "LBLT"]}
};
/**
15 years, 2 months
JBoss Rich Faces SVN: r21544 - in trunk/examples/richfaces-showcase/src/main/webapp: resources/css and 3 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2011-02-08 11:48:22 -0500 (Tue, 08 Feb 2011)
New Revision: 21544
Added:
trunk/examples/richfaces-showcase/src/main/webapp/images/body-bg.jpg
trunk/examples/richfaces-showcase/src/main/webapp/images/footer.png
trunk/examples/richfaces-showcase/src/main/webapp/images/header-bg.png
trunk/examples/richfaces-showcase/src/main/webapp/images/page-bg.png
trunk/examples/richfaces-showcase/src/main/webapp/images/rf-logo.png
trunk/examples/richfaces-showcase/src/main/webapp/images/select-skin-button.png
trunk/examples/richfaces-showcase/src/main/webapp/images/sep.gif
trunk/examples/richfaces-showcase/src/main/webapp/resources/css/application.css
Modified:
trunk/examples/richfaces-showcase/src/main/webapp/richfaces/component-sample.xhtml
trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/navigation.xhtml
trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/skin-chooser.xhtml
trunk/examples/richfaces-showcase/src/main/webapp/templates/main.xhtml
Log:
http://jira.jboss.org/browse/RF-9636
Added: trunk/examples/richfaces-showcase/src/main/webapp/images/body-bg.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/examples/richfaces-showcase/src/main/webapp/images/body-bg.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/examples/richfaces-showcase/src/main/webapp/images/footer.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/richfaces-showcase/src/main/webapp/images/footer.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/examples/richfaces-showcase/src/main/webapp/images/header-bg.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/richfaces-showcase/src/main/webapp/images/header-bg.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/examples/richfaces-showcase/src/main/webapp/images/page-bg.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/richfaces-showcase/src/main/webapp/images/page-bg.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/examples/richfaces-showcase/src/main/webapp/images/rf-logo.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/richfaces-showcase/src/main/webapp/images/rf-logo.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/examples/richfaces-showcase/src/main/webapp/images/select-skin-button.png
===================================================================
(Binary files differ)
Property changes on: trunk/examples/richfaces-showcase/src/main/webapp/images/select-skin-button.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/examples/richfaces-showcase/src/main/webapp/images/sep.gif
===================================================================
(Binary files differ)
Property changes on: trunk/examples/richfaces-showcase/src/main/webapp/images/sep.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/examples/richfaces-showcase/src/main/webapp/resources/css/application.css
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/resources/css/application.css (rev 0)
+++ trunk/examples/richfaces-showcase/src/main/webapp/resources/css/application.css 2011-02-08 16:48:22 UTC (rev 21544)
@@ -0,0 +1,142 @@
+* {
+ margin:0;
+ padding:0;
+}
+html{
+ height:100%;
+}
+body{
+ background:#94aebc url(#{facesContext.externalContext.requestContextPath}/images/body-bg.jpg) left bottom repeat;
+ font:normal 12px "Lucida Sans Unicode","Lucida Grande",Geneva,Verdana,Arial,sans-serif;
+ height:100%;
+}
+ul{
+ list-style:none;
+}
+a{
+ color:#5a8eba;
+ outline:none;
+ text-decoration:none;
+}
+a:hover{
+ text-decoration:underline;
+}
+p{
+ margin:0;
+ padding:0 0 6px;
+}
+#page{
+ margin:0 auto;
+ width:987px;
+}
+#header{
+ background:url(#{facesContext.externalContext.requestContextPath}/images/header-bg.png) no-repeat top left;
+ height:90px;
+}
+#header .logo{
+ float:left;
+ margin-left:7px;
+ text-decoration:none;
+}
+#header .logo img{
+ border:none;
+}
+#header .right-controls{
+ float:right;
+}
+#header ul.top-links{
+ margin:5px 15px 0 0;
+ text-align:right;
+}
+#header ul.top-links li{
+ display:inline;
+ font-size:11px;
+}
+#header ul.top-links li a{
+ background:url(#{facesContext.externalContext.requestContextPath}/images/sep.gif) center right no-repeat;
+ color:#fff;
+ padding:0 8px 0 3px;
+}
+#header ul.top-links li.last a{
+ background:none;
+ padding:0 0 0 3px;
+}
+#header ul.top-links li.download-link a{
+ color:#eccb7b;
+}
+#header ul#skin-menu{
+ color:#89a0be;
+ cursor:default;
+ font-weight:bold;
+ margin:38px 15px 0 0;
+ text-align:right;
+}
+#header ul#skin-menu li{
+ cursor:pointer;
+ display:inline-block;
+ float:right;
+ height:25px;
+ margin-left:4px;
+ padding-left:5px;
+}
+#header ul#skin-menu li span{
+ height:25px;
+ padding:3px 5px 0 0;
+ display:inline-block;
+}
+#header ul#skin-menu li span:hover{
+ text-decoration:underline;
+}
+#header ul#skin-menu li.label{
+ color:#999999;
+ cursor:default;
+ font-weight:normal;
+}
+
+#header ul#skin-menu li.current-skin{
+ background:url(#{facesContext.externalContext.requestContextPath}/images/select-skin-button.png) left -75px no-repeat;
+ color:#fff;
+}
+#header ul#skin-menu li.current-skin span{
+ background:url(#{facesContext.externalContext.requestContextPath}/images/select-skin-button.png) right 0 repeat-x;
+}
+#header ul#skin-menu li.label span:hover,
+#header ul#skin-menu li.current-skin span:hover{
+ text-decoration:none;
+}
+#page-content{
+ background:url(#{facesContext.externalContext.requestContextPath}/images/page-bg.png) 0 0 repeat-y;
+ height:100%;
+ min-height:520px;
+ padding:10px 20px 0;
+}
+#page-content .left-menu{
+ float:left;
+ margin-right:10px;
+ min-height:450px;
+ width:210px;
+}
+#page-content .content-container {
+ float:left;
+ width:720px;
+}
+
+#page-content:after{
+ content: ".";
+ display: block;
+ clear: both;
+ visibility: hidden;
+ line-height: 0;
+ height: 0;
+}
+
+#footer{
+ background:url(#{facesContext.externalContext.requestContextPath}/images/footer.png) top left no-repeat;
+ color:#2d4351;
+ text-align:center;
+ padding:15px 20px 10px;
+}
+
+.source .syntaxhighlighter .line{
+ white-space: normal !important;
+}
\ No newline at end of file
Modified: trunk/examples/richfaces-showcase/src/main/webapp/richfaces/component-sample.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/richfaces/component-sample.xhtml 2011-02-08 16:06:14 UTC (rev 21543)
+++ trunk/examples/richfaces-showcase/src/main/webapp/richfaces/component-sample.xhtml 2011-02-08 16:48:22 UTC (rev 21544)
@@ -3,29 +3,32 @@
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:rich="http://richfaces.org/rich">
+ xmlns:rich="http://richfaces.org/rich"
+ xmlns:c="http://java.sun.com/jsp/jstl/core">
<ui:composition template="/templates/main.xhtml">
<ui:define name="demoSampleParameters">
<f:metadata>
<f:viewParam name="sample" value="#{demoNavigator.sample}" />
<f:viewParam name="demo" value="#{demoNavigator.demo}" />
- <f:viewParam name="skin" value="#{skinBean.skin}"/>
+ <f:viewParam name="skin" value="#{skinBean.skin}" />
</f:metadata>
</ui:define>
<ui:define name="body">
- <rich:panel styleClass="samples-navigator">
- <ui:repeat value="#{demoNavigator.currentDemo.samples}" var="s" varStatus="status">
- <h:link value="#{s.name}" includeViewParams="true">
- <f:param name="sample" value="#{s.id}" />
- <f:attribute name="style" value="#{(s.id == demoNavigator.currentSample.id) ? 'color:orange' : ''}"/>
- </h:link>
- <h:outputText rendered="#{s.newItem}" value="NEW!" styleClass="new_marker" />
- <h:outputText value=" | " rendered="#{not status.last}" />
- </ui:repeat>
- </rich:panel>
- <fieldset><legend><b>#{demoNavigator.currentSample.name}</b></legend>
- <ui:include src="#{demoNavigator.sampleURI}" /></fieldset>
+ <style>
+.navigation .rf-tab-hdr-brd,.navigation .rf-tab {
+ display: none;
+}
+</style>
+ <rich:tabPanel switchType="client" styleClass="navigation"
+ activeItem="#{demoNavigator.currentSample.id}"
+ onbeforeitemchange="return false;">
+ <c:forEach items="#{demoNavigator.currentDemo.samples}" var="s">
+ <rich:tab header="#{s.name}" name="#{s.id}"
+ onheaderclick="document.location='#{facesContext.externalContext.requestContextPath}/richfaces/component-sample.jsf?demo=#{d.id}&sample=#{s.id}&skin=#{skinBean.skin}'" />
+ </c:forEach>
+ </rich:tabPanel>
+ <fieldset><ui:include src="#{demoNavigator.sampleURI}" /></fieldset>
</ui:define>
</ui:composition>
Modified: trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/navigation.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/navigation.xhtml 2011-02-08 16:06:14 UTC (rev 21543)
+++ trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/navigation.xhtml 2011-02-08 16:48:22 UTC (rev 21544)
@@ -3,29 +3,18 @@
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:a4j="http://richfaces.org/a4j"
- xmlns:rich="http://richfaces.org/rich">
- <rich:panel style="width:300px" styleClass="rf-p-c">
- <f:facet name="header">
- <h:outputText value="Navigation" />
- </f:facet>
- <ul>
- <a4j:repeat value="#{demoNavigator.groups}" var="gr">
- <li>
- <h:outputText value="#{gr.name}" style="font-weight:bold"/>
- <h:outputText rendered="#{gr.newItem}" value="NEW!" styleClass="new_marker" />
- </li>
- <ul>
- <a4j:repeat value="#{gr.demos}" var="d">
- <li>
- <h:link outcome="/richfaces/component-sample.xhtml" value="#{d.name}" includeViewParams="false">
- <f:attribute name="style" value="#{(d.id == demoNavigator.currentDemo.id) ? 'color:orange' : ''}"/>
- <f:param name="demo" value="#{d.id}"/>
- </h:link>
- <h:outputText rendered="#{d.newItem or gr.newItem}" value="NEW!" styleClass="new_marker" />
- </li>
- </a4j:repeat>
- </ul>
- </a4j:repeat>
- </ul>
- </rich:panel>
+ xmlns:rich="http://richfaces.org/rich"
+ xmlns:c="http://java.sun.com/jsp/jstl/core">
+ <rich:panelMenu activeItem="#{demoNavigator.currentDemo.id}">
+ <c:forEach items="#{demoNavigator.groups}" var="gr">
+ <rich:panelMenuGroup label="#{gr.name}">
+ <c:forEach items="#{gr.demos}" var="d">
+ <rich:panelMenuItem label="#{d.name}" action="#{d.id}"
+ mode="client" name="#{d.id}"
+ onclick="document.location='#{facesContext.externalContext.requestContextPath}/richfaces/component-sample.jsf?demo=#{d.id}&skin=#{skinBean.skin}'">
+ </rich:panelMenuItem>
+ </c:forEach>
+ </rich:panelMenuGroup>
+ </c:forEach>
+ </rich:panelMenu>
</ui:composition>
Modified: trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/skin-chooser.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/skin-chooser.xhtml 2011-02-08 16:06:14 UTC (rev 21543)
+++ trunk/examples/richfaces-showcase/src/main/webapp/templates/includes/skin-chooser.xhtml 2011-02-08 16:48:22 UTC (rev 21544)
@@ -1,21 +1,25 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
- xmlns:h="http://java.sun.com/jsf/html"
- xmlns:f="http://java.sun.com/jsf/core"
- xmlns:ui="http://java.sun.com/jsf/facelets"
- xmlns:a4j="http://richfaces.org/a4j"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
-
- <ui:composition>
- <rich:panel styleClass="skin-chooser .rf-p-c">
- <a4j:repeat var="skin" value="#{skinBean.skins}" iterationStatusVar="iterStatus">
- <h:link value="#{skin}" includeViewParams="true">
- <f:param name="skin" value="#{skin}"/>
- <f:attribute name="style" value="#{(skin==skinBean.skin) ? 'color:orange' : ''}"/>
- </h:link>
- <h:outputText value = " | " rendered="#{not iterStatus.last}" />
- </a4j:repeat>
- </rich:panel>
- </ui:composition>
-
+
+<ui:composition>
+ <ul id="skin-menu">
+ <a4j:repeat var="skin" value="#{skinBean.skins}"
+ iterationStatusVar="iterStatus">
+ <li class="#{(skin==skinBean.skin) ? 'current-skin' : ''}"><h:link
+ includeViewParams="true">
+ <a4j:outputPanel>
+ #{skin}
+ </a4j:outputPanel>
+ <f:param name="skin" value="#{skin}" />
+ </h:link></li>
+ </a4j:repeat>
+ <li class="label"><span>Select Skin:</span></li>
+ </ul>
+</ui:composition>
+
</html>
\ No newline at end of file
Modified: trunk/examples/richfaces-showcase/src/main/webapp/templates/main.xhtml
===================================================================
--- trunk/examples/richfaces-showcase/src/main/webapp/templates/main.xhtml 2011-02-08 16:06:14 UTC (rev 21543)
+++ trunk/examples/richfaces-showcase/src/main/webapp/templates/main.xhtml 2011-02-08 16:48:22 UTC (rev 21544)
@@ -6,9 +6,8 @@
xmlns:a4j="http://richfaces.org/a4j">
<f:view contentType="text/html">
<ui:insert name="demoSampleParameters"/>
-
<h:head>
-<title>Components Gallery</title>
+<title>RichFaces Showcase</title>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-7306415-4']);
@@ -19,69 +18,38 @@
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
-</script>
+</script>
+<h:outputStylesheet library="css" name="application.css"/>
</h:head>
<h:body>
- <h:outputStylesheet library="org.richfaces.showcase" name="page.ecss" />
- <h:outputStylesheet library="org.richfaces.showcase" name="panel.ecss" />
- <table border="0" cellpadding="0" cellspacing="0"
- class="rich-page header_bg #{cc.attrs.pageClass}">
- <tbody>
- <tr>
- <td>
- <div
- class="header_content rich-page-header #{cc.attrs.headerClass}">
- <h1>Welcome to RichFaces demo!</h1>
- </div>
- </td>
- <td align="right" class="header_links_container">
- <h:outputLink value="http://jboss.org/richfaces">Project Site</h:outputLink>
- <h:outputText value=" | "/>
- <h:outputLink value="http://www.jboss.org/community/wiki/richfaceswikihomepage">Project Wiki</h:outputLink>
- <h:outputText value=" | "/>
- <h:outputLink value="http://community.jboss.org/community/richfaces">RichFaces Community Space</h:outputLink>
- <h:outputText value=" | "/>
- <h:outputLink value="http://jboss.org/richfaces/download/milestones.html">Download</h:outputLink>
- <h:outputText value=" | "/>
- <h:outputLink value="http://anonsvn.jboss.org/repos/richfaces/trunk/examples/richfaces-showcase/">Sources</h:outputLink>
- </td>
- </tr>
- <tr>
- <td width="100%" height="100%" class="bg_tabbody" colspan="2">
- <table cellpadding="0" cellspacing="0" border="0" width="100%"
- height="100%" class="rich-page-content">
- <tbody>
- <tr>
- <td class="menu_col rich-page-sidebar">
- <div class="menu_width spacer"></div>
- <ui:include src="/templates/includes/navigation.xhtml" /></td>
- <td class="content_col rich-page-body">
-
- <ui:remove>
- <fieldset>
- <legend>#{demoNavigator.currentComponent}</legend>
- </fieldset>
- </ui:remove>
- <ui:include src="/templates/includes/skin-chooser.xhtml"/>
- <ui:insert name="body">
- Body content missed
- </ui:insert></td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- <tr>
- <td class="footer_bg" colspan="2">
- <div
- class="footer_bg_content rich-page-footer">
- #{a4j}
- </div>
- </td>
- </tr>
- </tbody>
- </table>
-
+ <div id="page">
+ <div id="header">
+ <a href="#" class="logo"><img src="#{facesContext.externalContext.requestContextPath}/images/rf-logo.png" alt="RF logo"/></a>
+ <div class="right-controls">
+ <ul class="top-links">
+ <li><a href="http://jboss.org/richfaces;jsessionid=bJJO_UTMPzC7DsTvo5vjKA" target="_blank">Project Site</a></li>
+ <li><a href="http://www.jboss.org/community/wiki/richfaceswikihomepage;jsessionid=bJJO..." target="_blank">Project Wiki</a></li>
+ <li><a href="http://community.jboss.org/community/richfaces;jsessionid=bJJO_UTMPzC7DsT..." target="_blank">RichFaces Community Space</a></li>
+ <li class="download-link"><a href="http://jboss.org/richfaces/download/milestones.html;jsessionid=bJJO_UTMPz..." target="_blank">Download</a></li>
+ <li class="last"><a href="http://anonsvn.jboss.org/repos/richfaces/trunk/examples/richfaces-showcas..." target="_blank">Sources</a></li>
+ </ul>
+ <ui:include src="/templates/includes/skin-chooser.xhtml" />
+ </div>
+ </div>
+ <div id="page-content">
+ <div class="left-menu">
+ <ui:include src="/templates/includes/navigation.xhtml" />
+ </div>
+ <div class="content-container">
+ <ui:insert name="body">
+ Body content missed
+ </ui:insert>
+ </div>
+ </div>
+ <div id="footer">
+ #{a4j}
+ </div>
+ </div>
</h:body>
</f:view>
</html>
\ No newline at end of file
15 years, 2 months