JBoss Rich Faces SVN: r16670 - branches/community/3.3.X/samples/richfaces-demo/functional-test.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-03-26 06:43:08 -0400 (Fri, 26 Mar 2010)
New Revision: 16670
Modified:
branches/community/3.3.X/samples/richfaces-demo/functional-test/profiles.jboss-qa.xml
Log:
- updated paths to hudson dependencies
Modified: branches/community/3.3.X/samples/richfaces-demo/functional-test/profiles.jboss-qa.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/profiles.jboss-qa.xml 2010-03-26 01:17:39 UTC (rev 16669)
+++ branches/community/3.3.X/samples/richfaces-demo/functional-test/profiles.jboss-qa.xml 2010-03-26 10:43:08 UTC (rev 16670)
@@ -139,8 +139,8 @@
</activation>
<properties>
<jboss5x.version>5.1.0.GA</jboss5x.version>
- <jboss5x.installer.url.unix>file:/qa/home/hudson/lfryc/jboss-jsf2/jboss-${jboss5x.version}.zip</jboss5x.installer.url.unix>
- <jboss5x.installer.url.windows>file:h:\hudson\lfryc\jboss-jsf2\jboss-${jboss5x.version}.zip</jboss5x.installer.url.windows>
+ <jboss5x.installer.url.unix>file:/qa/home/hudson/lfryc/hudson-dependencies--keep/jboss-jsf2/jboss-${jboss5x.version}.zip</jboss5x.installer.url.unix>
+ <jboss5x.installer.url.windows>file:h:\hudson\lfryc\hudson-dependencies--keep\jboss-jsf2\jboss-${jboss5x.version}.zip</jboss5x.installer.url.windows>
</properties>
</profile>
<profile>
14 years, 9 months
JBoss Rich Faces SVN: r16669 - in root/cdk/trunk/plugins: generator/src/main/java/org/richfaces/cdk/apt and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-03-25 21:17:39 -0400 (Thu, 25 Mar 2010)
New Revision: 16669
Modified:
root/cdk/trunk/plugins/annotations/src/main/java/org/richfaces/cdk/annotations/Tag.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/ComponentProcessor.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/ProcessorBase.java
Log:
CODING IN PROGRESS - issue RF-8523: Refactor CDK annotations
https://jira.jboss.org/jira/browse/RF-8523
Modified: root/cdk/trunk/plugins/annotations/src/main/java/org/richfaces/cdk/annotations/Tag.java
===================================================================
--- root/cdk/trunk/plugins/annotations/src/main/java/org/richfaces/cdk/annotations/Tag.java 2010-03-25 16:02:42 UTC (rev 16668)
+++ root/cdk/trunk/plugins/annotations/src/main/java/org/richfaces/cdk/annotations/Tag.java 2010-03-26 01:17:39 UTC (rev 16669)
@@ -62,7 +62,7 @@
/**
* Used in {@link Tag} to signal that tag uses the default handler.
*/
- static final class DEFAULT extends TagHandler {
+ public static final class DEFAULT extends TagHandler {
public DEFAULT(TagConfig config) {
super(config);
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/ComponentProcessor.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/ComponentProcessor.java 2010-03-25 16:02:42 UTC (rev 16668)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/ComponentProcessor.java 2010-03-26 01:17:39 UTC (rev 16669)
@@ -88,7 +88,7 @@
processFacets(componentElement, component, annotation);
// process Events.
- setEvents(componentElement, component, annotation);
+ processEvents(componentElement, component, annotation);
// TODO Use @Inject directly, componentElement is wrong here.
JsfRenderer renderer = annotation.renderer();
@@ -152,7 +152,7 @@
}
- final void setEvents(TypeElement componentElement, ComponentModel component, JsfComponent annotation) {
+ final void processEvents(TypeElement componentElement, ComponentModel component, JsfComponent annotation) {
Event[] fires = annotation.fires();
for (Event event : fires) {
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/ProcessorBase.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/ProcessorBase.java 2010-03-25 16:02:42 UTC (rev 16668)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/ProcessorBase.java 2010-03-26 01:17:39 UTC (rev 16669)
@@ -146,6 +146,7 @@
// Process XML files with standard attributes definitions.
SourceUtils sourceUtils = getSourceUtils();
+ // Read xml configuration associated with all superclasses and interfaces
sourceUtils.visitSupertypes(asClassDesctiption(componentElement), new SuperTypeVisitor() {
@Override
@@ -181,7 +182,7 @@
}
}
- private void processAttribute(BeanProperty beanProperty, PropertyBase attribute) {
+ protected void processAttribute(BeanProperty beanProperty, PropertyBase attribute) {
attribute.setType(beanProperty.getType());
Attribute attributeAnnotarion = beanProperty.getAnnotation(Attribute.class);
@@ -219,11 +220,11 @@
}
}
- private List<ClassName> getSignature(Signature signature) {
+ protected List<ClassName> getSignature(Signature signature) {
if (signature == null) {
return null;
}
-
+ // TODO - where return type can be used ?
String returnType;
try {
returnType = signature.returnType().getName();
@@ -256,7 +257,7 @@
return null;
}
- private void setBehaviorEvent(PropertyBase attribute, EventName eventName) {
+ protected void setBehaviorEvent(PropertyBase attribute, EventName eventName) {
if (null != eventName) {
org.richfaces.cdk.model.EventName event = new org.richfaces.cdk.model.EventName();
14 years, 9 months
JBoss Rich Faces SVN: r16668 - root/framework/trunk/impl/src/main/resources/META-INF/resources.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2010-03-25 12:02:42 -0400 (Thu, 25 Mar 2010)
New Revision: 16668
Modified:
root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-base-component.js
root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js
Log:
jsdocs was added to BaseComponent and Event API RF-8517
Modified: root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-base-component.js
===================================================================
--- root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-base-component.js 2010-03-25 14:13:23 UTC (rev 16667)
+++ root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-base-component.js 2010-03-25 16:02:42 UTC (rev 16668)
@@ -1,11 +1,32 @@
-(function (jQuery, richfaces, params) {
+/**
+ * @author Pavel Yaschenko
+ */
+
+
+(function ($, richfaces, params) {
richfaces.blankFunction = function (){}; //TODO: add it to global library
+ /**
+ * @class Base class for all components
+ * @name BaseComponent
+ *
+ * @constructor
+ * @param {String} componentId - component id
+ * */
richfaces.BaseComponent = function(componentId) {
this.id = componentId;
};
+ /**
+ * Method extends child class prototype with parent prototype
+ * and return parent's prototype ($super)
+ *
+ * @methodOf
+ * @name BaseComponent.extend
+ *
+ * @return {object}
+ * */
richfaces.BaseComponent.extend = function (Parent, Child) {
var F = richfaces.blankFunction;
F.prototype = Parent.prototype;
@@ -15,9 +36,24 @@
return Parent.prototype;
}
- jQuery.extend(richfaces.BaseComponent.prototype, (function (params) {
+ $.extend(richfaces.BaseComponent.prototype, (function (params) {
return {
+ /**
+ * Component name.
+ *
+ * @name BaseComponent#name
+ * @type String
+ * */
name: "BaseComponent",
+
+ /**
+ * Method for converting object to string
+ *
+ * @methodOf
+ * @name BaseComponent#toString
+ *
+ * @return {String}
+ * */
toString: function() {
var result = [];
if (this.constructor.$super) {
@@ -26,6 +62,15 @@
result[result.length] = this.name;
return result.join(', ');
},
+
+ /**
+ * Method returns enement's id as jQuery selector
+ *
+ * @methodOf
+ * @name BaseComponent#getEventElement
+ *
+ * @return {String}
+ * */
getEventElement: function() {
return "#"+this.id;
}
@@ -33,6 +78,8 @@
})(params));
})(jQuery, window.RichFaces || (window.RichFaces={}));
+
+
/*
(function (jQuery, richfaces, params) {
Modified: root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js
===================================================================
--- root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js 2010-03-25 14:13:23 UTC (rev 16667)
+++ root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-event.js 2010-03-25 16:02:42 UTC (rev 16668)
@@ -1,4 +1,13 @@
+/**
+ * @author Pavel Yaschenko
+ */
+
(function($, richfaces) {
+
+ /**
+ * @class
+ * @name Event
+ * */
richfaces.Event = richfaces.Event || {};
var getEventElement = function (selector) {
@@ -16,7 +25,21 @@
}
$.extend(richfaces.Event, {
+ /**
+ * @constant
+ * @name Event.RICH_NAMESPACE
+ * @type string
+ * */
RICH_NAMESPACE : "RICH:",
+
+ /**
+ * Attach an event handler to execute when the DOM is fully loaded
+ * @methodOf
+ * @name Event.ready
+ *
+ * @param {function} fn - event handler
+ * @return {jQuery} document element wrapped by jQuery
+ * */
ready : function(fn) {
// TODO: not completed yet
return $(document).ready(fn);
@@ -26,6 +49,19 @@
}
*/
},
+
+ /**
+ * Attach a handler to an event for the elements
+ * @methodOf
+ * @name Event.bind
+ *
+ * @param {string|DOMElement|jQuery} selector - jQuery elements selector
+ * @param {string} type - one or more JavaScript event types, such as "click" or "submit," or custom event names
+ * @param {function} fn - event handler
+ * @param {Object} [data] - component or object with additional data
+ * It is a context for an event handler
+ * @return {function} function that binded to the element's event
+ * */
bind : function(selector, type, fn, data) {
// type: namespace can be used, like onclick.rf.conponentName
var f = function (e,d){
@@ -34,6 +70,19 @@
getEventElement(selector).bind(type, {component: data, fn:fn}, f);
return f;
},
+
+ /**
+ * Attach a handler to an event for the element by element id
+ * @methodOf
+ * @name Event.bindById
+ *
+ * @param {string} id - DOM element id
+ * @param {string} type - one or more JavaScript event types, such as "click" or "submit," or custom event names
+ * @param {function} fn - event handler
+ * @param {Object} [data] - component or object with additional data
+ * It is a context for an event handler
+ * @return {function} function that binded to the element's event
+ * */
bindById : function(id, type, fn, data) {
// type: namespace can be used, like onclick.rf.conponentName
var f = function (e,d){
@@ -41,7 +90,21 @@
};
$(document.getElementById(id)).bind(type, {component: data, fn:fn}, f);
return f;
- },
+ },
+
+ /**
+ * Attach a handler to an event for the elements
+ * The handler will be called only once when event happened
+ * @methodOf
+ * @name Event.bindOne
+ *
+ * @param {string|DOMElement|jQuery} selector - jQuery elements selector
+ * @param {string} type - one or more JavaScript event types, such as "click" or "submit," or custom event names
+ * @param {function} fn - event handler
+ * @param {Object} [data] - component or object with additional data
+ * It is a context for an event handler
+ * @return {function} function that binded to the element's event
+ * */
bindOne: function(selector, type, fn, data) {
// type: namespace can be used, like onclick.rf.conponentName
var f = function (e,d){
@@ -50,6 +113,20 @@
getEventElement(selector).one(type, {component: data, fn:fn}, f);
return f;
},
+
+ /**
+ * Attach a handler to an event for the element by element id
+ * The handler will be called only once when event happened
+ * @methodOf
+ * @name Event.bindOneById
+ *
+ * @param {string} id - DOM element id
+ * @param {string} type - one or more JavaScript event types, such as "click" or "submit," or custom event names
+ * @param {function} fn - event handler
+ * @param {Object} [data] - component or object with additional data
+ * It is a context for an event handler
+ * @return {function} function that binded to the element's event
+ * */
bindOneById: function(id, type, fn, data) {
// type: namespace can be used, like onclick.rf.conponentName
var f = function (e,d){
@@ -57,27 +134,109 @@
};
$(document.getElementById(id)).one(type, {component: data, fn:fn}, f);
return f;
- },
+ },
+
+ /**
+ * Remove a previously-attached event handler from the elements
+ * @methodOf
+ * @name Event.unbind
+ *
+ * @param {string|DOMElement|jQuery} selector - jQuery elements selector
+ * @param {string} [type] - one or more JavaScript event types, such as "click" or "submit," or custom event names
+ * @param {function} [fn] - event handler
+ * @return {jQuery} element wrapped by jQuery
+ * */
unbind : function(selector, type, fn) {
// type: namespace can be used, like onclick.rf.conponentName
return getEventElement(selector).unbind(type, fn);
- },
+ },
+
+ /**
+ * Remove a previously-attached event handler from the elements by element id
+ * The handler will be called only once when event happened
+ * @methodOf
+ * @name Event.unbindById
+ *
+ * @param {string} id - DOM element id
+ * @param {string} [type] - one or more JavaScript event types, such as "click" or "submit," or custom event names
+ * @param {function} [fn] - event handler
+ * @return {jQuery} element wrapped by jQuery
+ * */
unbindById : function(id, type, fn) {
// type: namespace can be used, like onclick.rf.conponentName
return $(document.getElementById(id)).unbind(type, fn);
- },
+ },
+
+ /**
+ * Execute all handlers and behaviors attached to the matched elements for the given event type
+ * @methodOf
+ * @name Event.fire
+ *
+ * @param {string|DOMElement|jQuery} selector - jQuery elements selector
+ * @param {string} event - event name
+ * @param {Object} [data] - a object of additional parameters to pass to the event handler
+ * @return {jQuery} element wrapped by jQuery
+ * */
fire : function(selector, event, data) {
return getEventElement(selector).trigger(event, data);
},
+
+ /**
+ * The same as the fire method, but selects element by id
+ * @methodOf
+ * @name Event.fireById
+ *
+ * @param {string} id - DOM element id
+ * @param {string} event - event name
+ * @param {Object} [data] - a object of additional parameters to pass to the event handler
+ * @return {jQuery} element wrapped by jQuery
+ * */
fireById : function(id, event, data) {
return $(document.getElementById(id)).trigger(event, data);
- },
+ },
+
+ /**
+ * The same as the fire method, but:
+ * - does not cause the default behavior of an event to occur
+ * - does not bubble up event
+ * - call handler only for the first founded element
+ * - returns whatever value that was returned by the handler
+ * @methodOf
+ * @name Event.callHandler
+ *
+ * @param {string|DOMElement|jQuery} selector - jQuery elements selector
+ * @param {string} event - event name
+ * @param {Object} [data] - a object of additional parameters to pass to the event handler
+ * @return value that was returned by the handler
+ * */
callHandler : function(selector, event, data) {
return getEventElement(selector).triggerHandler(event, data);
},
+
+ /**
+ * The same as the callHandler method, but selects element by id
+ * @methodOf
+ * @name Event.callHandlerById
+ *
+ * @param {string} id - DOM element id
+ * @param {string} event - event name
+ * @param {Object} [data] - a object of additional parameters to pass to the event handler
+ * @return value that was returned by the handler
+ * */
callHandlerById : function(id, event, data) {
return $(document.getElementById(id)).triggerHandler(event, data);
- },
+ },
+
+ /**
+ * Create an event namespace for the components
+ * @methodOf
+ * @name Event.createNamespace
+ *
+ * @param {string} [componentName] - component name
+ * @param {string} [id] - element id
+ * @param {string} [prefix=RichFaces.Event.RICH_NAMESPACE] - namespace prefix or
+ * @return {string} namespace string
+ * */
// TODO: rename argument names
createNamespace : function(componentName, id, prefix) {
var a = [];
14 years, 9 months
JBoss Rich Faces SVN: r16667 - branches/community/3.3.X.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-03-25 10:13:23 -0400 (Thu, 25 Mar 2010)
New Revision: 16667
Modified:
branches/community/3.3.X/pom.xml
Log:
RFPL-324 - completed some additional updates to the pom.xml
Modified: branches/community/3.3.X/pom.xml
===================================================================
--- branches/community/3.3.X/pom.xml 2010-03-25 02:21:48 UTC (rev 16666)
+++ branches/community/3.3.X/pom.xml 2010-03-25 14:13:23 UTC (rev 16667)
@@ -143,7 +143,7 @@
</pluginRepositories>
<distributionManagement>
<downloadUrl>
- http://labs.jboss.com/portal/jbossrichfaces/downloads
+ http://www.jboss.org/richfaces/download
</downloadUrl>
<repository>
<id>repository.jboss.org</id>
@@ -168,11 +168,12 @@
<id>jbalunas</id>
<name>Jay Balunas</name>
<email>jbalunas(a)redhat.com</email>
- <organization>RedHat Inc.</organization>
+ <organization>JBoss, by RedHat Inc.</organization>
+ <organizationUrl>http://www.jboss.org</organizationUrl>
<roles>
<role>lead</role>
</roles>
- <timezone>+5</timezone>
+ <timezone>-5</timezone>
</developer>
<developer>
<id>alexsmirnov</id>
@@ -184,7 +185,7 @@
<role>architect</role>
<role>developer</role>
</roles>
- <timezone>-3</timezone>
+ <timezone>-8</timezone>
</developer>
<developer>
<id>nbelayevsky</id>
@@ -196,7 +197,7 @@
<role>architect</role>
<role>developer</role>
</roles>
- <timezone>-2</timezone>
+ <timezone>+2</timezone>
</developer>
<developer>
<id>kmishin</id>
@@ -207,7 +208,7 @@
<roles>
<role>developer</role>
</roles>
- <timezone>-2</timezone>
+ <timezone>+2</timezone>
</developer>
<developer>
<id>abelevich</id>
@@ -218,7 +219,7 @@
<roles>
<role>developer</role>
</roles>
- <timezone>-2</timezone>
+ <timezone>+2</timezone>
</developer>
<developer>
<id>pyaschenko</id>
@@ -229,7 +230,7 @@
<roles>
<role>developer</role>
</roles>
- <timezone>-2</timezone>
+ <timezone>+2</timezone>
</developer>
<developer>
<id>amarkhel</id>
@@ -240,7 +241,7 @@
<roles>
<role>developer</role>
</roles>
- <timezone>-2</timezone>
+ <timezone>+2</timezone>
</developer>
<developer>
<id>akolonitsky</id>
@@ -251,7 +252,7 @@
<roles>
<role>developer</role>
</roles>
- <timezone>-2</timezone>
+ <timezone>+2</timezone>
</developer>
<developer>
<id>ishaikovsky</id>
@@ -262,7 +263,7 @@
<roles>
<role>developer</role>
</roles>
- <timezone>-2</timezone>
+ <timezone>+2</timezone>
</developer>
</developers>
<licenses>
@@ -276,9 +277,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk</developerConnection>
- <url>https://svn.jboss.org/repos/richfaces/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/community/3.3.X</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/community/3.3.X</developerConnection>
+ <url>https://svn.jboss.org/repos/richfaces/branches/community/3.3.X</url>
</scm>
<profiles>
<profile>
14 years, 9 months
JBoss Rich Faces SVN: r16666 - in branches/community/3.3.X/docs/userguide/en/src/main: resources/images and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-03-24 22:21:48 -0400 (Wed, 24 Mar 2010)
New Revision: 16666
Added:
branches/community/3.3.X/docs/userguide/en/src/main/resources/images/lc.png
Modified:
branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
Log:
Fixed incorrect diagram RFPL-490
Modified: branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-03-24 19:42:07 UTC (rev 16665)
+++ branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-03-25 02:21:48 UTC (rev 16666)
@@ -24,7 +24,7 @@
<title>Request Processing flow</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newpic1.png" scalefit="1"/>
+ <imagedata fileref="images/lc.png" scalefit="1"/>
</imageobject>
</mediaobject>
</figure>
Added: branches/community/3.3.X/docs/userguide/en/src/main/resources/images/lc.png
===================================================================
(Binary files differ)
Property changes on: branches/community/3.3.X/docs/userguide/en/src/main/resources/images/lc.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
14 years, 9 months
JBoss Rich Faces SVN: r16665 - root/cdk/trunk/plugins.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-03-24 15:42:07 -0400 (Wed, 24 Mar 2010)
New Revision: 16665
Removed:
root/cdk/trunk/plugins/maven-resource-dependency-plugin/
Log:
maven-resource-dependency-plugin moved to sandbox
14 years, 9 months
JBoss Rich Faces SVN: r16664 - root/cdk-sandbox/trunk.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-03-24 15:41:28 -0400 (Wed, 24 Mar 2010)
New Revision: 16664
Added:
root/cdk-sandbox/trunk/maven-resource-dependency-plugin/
Log:
maven-resource-dependency-plugin moved to sandbox
Copied: root/cdk-sandbox/trunk/maven-resource-dependency-plugin (from rev 16662, root/cdk/trunk/plugins/maven-resource-dependency-plugin)
14 years, 9 months
JBoss Rich Faces SVN: r16663 - in tags: 3.3.3.Final and 222 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-03-24 13:46:58 -0400 (Wed, 24 Mar 2010)
New Revision: 16663
Added:
tags/3.3.3.Final/
Modified:
tags/3.3.3.Final/cdk/generator/pom.xml
tags/3.3.3.Final/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.3.Final/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.Final/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.3.Final/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.Final/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.3.Final/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.Final/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.3.Final/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.Final/cdk/maven-archetype-theme/pom.xml
tags/3.3.3.Final/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.Final/cdk/maven-cdk-plugin/pom.xml
tags/3.3.3.Final/cdk/maven-javascript-plugin/pom.xml
tags/3.3.3.Final/cdk/maven-resource-dependency-plugin/pom.xml
tags/3.3.3.Final/cdk/pom.xml
tags/3.3.3.Final/cdk/richfaces-facelets/pom.xml
tags/3.3.3.Final/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.Final/docs/cdkguide/en/pom.xml
tags/3.3.3.Final/docs/cdkguide/pom.xml
tags/3.3.3.Final/docs/common-resources/en/pom.xml
tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
tags/3.3.3.Final/docs/common-resources/pom.xml
tags/3.3.3.Final/docs/faq/en/pom.xml
tags/3.3.3.Final/docs/faq/pom.xml
tags/3.3.3.Final/docs/highlight/pom.xml
tags/3.3.3.Final/docs/migrationguide/en/pom.xml
tags/3.3.3.Final/docs/migrationguide/pom.xml
tags/3.3.3.Final/docs/photo_album_app_guide/en/pom.xml
tags/3.3.3.Final/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml
tags/3.3.3.Final/docs/photo_album_app_guide/pom.xml
tags/3.3.3.Final/docs/pom.xml
tags/3.3.3.Final/docs/userguide/en/pom.xml
tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
tags/3.3.3.Final/docs/userguide/pom.xml
tags/3.3.3.Final/examples/photoalbum/assembly/pom.xml
tags/3.3.3.Final/examples/photoalbum/pom.xml
tags/3.3.3.Final/examples/photoalbum/source/ear/pom.xml
tags/3.3.3.Final/examples/photoalbum/source/ejb/pom.xml
tags/3.3.3.Final/examples/photoalbum/source/pom.xml
tags/3.3.3.Final/examples/photoalbum/source/web/pom.xml
tags/3.3.3.Final/examples/photoalbum/tests/pom.xml
tags/3.3.3.Final/extensions/gwt/pom.xml
tags/3.3.3.Final/extensions/pom.xml
tags/3.3.3.Final/extensions/seam/pom.xml
tags/3.3.3.Final/extensions/trinidad/pom.xml
tags/3.3.3.Final/framework/api/pom.xml
tags/3.3.3.Final/framework/impl/pom.xml
tags/3.3.3.Final/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.3.3.Final/framework/jsf-test/pom.xml
tags/3.3.3.Final/framework/pom.xml
tags/3.3.3.Final/framework/test/pom.xml
tags/3.3.3.Final/pom.xml
tags/3.3.3.Final/samples/beanValidatorSample/pom.xml
tags/3.3.3.Final/samples/calendar-sample/pom.xml
tags/3.3.3.Final/samples/colorPickerDemo/pom.xml
tags/3.3.3.Final/samples/columnsDemo/pom.xml
tags/3.3.3.Final/samples/combobox-sample/pom.xml
tags/3.3.3.Final/samples/contextMenuDemo/pom.xml
tags/3.3.3.Final/samples/createProject.sh
tags/3.3.3.Final/samples/darkX/pom.xml
tags/3.3.3.Final/samples/dataFilterSliderDemo/pom.xml
tags/3.3.3.Final/samples/dataTableDemo/pom.xml
tags/3.3.3.Final/samples/datascroller-sample/pom.xml
tags/3.3.3.Final/samples/dragDropDemo/pom.xml
tags/3.3.3.Final/samples/dropdownmenu-sample/pom.xml
tags/3.3.3.Final/samples/editor-sample/pom.xml
tags/3.3.3.Final/samples/editorSeam-sample/pom.xml
tags/3.3.3.Final/samples/effect-sample/pom.xml
tags/3.3.3.Final/samples/extendedDataTable-sample/pom.xml
tags/3.3.3.Final/samples/fileUploadDemo/pom.xml
tags/3.3.3.Final/samples/functions-demo/pom.xml
tags/3.3.3.Final/samples/glassX/pom.xml
tags/3.3.3.Final/samples/gmap-sample/pom.xml
tags/3.3.3.Final/samples/hotKey-sample/pom.xml
tags/3.3.3.Final/samples/inplaceInput-sample/pom.xml
tags/3.3.3.Final/samples/inplaceSelect-sample/pom.xml
tags/3.3.3.Final/samples/inputNumberSliderDemo/pom.xml
tags/3.3.3.Final/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.3.Final/samples/jQuery-sample/pom.xml
tags/3.3.3.Final/samples/jira-data/pom.xml
tags/3.3.3.Final/samples/laguna/pom.xml
tags/3.3.3.Final/samples/layout-sample/pom.xml
tags/3.3.3.Final/samples/listShuttleDemo/pom.xml
tags/3.3.3.Final/samples/local-value-demo/pom.xml
tags/3.3.3.Final/samples/mediaOutput/pom.xml
tags/3.3.3.Final/samples/modalpanel-sample/pom.xml
tags/3.3.3.Final/samples/orderingListDemo/pom.xml
tags/3.3.3.Final/samples/panel-sample/pom.xml
tags/3.3.3.Final/samples/panelbar-sample/pom.xml
tags/3.3.3.Final/samples/panelmenu-sample/pom.xml
tags/3.3.3.Final/samples/pickList-sample/pom.xml
tags/3.3.3.Final/samples/pom.xml
tags/3.3.3.Final/samples/progressBarDemo/pom.xml
tags/3.3.3.Final/samples/queue-sample/pom.xml
tags/3.3.3.Final/samples/rich-message-demo/pom.xml
tags/3.3.3.Final/samples/richfaces-art-datatable/pom.xml
tags/3.3.3.Final/samples/richfaces-demo/functional-test/pom.xml
tags/3.3.3.Final/samples/richfaces-demo/pom.xml
tags/3.3.3.Final/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.3.Final/samples/richfaces-ear-demo/pom.xml
tags/3.3.3.Final/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.3.Final/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.3.Final/samples/scrollableDataTableDemo/pom.xml
tags/3.3.3.Final/samples/seamEAR/ear/pom.xml
tags/3.3.3.Final/samples/seamEAR/ejbs/pom.xml
tags/3.3.3.Final/samples/seamEAR/pom.xml
tags/3.3.3.Final/samples/seamEAR/primary-source/pom.xml
tags/3.3.3.Final/samples/seamEAR/projects/logging/pom.xml
tags/3.3.3.Final/samples/seamEAR/projects/pom.xml
tags/3.3.3.Final/samples/seamEAR/wars/pom.xml
tags/3.3.3.Final/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.3.Final/samples/seamIntegration/pom.xml
tags/3.3.3.Final/samples/separator-sample/pom.xml
tags/3.3.3.Final/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.3.Final/samples/skins/pom.xml
tags/3.3.3.Final/samples/sortingFilteringDemo/pom.xml
tags/3.3.3.Final/samples/state-sample/pom.xml
tags/3.3.3.Final/samples/stdcomponents-sample/pom.xml
tags/3.3.3.Final/samples/suggestionbox-sample/pom.xml
tags/3.3.3.Final/samples/tabPanelDemo/pom.xml
tags/3.3.3.Final/samples/themes/pom.xml
tags/3.3.3.Final/samples/togglePanel-sample/pom.xml
tags/3.3.3.Final/samples/tomahawkCompability/pom.xml
tags/3.3.3.Final/samples/toolBarDemo/pom.xml
tags/3.3.3.Final/samples/tooltip-sample/pom.xml
tags/3.3.3.Final/samples/tree-demo/pom.xml
tags/3.3.3.Final/samples/treeModelDemo/pom.xml
tags/3.3.3.Final/samples/violetRays/pom.xml
tags/3.3.3.Final/samples/virtualEarth-sample/pom.xml
tags/3.3.3.Final/sandbox/api/pom.xml
tags/3.3.3.Final/sandbox/cdk/pom.xml
tags/3.3.3.Final/sandbox/impl/pom.xml
tags/3.3.3.Final/sandbox/pom.xml
tags/3.3.3.Final/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.3.Final/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.3.Final/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.3.Final/sandbox/samples/maven-rd-plugin-sample/pom.xml
tags/3.3.3.Final/sandbox/samples/panel2-sample/pom.xml
tags/3.3.3.Final/sandbox/samples/pom.xml
tags/3.3.3.Final/sandbox/samples/rex-demo/pom.xml
tags/3.3.3.Final/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.3.Final/sandbox/ui/create.bat
tags/3.3.3.Final/sandbox/ui/create.sh
tags/3.3.3.Final/sandbox/ui/dialog-window/pom.xml
tags/3.3.3.Final/sandbox/ui/editorOld/pom.xml
tags/3.3.3.Final/sandbox/ui/panel2/pom.xml
tags/3.3.3.Final/sandbox/ui/pom.xml
tags/3.3.3.Final/sandbox/ui/rex-button/pom.xml
tags/3.3.3.Final/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.3.Final/sandbox/ui/rex-resizable/pom.xml
tags/3.3.3.Final/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.3.Final/sandbox/ui/sortableHeader/pom.xml
tags/3.3.3.Final/sandbox/ui/treeTable/pom.xml
tags/3.3.3.Final/test-applications/ajaxTest/pom.xml
tags/3.3.3.Final/test-applications/automator/pom.xml
tags/3.3.3.Final/test-applications/facelets/pom.xml
tags/3.3.3.Final/test-applications/jsp/pom.xml
tags/3.3.3.Final/test-applications/pom.xml
tags/3.3.3.Final/test-applications/regression-test/pom.xml
tags/3.3.3.Final/test-applications/regressionArea/pom.xml
tags/3.3.3.Final/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.3.Final/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.3.Final/test-applications/regressionArea/regressionArea-tests/pom.xml
tags/3.3.3.Final/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.3.Final/test-applications/richfaces-docs/pom.xml
tags/3.3.3.Final/test-applications/seamApp/pom.xml
tags/3.3.3.Final/test-applications/seleniumTest/pom.xml
tags/3.3.3.Final/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.3.Final/test-applications/seleniumTest/samples/pom.xml
tags/3.3.3.Final/test-applications/test-jsp/pom.xml
tags/3.3.3.Final/ui/assembly/pom.xml
tags/3.3.3.Final/ui/beanValidator/pom.xml
tags/3.3.3.Final/ui/calendar/pom.xml
tags/3.3.3.Final/ui/colorPicker/pom.xml
tags/3.3.3.Final/ui/columns/pom.xml
tags/3.3.3.Final/ui/combobox/pom.xml
tags/3.3.3.Final/ui/componentControl/pom.xml
tags/3.3.3.Final/ui/contextMenu/pom.xml
tags/3.3.3.Final/ui/core/pom.xml
tags/3.3.3.Final/ui/create.bat
tags/3.3.3.Final/ui/dataFilterSlider/pom.xml
tags/3.3.3.Final/ui/dataTable/pom.xml
tags/3.3.3.Final/ui/datascroller/pom.xml
tags/3.3.3.Final/ui/drag-drop/pom.xml
tags/3.3.3.Final/ui/dropdown-menu/pom.xml
tags/3.3.3.Final/ui/editor/pom.xml
tags/3.3.3.Final/ui/effect/pom.xml
tags/3.3.3.Final/ui/extendedDataTable/pom.xml
tags/3.3.3.Final/ui/fileUpload/pom.xml
tags/3.3.3.Final/ui/functions/pom.xml
tags/3.3.3.Final/ui/gmap/pom.xml
tags/3.3.3.Final/ui/hotKey/pom.xml
tags/3.3.3.Final/ui/inplaceInput/pom.xml
tags/3.3.3.Final/ui/inplaceSelect/pom.xml
tags/3.3.3.Final/ui/inputnumber-slider/pom.xml
tags/3.3.3.Final/ui/inputnumber-spinner/pom.xml
tags/3.3.3.Final/ui/insert/pom.xml
tags/3.3.3.Final/ui/jQuery/pom.xml
tags/3.3.3.Final/ui/layout/pom.xml
tags/3.3.3.Final/ui/listShuttle/pom.xml
tags/3.3.3.Final/ui/menu-components/pom.xml
tags/3.3.3.Final/ui/message/pom.xml
tags/3.3.3.Final/ui/modal-panel/pom.xml
tags/3.3.3.Final/ui/orderingList/pom.xml
tags/3.3.3.Final/ui/paint2D/pom.xml
tags/3.3.3.Final/ui/panel/pom.xml
tags/3.3.3.Final/ui/panelbar/pom.xml
tags/3.3.3.Final/ui/panelmenu/pom.xml
tags/3.3.3.Final/ui/pickList/pom.xml
tags/3.3.3.Final/ui/pom.xml
tags/3.3.3.Final/ui/progressBAR/pom.xml
tags/3.3.3.Final/ui/scrollableDataTable/pom.xml
tags/3.3.3.Final/ui/separator/pom.xml
tags/3.3.3.Final/ui/simpleTogglePanel/pom.xml
tags/3.3.3.Final/ui/spacer/pom.xml
tags/3.3.3.Final/ui/state/pom.xml
tags/3.3.3.Final/ui/suggestionbox/pom.xml
tags/3.3.3.Final/ui/tabPanel/pom.xml
tags/3.3.3.Final/ui/togglePanel/pom.xml
tags/3.3.3.Final/ui/toolBar/pom.xml
tags/3.3.3.Final/ui/tooltip/pom.xml
tags/3.3.3.Final/ui/tree/pom.xml
tags/3.3.3.Final/ui/treeModel/pom.xml
tags/3.3.3.Final/ui/treeTable/pom.xml
tags/3.3.3.Final/ui/virtualEarth/pom.xml
Log:
create tag for 3.3.3.Final
Copied: tags/3.3.3.Final (from rev 16662, branches/community/3.3.X)
Modified: tags/3.3.3.Final/cdk/generator/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/generator/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/generator/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: tags/3.3.3.Final/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-archetype-jsf-component/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.3.Final/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-archetype-jsfwebapp/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -30,12 +30,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.3.Final/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-archetype-plug-n-skin/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.3.Final/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.3.Final/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-archetype-seam-app/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.3-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.3.Final</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.3.Final/cdk/maven-archetype-theme/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-theme/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-archetype-theme/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: tags/3.3.3.Final/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<scope>provided</scope>
</dependency>
Modified: tags/3.3.3.Final/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-cdk-plugin/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-cdk-plugin/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.3.Final/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-javascript-plugin/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-javascript-plugin/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.3.Final/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/maven-resource-dependency-plugin/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>maven-resource-dependency-plugin</name>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.Final/cdk/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.3.Final/cdk/richfaces-facelets/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/richfaces-facelets/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/richfaces-facelets/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,13 +4,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>richfaces-facelets</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>maven-archetype-rf-facelets</name>
<packaging>maven-archetype</packaging>
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<build>
Modified: tags/3.3.3.Final/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -28,7 +28,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.3.Final/docs/cdkguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/en/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/cdkguide/en/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.3.Final/docs/cdkguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/cdkguide/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/cdkguide/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.3.Final/docs/common-resources/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/common-resources/en/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>jar</packaging>
<name>Documentation common resources (${translation})</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<extensions>
<extension>
Modified: tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: tags/3.3.3.Final/docs/common-resources/pom.xml
===================================================================
--- branches/community/3.3.X/docs/common-resources/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/common-resources/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.3.Final/docs/faq/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/faq/en/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/faq/en/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
<build>
Modified: tags/3.3.3.Final/docs/faq/pom.xml
===================================================================
--- branches/community/3.3.X/docs/faq/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/faq/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<!--repositories>
Modified: tags/3.3.3.Final/docs/highlight/pom.xml
===================================================================
--- branches/community/3.3.X/docs/highlight/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/highlight/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.3.Final/docs/migrationguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/migrationguide/en/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/migrationguide/en/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
<build>
Modified: tags/3.3.3.Final/docs/migrationguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/migrationguide/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/migrationguide/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.3.Final/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/en/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/photo_album_app_guide/en/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: tags/3.3.3.Final/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -74,7 +74,7 @@
<para><code>mvn archetype:generate </code></para>
<para><code>-DarchetypeGroupId=org.richfaces.cdk </code></para>
<para><code>-DarchetypeArtifactId=maven-archetype-seam-app </code></para>
- <para><code>-DarchetypeVersion=3.3.3-SNAPSHOT </code></para>
+ <para><code>-DarchetypeVersion=3.3.3.Final </code></para>
<para><code>-DgroupId=[Your_project_group_id] </code></para>
<para><code>-DartifactId=[Your_project_name] </code></para>
<para>Some project preferences such as <property>RichFaces</property> components version or Jboss server version and others could be customized in the root <code>.pom</code> file </para>
Modified: tags/3.3.3.Final/docs/photo_album_app_guide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/photo_album_app_guide/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/photo_album_app_guide/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: tags/3.3.3.Final/docs/pom.xml
===================================================================
--- branches/community/3.3.X/docs/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.3.Final/docs/userguide/en/pom.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/userguide/en/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -335,7 +335,7 @@
<para>Now you have everything to create the project using the "maven-archetype-jsfwebapp" archetype. Create a folder that will house your project and run the this command in it:</para>
<programlisting role="XML" ><![CDATA[...
-mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.docs.richfaces -DartifactId=jsf-app
+mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.3.Final -DgroupId=org.docs.richfaces -DartifactId=jsf-app
...]]></programlisting>
@@ -461,17 +461,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
...]]></programlisting>
Modified: tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3839,7 +3839,7 @@
<listitem>
<para>
<code>archetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.3-SNAPSHOT"</code>
+ <code>"3.3.3.Final"</code>
</para>
</listitem>
<listitem>
@@ -4080,7 +4080,7 @@
follow the steps described in the previous section.</para>
<para>This command will be used to create a template of the new skin project. </para>
<programlisting role="XML"><![CDATA[
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.3-SNAPSHOT -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.3.Final -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
]]></programlisting>
<para> Now you can browse the "P-n-S" folder to view what files and
folders were created there. </para>
Modified: tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -48,7 +48,7 @@
RichFaces components are available on<ulink
url="http://livedemo.exadel.com/richfaces-demo/">RichFaces Live Demo</ulink>.</para>
<para>War file of a nightly build can be found on the <ulink
- url="http://snapshots.jboss.org/maven2/org/richfaces/ui/richfaces-ui/3.3.3-SNA..."
+ url="http://snapshots.jboss.org/maven2/org/richfaces/ui/richfaces-ui/3.3.3.Final/"
>Snapshots repository</ulink>.</para>
<para>Source Code (SVN) can be found in<ulink
url="http://anonsvn.jboss.org/repos/richfaces/trunk/samples/richfaces-demo/"
Modified: tags/3.3.3.Final/docs/userguide/pom.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/docs/userguide/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.3.Final/examples/photoalbum/assembly/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/assembly/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/examples/photoalbum/assembly/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.Final/examples/photoalbum/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/examples/photoalbum/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: tags/3.3.3.Final/examples/photoalbum/source/ear/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/ear/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/examples/photoalbum/source/ear/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.Final/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/ejb/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/examples/photoalbum/source/ejb/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.Final/examples/photoalbum/source/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/examples/photoalbum/source/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<distributionManagement>
<downloadUrl>
Modified: tags/3.3.3.Final/examples/photoalbum/source/web/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/source/web/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/examples/photoalbum/source/web/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.Final/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/community/3.3.X/examples/photoalbum/tests/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/examples/photoalbum/tests/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.3.Final/extensions/gwt/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/gwt/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/extensions/gwt/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.3.Final/extensions/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/extensions/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.3.Final/extensions/seam/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/seam/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/extensions/seam/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.3.Final/extensions/trinidad/pom.xml
===================================================================
--- branches/community/3.3.X/extensions/trinidad/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/extensions/trinidad/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.3.Final/framework/api/pom.xml
===================================================================
--- branches/community/3.3.X/framework/api/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/framework/api/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<dependencies>
<dependency>
Modified: tags/3.3.3.Final/framework/impl/pom.xml
===================================================================
--- branches/community/3.3.X/framework/impl/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/framework/impl/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>${classifiedArtifactId}</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<resources>
<resource>
@@ -294,7 +294,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-03-24 17:46:58 UTC (rev 16663)
@@ -37,7 +37,7 @@
/**
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "3-SNAPSHOT" ;
+ public static final String REVISION = "3.Final" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.3.3.Final/framework/jsf-test/pom.xml
===================================================================
--- branches/community/3.3.X/framework/jsf-test/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/framework/jsf-test/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<dependencies>
<dependency>
Modified: tags/3.3.3.Final/framework/pom.xml
===================================================================
--- branches/community/3.3.X/framework/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/framework/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
Modified: tags/3.3.3.Final/framework/test/pom.xml
===================================================================
--- branches/community/3.3.X/framework/test/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/framework/test/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,12 +3,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
Modified: tags/3.3.3.Final/pom.xml
===================================================================
--- branches/community/3.3.X/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>RichFaces project</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
Modified: tags/3.3.3.Final/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/beanValidatorSample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/beanValidatorSample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -34,7 +34,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.3-SNAPSHOT</version> </dependency>
+ <version>3.3.3.Final</version> </dependency>
-->
<dependency>
<groupId>org.slf4j</groupId>
@@ -50,12 +50,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.3.Final/samples/calendar-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/calendar-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/calendar-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/colorPickerDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/colorPickerDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/colorPickerDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -40,17 +40,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.3.Final/samples/columnsDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/columnsDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/columnsDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/combobox-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/combobox-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/combobox-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/contextMenuDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/contextMenuDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/createProject.sh
===================================================================
--- branches/community/3.3.X/samples/createProject.sh 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/createProject.sh 2010-03-24 17:46:58 UTC (rev 16663)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.3-SNAPSHOT -Dversion=3.3.3-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.3.Final -Dversion=3.3.3.Final -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: tags/3.3.3.Final/samples/darkX/pom.xml
===================================================================
--- branches/community/3.3.X/samples/darkX/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/darkX/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dataFilterSliderDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/dataFilterSliderDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/dataTableDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dataTableDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/dataTableDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/datascroller-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/datascroller-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/datascroller-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/dragDropDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dragDropDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/dragDropDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/dropdownmenu-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/dropdownmenu-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/editor-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/editor-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/editor-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.Final/samples/editorSeam-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/editorSeam-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/editorSeam-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.Final/samples/effect-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/effect-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/effect-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/extendedDataTable-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/extendedDataTable-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.Final/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/fileUploadDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/fileUploadDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/functions-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/functions-demo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/functions-demo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/glassX/pom.xml
===================================================================
--- branches/community/3.3.X/samples/glassX/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/glassX/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/samples/gmap-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/gmap-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/gmap-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/hotKey-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/hotKey-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/hotKey-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.Final/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inplaceInput-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/inplaceInput-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inplaceSelect-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/inplaceSelect-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inputNumberSliderDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/inputNumberSliderDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/inputNumberSpinnerDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/jQuery-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/jQuery-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/jQuery-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/jira-data/pom.xml
===================================================================
--- branches/community/3.3.X/samples/jira-data/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/jira-data/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/laguna/pom.xml
===================================================================
--- branches/community/3.3.X/samples/laguna/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/laguna/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.3.Final/samples/layout-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/layout-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/layout-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>layout-sample</artifactId>
<packaging>war</packaging>
<name>layout Maven Webapp</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,17 +34,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.3.Final/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/listShuttleDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/listShuttleDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/local-value-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/local-value-demo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/local-value-demo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/mediaOutput/pom.xml
===================================================================
--- branches/community/3.3.X/samples/mediaOutput/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/mediaOutput/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,11 +5,11 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces</groupId>
<artifactId>mediaOutput</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>war</packaging>
<name>mediaOutput Maven Webapp</name>
<build>
Modified: tags/3.3.3.Final/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/modalpanel-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/modalpanel-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/orderingListDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/orderingListDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/orderingListDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/panel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panel-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/panel-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/panelbar-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panelbar-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/panelbar-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/panelmenu-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/panelmenu-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/pickList-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/pickList-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/pickList-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/pom.xml
===================================================================
--- branches/community/3.3.X/samples/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.Final/samples/progressBarDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/progressBarDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/progressBarDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/queue-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/queue-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/queue-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.3.Final/samples/rich-message-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/rich-message-demo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/rich-message-demo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-art-datatable/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/richfaces-art-datatable/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/richfaces-demo/functional-test/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/functional-test/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/richfaces-demo/functional-test/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.richfaces.integrationTest</groupId>
<artifactId>functional-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>jar</packaging>
<name>selenium-test</name>
<url>http://maven.apache.org</url>
Modified: tags/3.3.3.Final/samples/richfaces-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/richfaces-demo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -246,22 +246,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -360,12 +360,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: tags/3.3.3.Final/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/richfaces-ear-demo/ejb/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.3.Final/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/richfaces-ear-demo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.3.Final/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/community/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/richfaces-ear-demo/webapp/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.3.Final/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/scrollableDataTableDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/scrollableDataTableDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.3.Final/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/ear/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/seamEAR/ear/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.3.Final/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/ejbs/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/seamEAR/ejbs/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.3.Final/samples/seamEAR/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/seamEAR/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/primary-source/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/seamEAR/primary-source/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.3.Final/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/projects/logging/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/seamEAR/projects/logging/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
</project>
Modified: tags/3.3.3.Final/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/projects/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/seamEAR/projects/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.3.Final/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/wars/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/seamEAR/wars/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.3.Final/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/seamEAR/wars/seamWebapp/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.3.Final/samples/seamIntegration/pom.xml
===================================================================
--- branches/community/3.3.X/samples/seamIntegration/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/seamIntegration/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/separator-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/separator-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/separator-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/simpleTogglePanel-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/skins/pom.xml
===================================================================
--- branches/community/3.3.X/samples/skins/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/skins/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/sortingFilteringDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/sortingFilteringDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency-->
<dependency>
Modified: tags/3.3.3.Final/samples/state-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/state-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/state-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/stdcomponents-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/stdcomponents-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/suggestionbox-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/suggestionbox-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tabPanelDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/tabPanelDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/themes/pom.xml
===================================================================
--- branches/community/3.3.X/samples/themes/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/themes/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.Final/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/togglePanel-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/togglePanel-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tomahawkCompability/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/tomahawkCompability/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/toolBarDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/toolBarDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/toolBarDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/tooltip-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tooltip-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/tooltip-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/tree-demo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/tree-demo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/tree-demo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/treeModelDemo/pom.xml
===================================================================
--- branches/community/3.3.X/samples/treeModelDemo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/treeModelDemo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/samples/violetRays/pom.xml
===================================================================
--- branches/community/3.3.X/samples/violetRays/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/violetRays/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.Final/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/community/3.3.X/samples/virtualEarth-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/samples/virtualEarth-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.3.Final/sandbox/api/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/api/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/api/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.3.Final/sandbox/cdk/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/cdk/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/cdk/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.3.Final/sandbox/impl/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/impl/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/impl/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.3.Final/sandbox/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.Final/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/samples/dialog-window-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.Final/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/samples/editorOld-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.Final/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/samples/fileUploadPOC/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.Final/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk.sandbox</groupId>
<artifactId>maven-rd-plugin-sample</artifactId>
<packaging>war</packaging>
<name>maven-rd-plugin-sample Maven Webapp</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<configuration>
<scriptFilePath>scripts/custom-dependencies.js</scriptFilePath>
<styleFilePath>css/custom-dependencies.xcss</styleFilePath>
@@ -59,7 +59,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/panel2-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/samples/panel2-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.Final/sandbox/samples/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/samples/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.Final/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/rex-demo/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/samples/rex-demo/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
Modified: tags/3.3.3.Final/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.3.Final/sandbox/ui/create.bat
===================================================================
--- branches/community/3.3.X/sandbox/ui/create.bat 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/create.bat 2010-03-24 17:46:58 UTC (rev 16663)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.Final -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.3.Final/sandbox/ui/create.sh
===================================================================
--- branches/community/3.3.X/sandbox/ui/create.sh 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/create.sh 2010-03-24 17:46:58 UTC (rev 16663)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.Final -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: tags/3.3.3.Final/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/dialog-window/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/dialog-window/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.3.Final/sandbox/ui/editorOld/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/editorOld/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/editorOld/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/panel2/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/panel2/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/sandbox/ui/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.3.Final/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-button/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/rex-button/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/rex-messageBox/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/rex-resizable/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/rex-resizable/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/simpleTogglePanel2/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/sortableHeader/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/sortableHeader/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/community/3.3.X/sandbox/ui/treeTable/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/sandbox/ui/treeTable/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/test-applications/ajaxTest/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/ajaxTest/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/ajaxTest/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.3.Final/test-applications/automator/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/automator/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/automator/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.Final/test-applications/facelets/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/facelets/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/facelets/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.Final/test-applications/jsp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/jsp/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/jsp/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.Final/test-applications/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.3-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.3.Final</rfVersion>
</properties>
<modules>
Modified: tags/3.3.3.Final/test-applications/regression-test/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regression-test/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/regression-test/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,7 +5,7 @@
<artifactId>regression-test</artifactId>
<name>Regression test application</name>
<packaging>war</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<description>Application for manual testing of regressions.</description>
<url>http://www.jboss.org/richfaces</url>
<inceptionYear>2009</inceptionYear>
Modified: tags/3.3.3.Final/test-applications/regressionArea/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/regressionArea/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -36,7 +36,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.3-SNAPSHOT</richversion>
+ <richversion>3.3.3.Final</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: tags/3.3.3.Final/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.3.Final/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.3.Final/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: tags/3.3.3.Final/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/regressionArea/regressionArea-web/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.3.Final/test-applications/richfaces-docs/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/richfaces-docs/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/richfaces-docs/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -204,7 +204,7 @@
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
@@ -214,7 +214,7 @@
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
@@ -224,7 +224,7 @@
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
Modified: tags/3.3.3.Final/test-applications/seamApp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seamApp/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/seamApp/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.3-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.3.Final</rfVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.2.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.2.GA/jboss-4.2.2.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.3.Final/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/seleniumTest/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -233,7 +233,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.3.Final/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/seleniumTest/richfaces/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: tags/3.3.3.Final/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/seleniumTest/samples/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/seleniumTest/samples/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.3.Final/test-applications/test-jsp/pom.xml
===================================================================
--- branches/community/3.3.X/test-applications/test-jsp/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/test-applications/test-jsp/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.3.Final/ui/assembly/pom.xml
===================================================================
--- branches/community/3.3.X/ui/assembly/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/assembly/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
@@ -435,17 +435,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl-jsf2</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</profile>
Modified: tags/3.3.3.Final/ui/beanValidator/pom.xml
===================================================================
--- branches/community/3.3.X/ui/beanValidator/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/beanValidator/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,19 +4,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: tags/3.3.3.Final/ui/calendar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/calendar/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/calendar/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/ui/colorPicker/pom.xml
===================================================================
--- branches/community/3.3.X/ui/colorPicker/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/colorPicker/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -12,7 +12,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/columns/pom.xml
===================================================================
--- branches/community/3.3.X/ui/columns/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/columns/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.3.Final/ui/combobox/pom.xml
===================================================================
--- branches/community/3.3.X/ui/combobox/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/combobox/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.Final/ui/componentControl/pom.xml
===================================================================
--- branches/community/3.3.X/ui/componentControl/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/componentControl/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/contextMenu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/contextMenu/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/contextMenu/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/ui/core/pom.xml
===================================================================
--- branches/community/3.3.X/ui/core/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/core/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/create.bat
===================================================================
--- branches/community/3.3.X/ui/create.bat 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/create.bat 2010-03-24 17:46:58 UTC (rev 16663)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.Final -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.3.Final/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dataFilterSlider/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/dataFilterSlider/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/dataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dataTable/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/dataTable/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.3.Final/ui/datascroller/pom.xml
===================================================================
--- branches/community/3.3.X/ui/datascroller/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/datascroller/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/drag-drop/pom.xml
===================================================================
--- branches/community/3.3.X/ui/drag-drop/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/drag-drop/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.3.Final/ui/dropdown-menu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/dropdown-menu/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/dropdown-menu/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/ui/editor/pom.xml
===================================================================
--- branches/community/3.3.X/ui/editor/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/editor/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.Final/ui/effect/pom.xml
===================================================================
--- branches/community/3.3.X/ui/effect/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/effect/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/extendedDataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/extendedDataTable/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/extendedDataTable/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,40 +64,40 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/ui/fileUpload/pom.xml
===================================================================
--- branches/community/3.3.X/ui/fileUpload/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/fileUpload/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/ui/functions/pom.xml
===================================================================
--- branches/community/3.3.X/ui/functions/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/functions/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/gmap/pom.xml
===================================================================
--- branches/community/3.3.X/ui/gmap/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/gmap/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/hotKey/pom.xml
===================================================================
--- branches/community/3.3.X/ui/hotKey/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/hotKey/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/inplaceInput/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inplaceInput/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/inplaceInput/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/ui/inplaceSelect/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inplaceSelect/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/inplaceSelect/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.Final/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inputnumber-slider/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/inputnumber-slider/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/community/3.3.X/ui/inputnumber-spinner/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/inputnumber-spinner/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.Final/ui/insert/pom.xml
===================================================================
--- branches/community/3.3.X/ui/insert/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/insert/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/jQuery/pom.xml
===================================================================
--- branches/community/3.3.X/ui/jQuery/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/jQuery/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/layout/pom.xml
===================================================================
--- branches/community/3.3.X/ui/layout/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/layout/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.Final/ui/listShuttle/pom.xml
===================================================================
--- branches/community/3.3.X/ui/listShuttle/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/listShuttle/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.3.Final/ui/menu-components/pom.xml
===================================================================
--- branches/community/3.3.X/ui/menu-components/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/menu-components/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/message/pom.xml
===================================================================
--- branches/community/3.3.X/ui/message/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/message/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/modal-panel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/modal-panel/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/modal-panel/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/orderingList/pom.xml
===================================================================
--- branches/community/3.3.X/ui/orderingList/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/orderingList/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/paint2D/pom.xml
===================================================================
--- branches/community/3.3.X/ui/paint2D/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/paint2D/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/panel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panel/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/panel/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.Final/ui/panelbar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panelbar/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/panelbar/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/panelmenu/pom.xml
===================================================================
--- branches/community/3.3.X/ui/panelmenu/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/panelmenu/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/pickList/pom.xml
===================================================================
--- branches/community/3.3.X/ui/pickList/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/pickList/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,13 +53,13 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
Modified: tags/3.3.3.Final/ui/pom.xml
===================================================================
--- branches/community/3.3.X/ui/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -187,12 +187,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
@@ -249,7 +249,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.3.Final/ui/progressBAR/pom.xml
===================================================================
--- branches/community/3.3.X/ui/progressBAR/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/progressBAR/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/scrollableDataTable/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/scrollableDataTable/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,12 +70,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/ui/separator/pom.xml
===================================================================
--- branches/community/3.3.X/ui/separator/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/separator/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.3.Final/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/simpleTogglePanel/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/simpleTogglePanel/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/spacer/pom.xml
===================================================================
--- branches/community/3.3.X/ui/spacer/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/spacer/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/state/pom.xml
===================================================================
--- branches/community/3.3.X/ui/state/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/state/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/suggestionbox/pom.xml
===================================================================
--- branches/community/3.3.X/ui/suggestionbox/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/suggestionbox/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/tabPanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tabPanel/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/tabPanel/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/togglePanel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/togglePanel/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/togglePanel/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/toolBar/pom.xml
===================================================================
--- branches/community/3.3.X/ui/toolBar/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/toolBar/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/tooltip/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tooltip/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/tooltip/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/tree/pom.xml
===================================================================
--- branches/community/3.3.X/ui/tree/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/tree/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/ui/treeModel/pom.xml
===================================================================
--- branches/community/3.3.X/ui/treeModel/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/treeModel/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.3.Final/ui/treeTable/pom.xml
===================================================================
--- branches/community/3.3.X/ui/treeTable/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/treeTable/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.3.Final/ui/virtualEarth/pom.xml
===================================================================
--- branches/community/3.3.X/ui/virtualEarth/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
+++ tags/3.3.3.Final/ui/virtualEarth/pom.xml 2010-03-24 17:46:58 UTC (rev 16663)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3-SNAPSHOT</version>
+ <version>3.3.3.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
14 years, 9 months
JBoss Rich Faces SVN: r16662 - branches/community/3.3.X/framework/impl.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-03-24 10:13:51 -0400 (Wed, 24 Mar 2010)
New Revision: 16662
Modified:
branches/community/3.3.X/framework/impl/pom.xml
Log:
https://jira.jboss.org/jira/browse/RF-8529
Modified: branches/community/3.3.X/framework/impl/pom.xml
===================================================================
--- branches/community/3.3.X/framework/impl/pom.xml 2010-03-24 01:56:01 UTC (rev 16661)
+++ branches/community/3.3.X/framework/impl/pom.xml 2010-03-24 14:13:51 UTC (rev 16662)
@@ -38,7 +38,7 @@
</goals>
<configuration>
<delimiters>
- <delimiter>\${classifiedArtifactId}</delimiter>
+ <delimiter>$\{classifiedArtifactId}</delimiter>
<delimiter>@</delimiter>
</delimiters>
<outputDirectory>${project.build.directory}</outputDirectory>
14 years, 9 months
JBoss Rich Faces SVN: r16661 - branches/community/3.3.X/framework/impl.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-03-23 21:56:01 -0400 (Tue, 23 Mar 2010)
New Revision: 16661
Modified:
branches/community/3.3.X/framework/impl/pom.xml
Log:
https://jira.jboss.org/jira/browse/RF-8529
Modified: branches/community/3.3.X/framework/impl/pom.xml
===================================================================
--- branches/community/3.3.X/framework/impl/pom.xml 2010-03-24 00:23:17 UTC (rev 16660)
+++ branches/community/3.3.X/framework/impl/pom.xml 2010-03-24 01:56:01 UTC (rev 16661)
@@ -26,11 +26,6 @@
<version>2.3</version>
</plugin>
<plugin>
- <!-- Necessary due to http://jira.codehaus.org/browse/MINSTALL-41 -->
- <artifactId>maven-install-plugin</artifactId>
- <version>2.3</version>
- </plugin>
- <plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.2</version>
<executions>
@@ -42,6 +37,10 @@
<goal>copy-resources</goal>
</goals>
<configuration>
+ <delimiters>
+ <delimiter>\${classifiedArtifactId}</delimiter>
+ <delimiter>@</delimiter>
+ </delimiters>
<outputDirectory>${project.build.directory}</outputDirectory>
<resources>
<resource>
@@ -56,65 +55,38 @@
</execution>
</executions>
</plugin>
- <plugin>
- <artifactId>maven-install-plugin</artifactId>
- <executions>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.4</version>
+ <executions>
+ <execution>
+ <id>add-source</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>add-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+ <source>${frameworkAdditionalSourceFolder}</source>
+ </sources>
+ </configuration>
+ </execution>
<execution>
- <!--
- Replaces the pom (with placeholders) in the repository with the
- pom without placeholders
- -->
- <id>overwrite-pom</id>
- <phase>install</phase>
+ <id>attach-artifacts</id>
+ <phase>package</phase>
<goals>
- <goal>install-file</goal>
+ <goal>attach-artifact</goal>
</goals>
<configuration>
- <file>${project.build.directory}/pom.xml</file>
- <pomFile>${project.build.directory}/pom.xml</pomFile>
+ <artifacts>
+ <artifact>
+ <file>${project.build.directory}/pom.xml</file>
+ <type>pom</type>
+ </artifact>
+ </artifacts>
</configuration>
</execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-deploy-plugin</artifactId>
- <executions>
- <execution>
- <!--
- Replaces the pom (with placeholders) in the repository with the
- pom without placeholders
- -->
- <id>deploy-pom</id>
- <phase>deploy</phase>
- <goals>
- <goal>deploy-file</goal>
- </goals>
- <configuration>
- <url>${project.distributionManagementArtifactRepository.url}</url>
- <repositoryId>${project.distributionManagementArtifactRepository.id}</repositoryId>
- <file>${project.build.directory}/pom.xml</file>
- <pomFile>${project.build.directory}/pom.xml</pomFile>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>1.4</version>
- <executions>
- <execution>
- <id>add-source</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-source</goal>
- </goals>
- <configuration>
- <sources>
- <source>${frameworkAdditionalSourceFolder}</source>
- </sources>
- </configuration>
- </execution>
</executions>
</plugin>
<plugin>
14 years, 9 months