JBoss Rich Faces SVN: r16744 - in root/ui-sandbox/trunk/components/tables/ui/src/main: java/org/richfaces/renderkit and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2010-04-07 13:48:00 -0400 (Wed, 07 Apr 2010)
New Revision: 16744
Added:
root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/subtable.js
Modified:
root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UISubTable.java
root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/SubTableRenderer.java
root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ToggleControlRendererBase.java
root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/toggler.js
root/ui-sandbox/trunk/components/tables/ui/src/main/templates/org/richfaces/renderkit/html/toggle-control.template.xml
Log:
start implement subTable expand collapse
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UISubTable.java
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UISubTable.java 2010-04-07 17:27:33 UTC (rev 16743)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UISubTable.java 2010-04-07 17:48:00 UTC (rev 16744)
@@ -22,6 +22,7 @@
package org.richfaces.component;
import javax.el.MethodExpression;
+import javax.faces.application.ResourceDependency;
import org.richfaces.event.ToggleListener;
@@ -30,6 +31,7 @@
*
*/
+@ResourceDependency(name = "subtable.js")
public class UISubTable extends UIDataTableBase implements Column, Expandable {
enum PropertyKeys {
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/SubTableRenderer.java
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/SubTableRenderer.java 2010-04-07 17:27:33 UTC (rev 16743)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/SubTableRenderer.java 2010-04-07 17:48:00 UTC (rev 16744)
@@ -1,7 +1,10 @@
package org.richfaces.renderkit;
import java.io.IOException;
+import java.text.MessageFormat;
+import java.util.HashMap;
import java.util.Iterator;
+import java.util.Map;
import javax.faces.component.UIColumn;
import javax.faces.component.UIComponent;
@@ -14,6 +17,8 @@
import org.richfaces.component.UISubTable;
public class SubTableRenderer extends AbstractTableRenderer {
+
+ private static final String SUBTABLE_SCRIPT = "new RichFaces.ui.SubTable(''{0}'', {1});";
@Override
public void encodeTableFacets(ResponseWriter writer, FacesContext context, UIDataTableBase dataTable)
@@ -61,10 +66,12 @@
}
@Override
- protected void doEncodeEnd(ResponseWriter writer, FacesContext context, UIComponent component) throws IOException {
+ protected void doEncodeEnd(ResponseWriter writer, FacesContext facesContext, UIComponent component) throws IOException {
UISubTable subTable = (UISubTable)component;
- encodeFooterFacet(writer, context, subTable);
- encodeTableBodyEnd(writer, context, subTable);
+ encodeFooterFacet(writer, facesContext, subTable);
+ encodeClientScript(writer, facesContext, subTable);
+ encodeTableBodyEnd(writer, facesContext, subTable);
+
}
@Override
@@ -79,12 +86,18 @@
}
@Override
- public void encodeClientScript(ResponseWriter writer, FacesContext context, UIDataTableBase component) {
- // TODO Auto-generated method stub
+ public void encodeClientScript(ResponseWriter writer, FacesContext facesContext, UIDataTableBase component) throws IOException {
+ UISubTable subTable = (UISubTable)component;
+ String id = subTable.getClientId(facesContext);
+ Map<String, Object> options = new HashMap<String, Object>();
+ String script = MessageFormat.format(SUBTABLE_SCRIPT, id, options);
+
+ writer.startElement(HTML.SCRIPT_ELEM, subTable);
+ writer.writeText(script, null);
+ writer.endElement(HTML.SCRIPT_ELEM);
}
-
-
+
@Override
public String getRowSkinClass() {
return "rich-subtable-row";
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ToggleControlRendererBase.java
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ToggleControlRendererBase.java 2010-04-07 17:27:33 UTC (rev 16743)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ToggleControlRendererBase.java 2010-04-07 17:48:00 UTC (rev 16744)
@@ -8,7 +8,6 @@
import javax.faces.application.ResourceDependencies;
import javax.faces.application.ResourceDependency;
import javax.faces.component.UIComponent;
-import javax.faces.component.UIForm;
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
@@ -29,14 +28,10 @@
public abstract class ToggleControlRendererBase extends RendererBase {
- private static final String MANAGER_SCRIPT = "RichFaces.ui.ToggleManager.addToggler(new RichFaces.ui.Toggle(''{0}'', {1}));";
- private static final String CLIENT_TOGGLE_SCRIPT = "RichFaces.ui.ToggleManager.clientToggle(''{0}'', {1});";
+ private static final String DATATABLE_TOGGLER_SCRIPT = "new RichFaces.ui.DataTableToggler(''{0}'', {1});";
- private static final String SERVER_TOGGLE_SCRIPT = "RichFaces.ui.ToggleManager.serverToggle(''{0}'', {1});";
- private static final String AJAX_TOGGLE_SCRIPT = "RichFaces.ui.ToggleManager.ajaxToggle(''{0}'', {1});";
-
private static final String DISPLAY_NONE = "display: none;";
private static final String EXPAND_STATE = "expand";
@@ -87,9 +82,9 @@
encodeControl(context, writer, toggleControl, switchType, expanded, false);
encodeControl(context, writer, toggleControl, switchType, !expanded, true);
- encodeHiddenInput(context, writer, toggleControl);
+// encodeHiddenInput(context, writer, toggleControl);
- String registerScript = MessageFormat.format(MANAGER_SCRIPT, toggleId, options);
+ String registerScript = MessageFormat.format(DATATABLE_TOGGLER_SCRIPT, toggleId, options);
writer.startElement(HTML.SCRIPT_ELEM, subTable);
writer.writeText(registerScript, null);
writer.endElement(HTML.SCRIPT_ELEM);
@@ -100,63 +95,56 @@
protected void encodeControl(FacesContext context, ResponseWriter writer, UIToggleControl control,
String switchType, boolean expanded, boolean visible) throws IOException {
String state = getState(expanded);
- String script = getScript(control, switchType, expanded);
-
String styleClass = getStyleClass(context, control);
String style = getStyle(context, control);
writer.startElement(HTML.SPAN_ELEM, control);
+
+ if (!visible) {
+ writer.writeAttribute(HTML.STYLE_ATTRIBUTE, DISPLAY_NONE, null);
+ }
+
+ writer.writeAttribute(HTML.ID_ATTRIBUTE, control.getClientId() + ":" + state, null);
writer.writeAttribute(HTML.CLASS_ATTRIBUTE, styleClass, null);
writer.writeAttribute(HTML.STYLE_ATTRIBUTE, style, null);
UIComponent controlFacet = control.getFacet(state);
if(controlFacet != null && controlFacet.isRendered()) {
+
if(!visible) {
String facetStyle = (String)controlFacet.getAttributes().get("style");
facetStyle = facetStyle != null ? facetStyle + "; display: none" : "; display: none";
controlFacet.getAttributes().put("style", facetStyle);
- }
+ }
+
controlFacet.encodeAll(context);
+
} else {
String image = expanded ? control.getExpandControl() : control.getCollapseControl();
if (image != null && image.trim().length() > 0) {
-
writer.startElement(HTML.IMG_ELEMENT, control);
- writer.writeAttribute(HTML.ID_ATTRIBUTE, control.getClientId() + ":" + state, null);
writer.writeAttribute(HTML.SRC_ATTRIBUTE, image, null);
writer.writeAttribute(HTML.ALT_ATTRIBUTE, "", null);
-
- if (!visible) {
- writer.writeAttribute(HTML.STYLE_ATTRIBUTE, DISPLAY_NONE, null);
- }
-
- //TODO: anton - remove inline script !
- if (script != null && script.length() > 0) {
- String eventName = control.getEvent();
- writer.writeAttribute(eventName, script, null);
- }
writer.endElement(HTML.IMG_ELEMENT);
}
+
}
writer.endElement(HTML.SPAN_ELEM);
}
public String encodeOptions(FacesContext context, UIToggleControl toggleControl, UISubTable subTable) {
- UIForm nestingForm = getUtils().getNestingForm(context, toggleControl);
-
- String formId = nestingForm.getClientId(context);
String forId = subTable.getClientId(context);
-
+ String toggleControlId = toggleControl.getClientId(context);
+
HashMap<String, Object> options = new HashMap<String, Object>();
- options.put("formId", formId);
options.put("forId", forId);
-// options.put("initialState", (Boolean) subTable.isExpanded());
- options.put("eventName", toggleControl.getEvent());
-// if(subTable.getSwichType().equals(UISubTable.SWITCH_TYPE_AJAX)) {
-// options.put("ajax", AjaxRendererUtils.buildEventOptions(context, subTable));
-// }
-
+ options.put("expandControl", toggleControlId + ":expand");
+ options.put("collapseControl", toggleControlId + ":collapse");
+
+ String eventName = toggleControl.getEvent();
+ eventName = eventName.trim().startsWith("on") ? eventName.substring(2) : eventName;
+ options.put("eventName", eventName);
return ScriptUtils.toScript(options);
}
@@ -193,21 +181,6 @@
return null;
}
- public String getScript(UIToggleControl toggleControl, String switchType, boolean isExpanded) {
- String pattern = null;
- /*
- if (switchType.equals(UISubTable.SWITCH_TYPE_CLIENT)) {
- pattern = CLIENT_TOGGLE_SCRIPT;
- } else if (switchType.equals(UISubTable.SWITCH_TYPE_AJAX)) {
- pattern = AJAX_TOGGLE_SCRIPT;
- } else {
- pattern = SERVER_TOGGLE_SCRIPT;
- }*/
- String toggleId = toggleControl.getClientId();
-
- return ""; //MessageFormat.format(pattern, toggleId, isExpanded);
- }
-
protected String getState(boolean expand) {
return expand ? EXPAND_STATE : COLLAPSE_STATE;
}
Added: root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/subtable.js
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/subtable.js (rev 0)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/subtable.js 2010-04-07 17:48:00 UTC (rev 16744)
@@ -0,0 +1,31 @@
+(function (jQuery, richfaces) {
+
+ richfaces.ui = richfaces.ui || {};
+
+ richfaces.ui.SubTable = function(id, options) {
+ this.id = id;
+ var subTable = document.getElementById(this.id);
+ subTable.component = this;
+ };
+
+
+ jQuery.extend(richfaces.ui.SubTable, {
+ EXPAND :'expand',
+ COLLAPSE : 'collapse'
+ });
+
+ jQuery.extend(richfaces.ui.SubTable.prototype, (function () {
+
+ return {
+ toggle: function() {
+
+ },
+
+ getState: function() {
+
+ }
+ };
+
+ })());
+
+})(jQuery, window.RichFaces);
\ No newline at end of file
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/toggler.js
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/toggler.js 2010-04-07 17:27:33 UTC (rev 16743)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/resources/META-INF/resources/toggler.js 2010-04-07 17:48:00 UTC (rev 16744)
@@ -1,142 +1,56 @@
-
-// TODO: remove second closure
-// TODO:
-(function(jQuery, richfaces) {
-
- richfaces.ui = richfaces.ui || {};
-
- // TODO: Make "T" small. ToggleManager is not a class
- richfaces.ui.ToggleManager = {};
-
- (function(manager){
- var togglers = {};
-
- manager['addToggler'] = function(toggler) {
- if(toggler) {
- togglers[toggler.id] = toggler;
- }
- };
-
- // TODO: Rename function names "clientToggle", "serverToggle" ... May be one function "toggle" with additional argument for type will be enough
- manager['clientToggle'] = function(id, toState) {
- if(id) {
- togglers[id].clientToggle(toState);
- }
- };
-
- manager['serverToggle'] = function(id, toState) {
- if(id) {
- togglers[id].serverToggle(toState);
- }
- };
-
- manager['ajaxToggle'] = function(id, toState) {
- if(id) {
- togglers[id].ajaxToggle(toState);
- }
- };
-
- manager['clearTogglers'] = function() {
- togglers = {};
- };
-
- manager['getTogglers'] = function () {
- return togglers;
- };
-
- })(richfaces.ui.ToggleManager);
-
-})(jQuery, window.RichFaces);
-
-
(function (jQuery, richfaces) {
-
- // TODO: not needed, was defined above
- richfaces.ui = richfaces.ui || {};
- // TODO: unnecessary space in tab
- richfaces.ui.Toggle = function(id, options) {
- this.getElement(id).rich= {component: this};
- this.id = id;
- this.hiddenInput = this.getElement(id + ":hidden");
- this.expandControl = this.getElement(id + ":expand");
- this.collapseControl = this.getElement(id + ":collapse");
- this.form = this.getElement(options.formId);
- this.options = options;
+
+ richfaces.ui = richfaces.ui || {};
+
+ richfaces.ui.DataTableToggler = function(id, options) {
+
+ this.id = id;
+
+ this.eventName = options.eventName;
+ this.expandControl = options.expandControl;
+ this.collapseControl = options.collapseControl;
this.forId = options.forId;
- this.state = options.initialState;
+ richfaces.Event.bindById(this.id, this.eventName, this.toggle, this);
};
+
+
+ jQuery.extend(richfaces.ui.DataTableToggler, {
+ EXPAND :'expand',
+ COLLAPSE : 'collapse'
+ });
- jQuery.extend(richfaces.ui.Toggle.prototype, ( function () {
-
- // REM: this=window. If you want to get this as instance to you object, you should call this function from public function using call or apply and set as context your object
- var convertId = function (id){
- return id.replace(/:/g, "\\:");
- };
-
- return {
- getElement : function (id) {
- return jQuery("#" + convertId(id));
- },
+
+ jQuery.extend(richfaces.ui.DataTableToggler.prototype, (function () {
+
+ return {
+
+ toggle: function(elem) {
+ var element = jQuery(document.getElementById(this.forId));
+ var subtable = element.attr('component');
+
+ var state = subtable.getState();
+ this.toggleControl(this.state);
+ subtable.toggle();
+ },
- saveState : function(state) {
- if(this.hiddenInput) {
- this.hiddenInput.attr('value', state);
- }
- },
+ toggleControl: function(state) {
+ var expandControl = jQuery(document.getElementById(this.expandControl));
+ var collapseControl = jQuery(document.getElementById(this.collapseControl));
+
+ if(state == richfaces.ui.DataTableToggler.EXPAND) {
+ expandControl.hide();
+ collapseControl.show();
+ this.state = "collapse";
+ } else if(state == richfaces.ui.DataTableToggler.COLLAPSE) {
+ collapseControl.hide();
+ expandControl.show();
+ this.state = "expand";
+ }
+ }
- toggle: function (toState) {
- var element = this.getElement(this.forId);
- if(this.state != toState) {
- this.toggleControls(toState);
-
- if(toState) {
- this.command("show", element);
- } else {
- this.command("hide", element);
- }
-
- this.state = toState;
- this.saveState(this.state);
- }
- },
-
- toggleControls: function (toState){
- var hideControl = toState ? this.expandControl : this.collapseControl;
- var showControl = this.state ? this.expandControl : this.collapseControl;
- this.command("show", showControl);
- this.command("hide", hideControl);
- },
-
- clientToggle: function(expand){
- this.toggle(expand);
- },
-
- serverToggle: function(expand){
- this.saveState(expand);
- if(this.form) {
- this.form.submit();
- }
- },
-
- ajaxToggle: function(expand){
-
- this.toggle(expand);
- var source = this.id;
- var event = this.options.eventName;
- var params = this.options.ajax;
-
- jsf.ajax.request(source, event, params);
- },
-
- command: function(name, element){
- if(name) {
- if(element && typeof element[name] == 'function') {
- element[name]();
- }
- }
- }
- };
-
- })());
-})(jQuery, window.RichFaces); // TODO: RichFaces may be undefined
\ No newline at end of file
+ };
+
+ })());
+
+})(jQuery, window.RichFaces);
\ No newline at end of file
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/templates/org/richfaces/renderkit/html/toggle-control.template.xml
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/templates/org/richfaces/renderkit/html/toggle-control.template.xml 2010-04-07 17:27:33 UTC (rev 16743)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/templates/org/richfaces/renderkit/html/toggle-control.template.xml 2010-04-07 17:48:00 UTC (rev 16744)
@@ -13,11 +13,9 @@
</cc:interface>
<cc:implementation>
- <cdk:call expression="getUtils().encodeBeginFormIfNessesary(facesContext, component);"/>
<span id="#{clientId}" class="#{component.attributes['styleClass']}">
<cdk:call expression="encodeControl(facesContext, component);" />
</span>
- <cdk:call expression="getUtils().encodeEndFormIfNessesary(facesContext, component);"/>
</cc:implementation>
</cdk:root>
\ No newline at end of file
14 years, 8 months
JBoss Rich Faces SVN: r16743 - root/framework/trunk/impl/src/main/resources/META-INF/resources.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2010-04-07 13:27:33 -0400 (Wed, 07 Apr 2010)
New Revision: 16743
Modified:
root/framework/trunk/impl/src/main/resources/META-INF/resources/jquery.position.js
Log:
https://jira.jboss.org/jira/browse/RF-8507
Modified: root/framework/trunk/impl/src/main/resources/META-INF/resources/jquery.position.js
===================================================================
--- root/framework/trunk/impl/src/main/resources/META-INF/resources/jquery.position.js 2010-04-07 00:19:36 UTC (rev 16742)
+++ root/framework/trunk/impl/src/main/resources/META-INF/resources/jquery.position.js 2010-04-07 17:27:33 UTC (rev 16743)
@@ -1,3 +1,9 @@
+/**
+ * @fileOverview jQuery setPosition Plugin to place elements on the page
+ * @author Pavel Yaschenko
+ * @version 0.5
+ */
+
// draft examples of usage
// jQuery('#tooltip').setPosition('#aaa',{from:'LB', to:'AA'});
// jQuery('#bbb').bind("click",function(e){jQuery('#tooltip').setPosition(e);});
@@ -14,12 +20,49 @@
// event
//
// params:
+// type: string // position type
// collision: string // not implemented
// offset: array [x,y] // implemented only for noPositionType
// from: string // place target relative of source
// to: string // direction for target
+ /**
+ * @name jQuery
+ * @namespace jQuery
+ * */
+
(function($) {
+ /**
+ * Place DOM element relative to another element or using position parameters
+ *
+ * @example jQuery('#tooltip').setPosition('#myDiv',{from:'LB', to:'AA'});
+ * @example jQuery('#myClickDiv').bind("click",function(e){jQuery('#tooltip').setPosition(e);});
+ *
+ * @function
+ * @name jQuery#setPosition
+ *
+ * @param {object} source - object that provides information about new position. <p>
+ * accepts:
+ * <ul>
+ * <li>jQuery selector or object</li>
+ * <li>object with id: <code>{id:'myDiv'}</code></li>
+ * <li>object with region settings: <code>{left:0, top:0, width:100, height:100}</code></li>
+ * <li>DOM Element</li>
+ * <li>Event object</li>
+ * </ul>
+ * </p>
+ * @param {object} params - position parameters:
+ * <dl><dt>
+ * @param {string} [params.type] - position type that defines positioning and auto positioning rules ["TOOLTIP","DROPDOWN"]</dt><dt>
+ * @param {string} [params.collision] - not implemented yet</dt><dt>
+ * @param {array} [params.offset] - provides array(2) with x and y for manually position definition<br/>
+ * affects only if "type", "from" and "to" not defined</dt><dt>
+ * @param {string} [params.from] - place target relative of source // draft definition</dt><dt>
+ * @param {string} [params.to] - direction for target // draft definition</dt>
+ * </blockquote>
+ *
+ * @return {jQuery} jQuery wrapped DOM elements
+ * */
$.fn.setPosition = function(source, params) {
var stype = typeof source;
if (stype == "object" || stype == "string") {
@@ -54,6 +97,7 @@
};
var re = /^(left|right)-(top|buttom|auto)$/i;
+ // TODO: make it private
$.PositionTypes = {
// horisontal constants: L-left, R-right, C-center, A-auto
// vertical constants: T-top, B-bottom, M-middle, A-auto
@@ -62,6 +106,15 @@
DROPDOWN:{from:"AA", to:"AA", auto:["LBRB", "LTRT", "RBLB", "RTLT"]}
};
+ /**
+ * Add or replace position type rules for auto positioning.
+ * Does not fully determinated with parameters yet, only draft version.
+ *
+ * @function
+ * @name jQuery.addPositionType
+ * @param {string} type - name of position rules
+ * @param {object} option - options of position rules
+ * */
$.addPositionType = function (type, options) {
// TODO: change [options] to [from, to, auto]
/*var obj = {};
14 years, 8 months
JBoss Rich Faces SVN: r16742 - in root/cdk/trunk/plugins: generator/src/main/java/org/richfaces/cdk/apt/processors and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: alexsmirnov
Date: 2010-04-06 20:19:36 -0400 (Tue, 06 Apr 2010)
New Revision: 16742
Added:
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/java/org/richfaces/cdk/test/component/Html5Attributes.java
Modified:
root/cdk/trunk/plugins/annotations/src/main/java/org/richfaces/cdk/annotations/JsfRenderer.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/processors/ComponentProcessor.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/model/ModelElementBase.java
root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/java/org/richfaces/cdk/test/component/AbstractTestComponent.java
Log:
CODING IN PROGRESS - issue RF-8567: Cleanup Annotation processor code
https://jira.jboss.org/jira/browse/RF-8567
Modified: root/cdk/trunk/plugins/annotations/src/main/java/org/richfaces/cdk/annotations/JsfRenderer.java
===================================================================
--- root/cdk/trunk/plugins/annotations/src/main/java/org/richfaces/cdk/annotations/JsfRenderer.java 2010-04-06 17:26:01 UTC (rev 16741)
+++ root/cdk/trunk/plugins/annotations/src/main/java/org/richfaces/cdk/annotations/JsfRenderer.java 2010-04-07 00:19:36 UTC (rev 16742)
@@ -28,6 +28,8 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
+import javax.faces.render.RenderKitFactory;
+
/**
* <p class="changed_added_4_0">
* The presence of this annotation in the JSF component class associated particular renderer with component.
@@ -51,9 +53,17 @@
*/
public String type() default "";
+ /**
+ * <p class="changed_added_4_0">Renderer Family</p>
+ * @return
+ */
public String family() default "";
- public String renderKitId() default "";
+ /**
+ * <p class="changed_added_4_0">RenderKit for which this renderer is belong to</p>
+ * @return
+ */
+ public String renderKitId() default RenderKitFactory.HTML_BASIC_RENDER_KIT;
public String template() default "";
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/processors/ComponentProcessor.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/processors/ComponentProcessor.java 2010-04-06 17:26:01 UTC (rev 16741)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/processors/ComponentProcessor.java 2010-04-07 00:19:36 UTC (rev 16742)
@@ -24,6 +24,7 @@
package org.richfaces.cdk.apt.processors;
import java.lang.annotation.Annotation;
+import java.util.Collection;
import java.util.List;
import java.util.Set;
@@ -114,8 +115,7 @@
if(null != componentElement){
attributesProcessor.processType(component,componentElement);
}
- // TODO - process interfaces() attribute.
- List<ClassName> interfaceNames = Lists.newArrayList();
+ Collection<ClassName> interfaceNames = component.getInterfaces();
try {
Class<?>[] interfaces = annotation.interfaces();
for (Class<?> clazz : interfaces) {
@@ -132,7 +132,6 @@
}
}
}
- // TODO - store interfaces in the model.
for (Tag tag : annotation.tag()) {
setTagInfo(tag, component);
}
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/model/ModelElementBase.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/model/ModelElementBase.java 2010-04-06 17:26:01 UTC (rev 16741)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/model/ModelElementBase.java 2010-04-07 00:19:36 UTC (rev 16742)
@@ -1,5 +1,9 @@
package org.richfaces.cdk.model;
+import java.util.Collection;
+
+import com.google.common.collect.Sets;
+
/**
* <p class="changed_added_4_0">Base class for the most JSF components taht have description
* attributes and support extensions in faces-config.</p>
@@ -15,6 +19,8 @@
private ClassName baseClass;
private final ModelCollection<TagModel> tags = ModelCollection.<TagModel>create();
+
+ private final Collection<ClassName> interfaces = Sets.newHashSet();
/**
@@ -25,6 +31,14 @@
return this.tags;
}
+ /**
+ * <p class="changed_added_4_0"></p>
+ * @return the interfaces
+ */
+ public Collection<ClassName> getInterfaces() {
+ return this.interfaces;
+ }
+
public FacesId getId() {
return id;
}
Modified: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/java/org/richfaces/cdk/test/component/AbstractTestComponent.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/java/org/richfaces/cdk/test/component/AbstractTestComponent.java 2010-04-06 17:26:01 UTC (rev 16741)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/java/org/richfaces/cdk/test/component/AbstractTestComponent.java 2010-04-07 00:19:36 UTC (rev 16742)
@@ -26,29 +26,49 @@
import java.util.List;
import javax.faces.component.UIComponentBase;
+import javax.faces.component.ValueHolder;
import org.richfaces.cdk.annotations.Attribute;
-import org.richfaces.cdk.annotations.Family;
-import org.richfaces.cdk.annotations.Fires;
-import org.richfaces.cdk.annotations.Generate;
import org.richfaces.cdk.annotations.Description;
+import org.richfaces.cdk.annotations.Facet;
import org.richfaces.cdk.annotations.JsfComponent;
+import org.richfaces.cdk.annotations.SubComponent;
import org.richfaces.cdk.annotations.Tag;
-import org.richfaces.cdk.test.event.TestEvent;
/**
* <p class="changed_added_4_0">
+ * Test component that generates a set of the output components.
* </p>
*
* @author asmirnov(a)exadel.com
*
*/
-@JsfComponent(type = "org.richfaces.cdk.test.TestComponent")
+@JsfComponent(type = "org.richfaces.cdk.test.TestComponent",
+ family="org.richfaces.Test",
+ description=@Description(displayName="Test Component",largeIcon="large.gif",smallIcon="spall.png"),
+ generate="org.richfaces.cdk.test.component.UITestComponent",
+ facets=@Facet(name="caption"),
+ interfaces=ValueHolder.class,
+ components={
+ @SubComponent(type = "org.richfaces.cdk.test.TestHtmlAbbr",
+ description=@Description(displayName="Test HTML5 abbreviation",largeIcon="large.gif",smallIcon="spall.png"),
+ tag=@Tag(name="abbr"),
+ generate="org.richfaces.cdk.test.component.html.HtmlTestAbbr",
+ interfaces=Html5Attributes.class),
+ @SubComponent(type = "org.richfaces.cdk.test.TestHtmlDfn",
+ tag=@Tag(name="dfn"),
+ generate="org.richfaces.cdk.test.component.html.HtmlTestDfn",
+ attributes="html5.xml")
+ }
+)
public abstract class AbstractTestComponent extends UIComponentBase /*implements ValueHolder */{
@Attribute
- private int foo;
+ private int length;
+ @Attribute
+ public abstract String getTitle();
+
/**
* Test Attribute
*/
Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/java/org/richfaces/cdk/test/component/Html5Attributes.java
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/java/org/richfaces/cdk/test/component/Html5Attributes.java (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/java/org/richfaces/cdk/test/component/Html5Attributes.java 2010-04-07 00:19:36 UTC (rev 16742)
@@ -0,0 +1,68 @@
+/*
+ * $Id$
+ *
+ * License Agreement.
+ *
+ * Rich Faces - Natural Ajax for Java Server Faces (JSF)
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+package org.richfaces.cdk.test.component;
+
+import org.richfaces.cdk.annotations.Attribute;
+
+/**
+ * <p class="changed_added_4_0"></p>
+ * @author asmirnov(a)exadel.com
+ *
+ */
+public interface Html5Attributes {
+
+
+ /**
+ * <p class="changed_added_4_0"></p>
+ * @author asmirnov(a)exadel.com
+ *
+ */
+ public enum DraggableState {
+ TRUE,
+ FALSE,
+ AUTO
+ }
+
+ /**
+ * @return
+ */
+ @Attribute
+ public abstract DraggableState getDraggable();
+
+ /**
+ * @param newValue
+ */
+ public abstract void setDraggable(DraggableState newValue);
+
+ /**
+ * @return
+ */
+ @Attribute
+ public abstract boolean isHidden();
+
+ /**
+ * @param newValue
+ */
+ public abstract void setHidden(boolean newValue);
+}
Property changes on: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/annotated-component/src/main/java/org/richfaces/cdk/test/component/Html5Attributes.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
14 years, 8 months
JBoss Rich Faces SVN: r16741 - in tags: 3.3.3.Final and 222 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-04-06 13:26:01 -0400 (Tue, 06 Apr 2010)
New Revision: 16741
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:
recreate tag for 3.3.3.Final
Copied: tags/3.3.3.Final (from rev 16739, 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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/generator/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-archetype-jsf-component/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-archetype-jsfwebapp/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-archetype-plug-n-skin/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-archetype-seam-app/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-archetype-theme/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-cdk-plugin/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-javascript-plugin/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/maven-resource-dependency-plugin/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/richfaces-facelets/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/cdkguide/en/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/cdkguide/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/common-resources/en/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/common-resources/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/faq/en/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/faq/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/highlight/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/migrationguide/en/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/migrationguide/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/photo_album_app_guide/en/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/photo_album_app_guide/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/userguide/en/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/docs/userguide/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/examples/photoalbum/assembly/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/examples/photoalbum/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/examples/photoalbum/source/ear/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/examples/photoalbum/source/ejb/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/examples/photoalbum/source/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/examples/photoalbum/source/web/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/examples/photoalbum/tests/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/extensions/gwt/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/extensions/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/extensions/seam/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/extensions/trinidad/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/framework/api/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/framework/impl/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/framework/jsf-test/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/framework/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/framework/test/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/beanValidatorSample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/calendar-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/colorPickerDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/columnsDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/combobox-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/contextMenuDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/createProject.sh 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/darkX/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/dataFilterSliderDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/dataTableDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/datascroller-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/dragDropDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/dropdownmenu-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/editor-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/editorSeam-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/effect-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/extendedDataTable-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/fileUploadDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/functions-demo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/glassX/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/gmap-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/hotKey-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/inplaceInput-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/inplaceSelect-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/inputNumberSliderDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/inputNumberSpinnerDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/jQuery-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/jira-data/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/laguna/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/layout-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/listShuttleDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/local-value-demo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/mediaOutput/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/modalpanel-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/orderingListDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/panel-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/panelbar-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/panelmenu-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/pickList-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/progressBarDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/queue-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/rich-message-demo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/richfaces-art-datatable/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/richfaces-demo/functional-test/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/richfaces-demo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/richfaces-ear-demo/ejb/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/richfaces-ear-demo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/richfaces-ear-demo/webapp/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/scrollableDataTableDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/seamEAR/ear/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/seamEAR/ejbs/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/seamEAR/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/seamEAR/primary-source/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/seamEAR/projects/logging/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/seamEAR/projects/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/seamEAR/wars/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/seamEAR/wars/seamWebapp/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/seamIntegration/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/separator-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/simpleTogglePanel-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/skins/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/sortingFilteringDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/state-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/stdcomponents-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/suggestionbox-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/tabPanelDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/themes/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/togglePanel-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/tomahawkCompability/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/toolBarDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/tooltip-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/tree-demo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/treeModelDemo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/violetRays/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/samples/virtualEarth-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/api/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/cdk/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/impl/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/samples/dialog-window-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/samples/editorOld-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/samples/fileUploadPOC/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/samples/panel2-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/samples/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/samples/rex-demo/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/create.bat 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/create.sh 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/dialog-window/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/editorOld/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/panel2/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/rex-button/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/rex-messageBox/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/rex-resizable/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/simpleTogglePanel2/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/sortableHeader/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/sandbox/ui/treeTable/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/ajaxTest/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/automator/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/facelets/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/jsp/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/regression-test/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/regressionArea/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/regressionArea/regressionArea-web/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/richfaces-docs/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/seamApp/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/seleniumTest/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/seleniumTest/richfaces/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/seleniumTest/samples/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/test-applications/test-jsp/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/assembly/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/beanValidator/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/calendar/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/colorPicker/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/columns/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/combobox/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/componentControl/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/contextMenu/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/core/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/create.bat 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/dataFilterSlider/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/dataTable/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/datascroller/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/drag-drop/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/dropdown-menu/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/editor/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/effect/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/extendedDataTable/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/fileUpload/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/functions/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/gmap/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/hotKey/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/inplaceInput/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/inplaceSelect/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/inputnumber-slider/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/inputnumber-spinner/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/insert/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/jQuery/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/layout/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/listShuttle/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/menu-components/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/message/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/modal-panel/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/orderingList/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/paint2D/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/panel/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/panelbar/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/panelmenu/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/pickList/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/progressBAR/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/scrollableDataTable/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/separator/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/simpleTogglePanel/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/spacer/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/state/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/suggestionbox/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/tabPanel/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/togglePanel/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/toolBar/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/tooltip/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/tree/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/treeModel/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/treeTable/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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-04-06 16:32:09 UTC (rev 16739)
+++ tags/3.3.3.Final/ui/virtualEarth/pom.xml 2010-04-06 17:26:01 UTC (rev 16741)
@@ -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, 8 months
JBoss Rich Faces SVN: r16740 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-04-06 13:20:51 -0400 (Tue, 06 Apr 2010)
New Revision: 16740
Removed:
tags/3.3.3.Final/
Log:
will be recreated
14 years, 8 months
JBoss Rich Faces SVN: r16739 - in root/framework/trunk/impl/src: test/java/org/richfaces/context and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-04-06 12:32:09 -0400 (Tue, 06 Apr 2010)
New Revision: 16739
Added:
root/framework/trunk/impl/src/test/java/org/richfaces/context/ComponentMatcherNodeTest.java
root/framework/trunk/impl/src/test/java/org/richfaces/context/IdParserTest.java
Modified:
root/framework/trunk/impl/src/main/java/org/richfaces/context/ComponentMatcherNode.java
root/framework/trunk/impl/src/main/java/org/richfaces/context/IdParser.java
Log:
https://jira.jboss.org/jira/browse/RF-7856
Modified: root/framework/trunk/impl/src/main/java/org/richfaces/context/ComponentMatcherNode.java
===================================================================
--- root/framework/trunk/impl/src/main/java/org/richfaces/context/ComponentMatcherNode.java 2010-04-06 16:21:28 UTC (rev 16738)
+++ root/framework/trunk/impl/src/main/java/org/richfaces/context/ComponentMatcherNode.java 2010-04-06 16:32:09 UTC (rev 16739)
@@ -48,11 +48,64 @@
private Set<String> subtreeIds;
- protected Map<String, ComponentMatcherNode> getChildrenMap(boolean isPattern) {
+ void setParentNode(ComponentMatcherNode parentNode) {
+ this.parentNode = parentNode;
+ }
+
+ void incrementKidPatternNodesCounter() {
+ if (kidPatternNodesCounter == 0 && !isPatternNode()) {
+ ComponentMatcherNode parentNode = getParentNode();
+ if (parentNode != null) {
+ parentNode.incrementKidPatternNodesCounter();
+ }
+ }
+
+ kidPatternNodesCounter++;
+ }
+
+ void decrementKidPatternNodesCounter() {
+ kidPatternNodesCounter--;
+
+ if (kidPatternNodesCounter == 0 && !isPatternNode()) {
+ ComponentMatcherNode parentNode = getParentNode();
+ if (parentNode != null) {
+ parentNode.decrementKidPatternNodesCounter();
+ }
+ }
+ }
+
+ void setHasParentPatternNode(boolean hasParentPatternNode) {
+ this.hasParentPatternNode = hasParentPatternNode;
+
+ if (!isPatternNode()) {
+ if (idChildren != null) {
+ for (ComponentMatcherNode child : idChildren.values()) {
+ child.setHasParentPatternNode(hasParentPatternNode);
+ }
+ }
+
+ if (patternChildren != null) {
+ for (ComponentMatcherNode child : patternChildren.values()) {
+ child.setHasParentPatternNode(hasParentPatternNode);
+ }
+ }
+ }
+ }
+
+ boolean matches(String shortId) {
+ if (isPatternNode()) {
+ //TODO - modify when real patterns will be supported
+ return true;
+ } else {
+ return source.equals(shortId);
+ }
+ }
+
+ Map<String, ComponentMatcherNode> getChildrenMap(boolean isPattern) {
return isPattern ? patternChildren : idChildren;
}
- protected Map<String, ComponentMatcherNode> getOrCreateChildrenMap(boolean isPattern) {
+ Map<String, ComponentMatcherNode> getOrCreateChildrenMap(boolean isPattern) {
if (isPattern) {
if (patternChildren == null) {
patternChildren = new HashMap<String, ComponentMatcherNode>(1);
@@ -80,19 +133,6 @@
return parentNode;
}
- public void setParentNode(ComponentMatcherNode parentNode) {
- this.parentNode = parentNode;
- }
-
- public boolean matches(String shortId) {
- if (isPatternNode()) {
- //TODO - modify when real patterns will be supported
- return true;
- } else {
- return source.equals(shortId);
- }
- }
-
public ComponentMatcherNode getMatchedChild(String shortId) {
ComponentMatcherNode node = null;
if (idChildren != null) {
@@ -120,34 +160,40 @@
return null;
}
- public void addChild(ComponentMatcherNode node) {
- node.setParentNode(this);
+ public void addChild(ComponentMatcherNode child) {
+ child.setParentNode(this);
- boolean isPatternNode = node.isPatternNode();
- Map<String, ComponentMatcherNode> childrenMap = getOrCreateChildrenMap(isPatternNode);
- if (childrenMap.put(node.getSource(), node) == null) {
- if (isPatternNode) {
- increaseKidPatternNodesCounter();
- }
+ Map<String, ComponentMatcherNode> childrenMap = getOrCreateChildrenMap(child.isPatternNode());
- if (isPatternNode || this.hasParentPatternNode()) {
- node.setHasParentPatternNode(true);
- }
+ ComponentMatcherNode previousNode = childrenMap.get(child.getSource());
+ if (previousNode != null) {
+ removeChild(previousNode);
}
+
+ childrenMap.put(child.getSource(), child);
+
+ if (child.isPatternNode() || child.hasKidPatternNodes()) {
+ incrementKidPatternNodesCounter();
+ }
+
+ if (isPatternNode() || this.hasParentPatternNode()) {
+ child.setHasParentPatternNode(true);
+ }
}
- public void removeChild(ComponentMatcherNode node) {
- boolean isPatternNode = node.isPatternNode();
- Map<String, ComponentMatcherNode> childrenMap = getChildrenMap(isPatternNode);
+ public void removeChild(ComponentMatcherNode child) {
+ Map<String, ComponentMatcherNode> childrenMap = getChildrenMap(child.isPatternNode());
if (childrenMap != null) {
- if (node.getParentNode() == this) {
- node.setParentNode(null);
- node.setHasParentPatternNode(false);
- if (childrenMap.remove(node.getSource()) != null) {
- if (isPatternNode) {
- decreaseKidPatternNodesCounter();
- }
+ if (child.getParentNode() == this) {
+ child.setParentNode(null);
+ child.setHasParentPatternNode(false);
+ childrenMap.remove(child.getSource());
+
+ if (child.isPatternNode() || child.hasKidPatternNodes()) {
+ decrementKidPatternNodesCounter();
}
+ } else {
+ //TODO - ?
}
}
}
@@ -164,22 +210,6 @@
return patternChildren != null && !patternChildren.isEmpty();
}
- public void increaseKidPatternNodesCounter() {
- kidPatternNodesCounter++;
- ComponentMatcherNode parentNode = getParentNode();
- if (parentNode != null) {
- parentNode.increaseKidPatternNodesCounter();
- }
- }
-
- public void decreaseKidPatternNodesCounter() {
- kidPatternNodesCounter--;
- ComponentMatcherNode parentNode = getParentNode();
- if (parentNode != null) {
- parentNode.decreaseKidPatternNodesCounter();
- }
- }
-
public boolean hasKidPatternNodes() {
return kidPatternNodesCounter > 0;
}
@@ -196,10 +226,6 @@
return added;
}
- public void setHasParentPatternNode(boolean hasParentPatternNode) {
- this.hasParentPatternNode = hasParentPatternNode;
- }
-
public boolean hasParentPatternNode() {
return hasParentPatternNode;
}
Modified: root/framework/trunk/impl/src/main/java/org/richfaces/context/IdParser.java
===================================================================
--- root/framework/trunk/impl/src/main/java/org/richfaces/context/IdParser.java 2010-04-06 16:21:28 UTC (rev 16738)
+++ root/framework/trunk/impl/src/main/java/org/richfaces/context/IdParser.java 2010-04-06 16:32:09 UTC (rev 16739)
@@ -21,6 +21,11 @@
*/
package org.richfaces.context;
+/**
+ * Helper class for parsing ids.
+ *
+ * @author Nick Belaevski
+ */
final class IdParser {
private boolean isInShortId = true;
@@ -51,6 +56,23 @@
this.isInShortId = true;
}
+ /**
+ * <p>
+ * Finds shortId that satisfies the following conditions:
+ * </p>
+ *
+ * <code>
+ * nextIdx(c) := { return id.indexOf(c, idx) }
+ * </code>
+
+ * <p></p>
+ *
+ * <code>
+ * shortId := id.substring(idx, Math.min(nextIdx(namingContainerSeparator), nextIdx(subComponentSeparator)))
+ * </code>
+ *
+ * @return
+ */
private String findNextInShortId() {
String segment = null;
boolean found = false;
@@ -78,6 +100,22 @@
return segment;
}
+ /**
+ * <p>
+ * Finds fullId that satisfies the following conditions:
+ * </p>
+ *
+ * <code>
+ * nextIdx(c) := { return id.indexOf(c, idx) }
+ * </code>
+
+ * <p></p>
+ *
+ * <code>
+ * fullId := id.substring(idx, nextIdx(namingContainerSeparator))
+ * </code>
+ * @return
+ */
private String findNextInFullId() {
String segment = null;
int index = id.indexOf(namingContainerSeparator, idx);
Added: root/framework/trunk/impl/src/test/java/org/richfaces/context/ComponentMatcherNodeTest.java
===================================================================
--- root/framework/trunk/impl/src/test/java/org/richfaces/context/ComponentMatcherNodeTest.java (rev 0)
+++ root/framework/trunk/impl/src/test/java/org/richfaces/context/ComponentMatcherNodeTest.java 2010-04-06 16:32:09 UTC (rev 16739)
@@ -0,0 +1,337 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.context;
+
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertSame;
+import static org.junit.Assert.assertTrue;
+
+import java.util.Map;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public class ComponentMatcherNodeTest {
+
+ private ComponentMatcherNode rootNode;
+
+ @Before
+ public void setUp() throws Exception {
+ rootNode = new ComponentMatcherNode();
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ rootNode = null;
+ }
+
+ private ComponentMatcherNode createNode(String source, boolean isPattern) {
+ ComponentMatcherNode node = new ComponentMatcherNode();
+ node.setSource(source);
+ node.setPatternNode(isPattern);
+
+ return node;
+ }
+
+ @Test
+ public void testIdChild() throws Exception {
+ ComponentMatcherNode idNode = createNode("table", false);
+
+ assertNull(rootNode.getChild("table", false));
+ assertNull(rootNode.getChild("table2", false));
+
+ rootNode.addChild(idNode);
+
+ assertSame(rootNode, idNode.getParentNode());
+ assertNotNull(rootNode.getIdChildren());
+ assertTrue(rootNode.hasDirectIdChildren());
+ assertTrue(rootNode.hasDirectChildren());
+ assertFalse(rootNode.hasDirectPatternChildren());
+ assertFalse(rootNode.hasKidPatternNodes());
+
+ assertSame(idNode, rootNode.getChild("table", false));
+ assertSame(idNode, rootNode.getMatchedChild("table"));
+
+ assertNull(rootNode.getChild("table2", false));
+ assertNull(rootNode.getChild("xChild", false));
+ assertNull(rootNode.getMatchedChild("xChild"));
+
+ ComponentMatcherNode id2Node = createNode("table2", false);
+ rootNode.addChild(id2Node);
+ assertSame(idNode, rootNode.getChild("table", false));
+ assertSame(id2Node, rootNode.getChild("table2", false));
+ assertSame(id2Node, rootNode.getMatchedChild("table2"));
+
+ rootNode.removeChild(idNode);
+ rootNode.removeChild(id2Node);
+
+ assertNull(idNode.getParentNode());
+ assertFalse(rootNode.hasDirectIdChildren());
+ assertFalse(rootNode.hasDirectChildren());
+ assertFalse(rootNode.hasDirectPatternChildren());
+ assertFalse(rootNode.hasKidPatternNodes());
+
+ assertNull(rootNode.getChild("table", false));
+ assertNull(rootNode.getMatchedChild("table"));
+ }
+
+ @Test
+ public void testMarkAddedRemoved() throws Exception {
+ ComponentMatcherNode idNode = createNode("table", false);
+ ComponentMatcherNode patternNode = createNode("*", true);
+
+ assertFalse(idNode.isAdded());
+ assertFalse(patternNode.isAdded());
+
+ rootNode.addChild(idNode);
+ assertFalse(idNode.isAdded());
+ assertFalse(rootNode.isAdded());
+
+ idNode.markAdded();
+ assertSame(idNode, rootNode.getChild("table", false));
+ assertTrue(idNode.isAdded());
+ assertFalse(rootNode.isAdded());
+
+ idNode.markRemoved();
+ assertSame(idNode, rootNode.getChild("table", false));
+ assertFalse(idNode.isAdded());
+ assertFalse(rootNode.isAdded());
+
+ rootNode.addChild(patternNode);
+ assertFalse(patternNode.isAdded());
+ assertFalse(rootNode.isAdded());
+
+ patternNode.markAdded();
+ assertSame(patternNode, rootNode.getChild("*", true));
+ assertTrue(patternNode.isAdded());
+ assertFalse(rootNode.isAdded());
+
+ patternNode.markRemoved();
+ assertSame(patternNode, rootNode.getChild("*", true));
+ assertFalse(patternNode.isAdded());
+ assertFalse(rootNode.isAdded());
+ }
+
+ @Test
+ public void testPatternChild() throws Exception {
+ ComponentMatcherNode patternNode = createNode("*", true);
+
+ assertNull(rootNode.getChild("*", true));
+
+ rootNode.addChild(patternNode);
+
+ assertSame(rootNode, patternNode.getParentNode());
+ assertNotNull(rootNode.getPatternChildren());
+ assertFalse(rootNode.hasDirectIdChildren());
+ assertTrue(rootNode.hasDirectChildren());
+ assertTrue(rootNode.hasDirectPatternChildren());
+ assertTrue(rootNode.hasKidPatternNodes());
+
+ assertSame(patternNode, rootNode.getChild("*", true));
+ assertSame(patternNode, rootNode.getMatchedChild("anyId"));
+ assertSame(patternNode, rootNode.getMatchedChild("justAnotherId"));
+
+ rootNode.removeChild(patternNode);
+ assertNull(patternNode.getParentNode());
+ assertFalse(rootNode.hasDirectIdChildren());
+ assertFalse(rootNode.hasDirectChildren());
+ assertFalse(rootNode.hasDirectPatternChildren());
+ assertFalse(rootNode.hasKidPatternNodes());
+
+ assertNull(rootNode.getChild("*", true));
+ assertNull(rootNode.getMatchedChild("anyId"));
+ assertNull(rootNode.getMatchedChild("justAnotherId"));
+ }
+
+ private boolean hasPatternParent(ComponentMatcherNode node) {
+ ComponentMatcherNode pNode = node;
+ while ((pNode = pNode.getParentNode()) != null) {
+ if (pNode.isPatternNode()) {
+ return true;
+ }
+ }
+
+ return false;
+ }
+
+ private boolean hasPatternKids(Map<String, ComponentMatcherNode> nodesMap) {
+ if (nodesMap == null) {
+ return false;
+ }
+
+ for (ComponentMatcherNode node : nodesMap.values()) {
+ if (node.isPatternNode()) {
+ return true;
+ }
+
+ if (hasPatternKids(node.getIdChildren())) {
+ return true;
+ }
+
+ if (hasPatternKids(node.getPatternChildren())) {
+ return true;
+ }
+ }
+
+ return false;
+ }
+
+ private boolean hasPatternKids(ComponentMatcherNode node) {
+ if (hasPatternKids(node.getIdChildren())) {
+ return true;
+ }
+
+ if (hasPatternKids(node.getPatternChildren())) {
+ return true;
+ }
+
+ return false;
+ }
+
+ private void verifyNodeChildren(Map<String, ComponentMatcherNode> nodesMap) {
+ if (nodesMap != null) {
+ for (ComponentMatcherNode childNode : nodesMap.values()) {
+ verifyNode(childNode);
+ }
+ }
+ }
+
+ private void verifyNode(ComponentMatcherNode node) {
+ assertTrue(hasPatternParent(node) == node.hasParentPatternNode());
+ assertTrue(hasPatternKids(node) == node.hasKidPatternNodes());
+
+ verifyNodeChildren(node.getIdChildren());
+ verifyNodeChildren(node.getPatternChildren());
+ }
+
+ @Test
+ public void testAddChild() throws Exception {
+ verifyNode(rootNode);
+
+ ComponentMatcherNode tableNode = createNode("table", false);
+ rootNode.addChild(tableNode);
+ verifyNode(rootNode);
+ assertSame(tableNode, rootNode.getChild("table", false));
+ assertSame(tableNode, rootNode.getMatchedChild("table"));
+
+ ComponentMatcherNode tablePatternNode = createNode("table-*", true);
+ rootNode.addChild(tablePatternNode);
+ verifyNode(rootNode);
+ assertSame(tablePatternNode, rootNode.getChild("table-*", true));
+ assertSame(tablePatternNode, rootNode.getMatchedChild("anyChild"));
+
+ ComponentMatcherNode rowNode = createNode("row", false);
+ tableNode.addChild(rowNode);
+ verifyNode(rootNode);
+ assertSame(rowNode, tableNode.getChild("row", false));
+ assertSame(rowNode, tableNode.getMatchedChild("row"));
+
+ ComponentMatcherNode cellPatternNode = createNode("cell-*", true);
+ rowNode.addChild(cellPatternNode);
+ verifyNode(rootNode);
+ assertSame(cellPatternNode, rowNode.getChild("cell-*", true));
+ assertSame(cellPatternNode, rowNode.getMatchedChild("anyCell"));
+
+ ComponentMatcherNode secondRowNode = createNode("row", false);
+ tablePatternNode.addChild(secondRowNode);
+ verifyNode(rootNode);
+ assertSame(secondRowNode, tablePatternNode.getChild("row", false));
+ assertSame(secondRowNode, tablePatternNode.getMatchedChild("row"));
+
+ ComponentMatcherNode secondCellPatternNode = createNode("cell-*", true);
+ secondRowNode.addChild(secondCellPatternNode);
+ verifyNode(rootNode);
+ assertSame(secondCellPatternNode, secondRowNode.getChild("cell-*", true));
+ assertSame(secondCellPatternNode, secondRowNode.getMatchedChild("anyCell"));
+ }
+
+ @Test
+ public void testRemoveChild() throws Exception {
+ ComponentMatcherNode tableNode = createNode("table", false);
+ rootNode.addChild(tableNode);
+
+ ComponentMatcherNode tablePatternNode = createNode("table-*", true);
+ rootNode.addChild(tablePatternNode);
+
+ ComponentMatcherNode rowNode = createNode("row", false);
+ tableNode.addChild(rowNode);
+
+ ComponentMatcherNode cellPatternNode = createNode("cell-*", true);
+ rowNode.addChild(cellPatternNode);
+
+ ComponentMatcherNode secondRowNode = createNode("row", false);
+ tablePatternNode.addChild(secondRowNode);
+
+ ComponentMatcherNode secondCellPatternNode = createNode("cell-*", true);
+ secondRowNode.addChild(secondCellPatternNode);
+
+ verifyNode(rootNode);
+
+ assertSame(secondCellPatternNode, secondRowNode.getChild("cell-*", true));
+ assertSame(secondCellPatternNode, secondRowNode.getMatchedChild("anyCell"));
+ secondRowNode.removeChild(secondCellPatternNode);
+ assertNull(secondRowNode.getChild("cell-*", true));
+ assertNull(secondRowNode.getMatchedChild("anyCell"));
+
+ verifyNode(rootNode);
+
+ assertSame(rowNode, tableNode.getChild("row", false));
+ assertSame(rowNode, tableNode.getMatchedChild("row"));
+ tableNode.removeChild(rowNode);
+ assertNull(tableNode.getChild("row", false));
+ assertNull(tableNode.getMatchedChild("row"));
+
+ verifyNode(rootNode);
+
+ assertSame(secondRowNode, tablePatternNode.getChild("row", false));
+ assertSame(secondRowNode, tablePatternNode.getMatchedChild("row"));
+ tablePatternNode.removeChild(secondRowNode);
+ assertNull(tablePatternNode.getChild("row", false));
+ assertNull(tablePatternNode.getMatchedChild("row"));
+
+ verifyNode(rootNode);
+
+ assertSame(tablePatternNode, rootNode.getChild("table-*", true));
+ assertSame(tablePatternNode, rootNode.getMatchedChild("anyChild"));
+ rootNode.removeChild(tablePatternNode);
+ assertNull(rootNode.getChild("table-*", true));
+ assertNull(rootNode.getMatchedChild("anyChild"));
+
+ verifyNode(rootNode);
+
+ assertSame(tableNode, rootNode.getChild("table", false));
+ assertSame(tableNode, rootNode.getMatchedChild("table"));
+ rootNode.removeChild(tableNode);
+ assertNull(rootNode.getChild("table", false));
+ assertNull(rootNode.getMatchedChild("table"));
+
+ verifyNode(rootNode);
+ }
+}
Added: root/framework/trunk/impl/src/test/java/org/richfaces/context/IdParserTest.java
===================================================================
--- root/framework/trunk/impl/src/test/java/org/richfaces/context/IdParserTest.java (rev 0)
+++ root/framework/trunk/impl/src/test/java/org/richfaces/context/IdParserTest.java 2010-04-06 16:32:09 UTC (rev 16739)
@@ -0,0 +1,196 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.richfaces.context;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+
+/**
+ * @author Nick Belaevski
+ *
+ */
+public class IdParserTest {
+
+ private IdParser idParser;
+
+ @Before
+ public void setUp() throws Exception {
+ idParser = new IdParser(':', '@');
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ idParser = null;
+ }
+
+ @Test
+ public void testEmptyString() throws Exception {
+ idParser.setId("");
+
+ String segment;
+
+ segment = idParser.nextSegment();
+ assertEquals("", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+ assertNull(idParser.nextSegment());
+ }
+
+ @Test
+ public void testSimpleId() throws Exception {
+ idParser.setId("simpleId");
+
+ String segment;
+
+ segment = idParser.nextSegment();
+ assertEquals("simpleId", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+ assertNull(idParser.nextSegment());
+ }
+
+ @Test
+ public void testSubComponentId() throws Exception {
+ idParser.setId("table@head");
+
+ String segment;
+
+ segment = idParser.nextSegment();
+ assertEquals("table", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("table@head", segment);
+ assertTrue(idParser.containsSubComponentSeparator());
+
+ assertNull(idParser.nextSegment());
+ }
+
+ @Test
+ public void testSeries() throws Exception {
+ idParser.setId("form:table:0:nestedTable@body");
+
+ String segment;
+
+ segment = idParser.nextSegment();
+ assertEquals("form", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("table", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("0", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("nestedTable", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("nestedTable@body", segment);
+ assertTrue(idParser.containsSubComponentSeparator());
+
+ assertNull(idParser.nextSegment());
+
+ idParser.setId("myBigTable@header");
+
+ segment = idParser.nextSegment();
+ assertEquals("myBigTable", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("myBigTable@header", segment);
+ assertTrue(idParser.containsSubComponentSeparator());
+
+ assertNull(idParser.nextSegment());
+
+ idParser.setId("tree:0-12-28:node@status:table:10:tab@label");
+
+ segment = idParser.nextSegment();
+ assertEquals("tree", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("0-12-28", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("node", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("node@status", segment);
+ assertTrue(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("table", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("10", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("tab", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("tab@label", segment);
+ assertTrue(idParser.containsSubComponentSeparator());
+
+ assertNull(idParser.nextSegment());
+ }
+
+ @Test
+ public void testNestedSubcomponents() throws Exception {
+ //TODO - review this test - behavior is not clear for now
+
+ idParser.setId("form:table@head@x-head:child");
+
+ String segment;
+
+ segment = idParser.nextSegment();
+ assertEquals("form", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("table", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("table@head@x-head", segment);
+ assertTrue(idParser.containsSubComponentSeparator());
+
+ segment = idParser.nextSegment();
+ assertEquals("child", segment);
+ assertFalse(idParser.containsSubComponentSeparator());
+
+ assertNull(idParser.nextSegment());
+ }
+}
14 years, 8 months
JBoss Rich Faces SVN: r16738 - root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-04-06 12:21:28 -0400 (Tue, 06 Apr 2010)
New Revision: 16738
Modified:
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/SourceFileManager.java
Log:
Fixed ui-core build problem on windows
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/SourceFileManager.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/SourceFileManager.java 2010-04-06 16:09:36 UTC (rev 16737)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/SourceFileManager.java 2010-04-06 16:21:28 UTC (rev 16738)
@@ -31,15 +31,15 @@
/**
* <p class="changed_added_4_0">
* </p>
- *
+ *
* @author asmirnov(a)exadel.com
- *
+ *
*/
public class SourceFileManager implements FileManager {
private final Iterable<File> sources;
private final Iterable<File> folders;
-
+
public SourceFileManager(Iterable<File> sources, Iterable<File> folders) {
this.sources = sources;
this.folders = folders;
@@ -47,7 +47,7 @@
/*
* (non-Javadoc)
- *
+ *
* @see org.richfaces.cdk.FileManager#createFile(java.lang.String)
*/
@Override
@@ -57,15 +57,23 @@
/*
* (non-Javadoc)
- *
+ *
* @see org.richfaces.cdk.FileManager#getFile(java.lang.String)
*/
@Override
public File getFile(String path) throws FileNotFoundException {
+ String platformPath;
+
+ if (File.separatorChar == '/') {
+ platformPath = path;
+ } else {
+ platformPath = path.replace('/', File.separatorChar);
+ }
+
if (null != folders) {
for (File folder : folders) {
if (folder.exists() && folder.isDirectory()) {
- File configFile = new File(folder, path);
+ File configFile = new File(folder, platformPath);
if (configFile.exists()) {
return configFile;
}
@@ -74,7 +82,7 @@
}
if(null != sources){
for (File file : sources) {
- if(file.getAbsolutePath().endsWith(path)){
+ if(file.getAbsolutePath().endsWith(platformPath)){
return file;
}
}
@@ -84,7 +92,7 @@
/*
* (non-Javadoc)
- *
+ *
* @see org.richfaces.cdk.FileManager#getFiles()
*/
@Override
14 years, 8 months
JBoss Rich Faces SVN: r16737 - root/ui-sandbox/trunk/components/tables/api/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2010-04-06 12:09:36 -0400 (Tue, 06 Apr 2010)
New Revision: 16737
Modified:
root/ui-sandbox/trunk/components/tables/api/src/main/java/org/richfaces/component/Expandable.java
Log:
add setExpanded method
Modified: root/ui-sandbox/trunk/components/tables/api/src/main/java/org/richfaces/component/Expandable.java
===================================================================
--- root/ui-sandbox/trunk/components/tables/api/src/main/java/org/richfaces/component/Expandable.java 2010-04-06 16:08:35 UTC (rev 16736)
+++ root/ui-sandbox/trunk/components/tables/api/src/main/java/org/richfaces/component/Expandable.java 2010-04-06 16:09:36 UTC (rev 16737)
@@ -4,11 +4,11 @@
import org.richfaces.event.ToggleListener;
-//TODO: nick - move to API
public interface Expandable {
- //TODO: nick - setExpanded()
public boolean isExpanded();
+
+ public void setExpanded(boolean expand);
public void addToggleListener(ToggleListener listener);
14 years, 8 months
JBoss Rich Faces SVN: r16736 - in root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces: renderkit and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2010-04-06 12:08:35 -0400 (Tue, 06 Apr 2010)
New Revision: 16736
Modified:
root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UIToggleControl.java
root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ToggleControlRendererBase.java
Log:
refactor existing toggleControl functionality
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UIToggleControl.java
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UIToggleControl.java 2010-04-06 16:07:37 UTC (rev 16735)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UIToggleControl.java 2010-04-06 16:08:35 UTC (rev 16736)
@@ -1,21 +1,18 @@
package org.richfaces.component;
-import java.util.Collection;
-import java.util.LinkedHashSet;
-
import javax.faces.component.UIComponentBase;
-public abstract class UIToggleControl extends UIComponentBase {
+public class UIToggleControl extends UIComponentBase {
public static final String COMPONENT_TYPE = "org.richfaces.ToggleControl";
public static final String COMPONENT_FAMILY = "org.richfaces.ToggleControl";
-
enum PropertyKeys {
- expandControl, collapseControl, forId, event, execute, render
+ expandControl, collapseControl, forId, switchType, event
}
+
@Override
public String getFamily() {
return COMPONENT_FAMILY;
@@ -37,14 +34,14 @@
getStateHelper().put(PropertyKeys.collapseControl, collapseControl);
}
- public String getForId() {
+ public String getFor() {
return (String) getStateHelper().eval(PropertyKeys.forId, null);
}
- public void setForId(String forId) {
+ public void setFor(String forId) {
getStateHelper().put(PropertyKeys.forId, forId);
}
-
+
public String getEvent() {
return (String) getStateHelper().eval(PropertyKeys.event, "onclick");
@@ -53,38 +50,5 @@
public void setEvent(String event) {
getStateHelper().put(PropertyKeys.event, event);
}
- public Collection<String> getExecute() {
- Collection<String> execute = (Collection<String>)getStateHelper().get(PropertyKeys.execute);
- if(execute == null) {
- execute = getDefaultIds();
- getStateHelper().put(PropertyKeys.execute, execute);
- }
- return execute;
- }
-
- public void addExecuteId(String id){
- //TODO nick - if user has provided collection in bean it shouldn't be modified by the component - create a copy
- getExecute().add(id);
- }
-
- public Collection<String> getRender() {
- Collection<String> render = (Collection<String>)getStateHelper().get(PropertyKeys.render);
- if(render == null) {
- render = getDefaultIds();
- getStateHelper().put(PropertyKeys.render, render);
- }
- return render;
- }
-
- public void addRenderId(String id){
- //TODO nick - if user has provided collection in bean it shouldn't be modified by the component - create a copy
- getRender().add(id);
- }
-
- private Collection<String> getDefaultIds() {
- Collection<String> ids = new LinkedHashSet<String>();
- ids.add("@this");
- return ids;
- }
-
+
}
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ToggleControlRendererBase.java
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ToggleControlRendererBase.java 2010-04-06 16:07:37 UTC (rev 16735)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/renderkit/ToggleControlRendererBase.java 2010-04-06 16:08:35 UTC (rev 16736)
@@ -13,7 +13,6 @@
import javax.faces.context.ResponseWriter;
import org.ajax4jsf.javascript.ScriptUtils;
-import org.ajax4jsf.renderkit.AjaxRendererUtils;
import org.ajax4jsf.renderkit.RendererBase;
import org.ajax4jsf.renderkit.RendererUtils.HTML;
import org.richfaces.component.Expandable;
@@ -46,12 +45,9 @@
private static final String HIDDEN = ":hidden";
+
@Override
protected void doDecode(FacesContext context, UIComponent component) {
- if (!(component instanceof UIToggleControl)) {
- return;
- }
-
UIToggleControl toggle = (UIToggleControl) component;
Map<String, String> params = context.getExternalContext().getRequestParameterMap();
@@ -60,91 +56,93 @@
String state = params.get(hiddenId);
if (state != null && state.trim().length() > 0) {
- boolean newState = Boolean.valueOf(state).booleanValue();
+
UIComponent processed = findComponent(context, toggle);
if (processed instanceof Expandable) {
-
+
+ boolean newState = Boolean.valueOf(state).booleanValue();
boolean prevState = ((Expandable) processed).isExpanded();
+
if (newState != prevState) {
new ToggleEvent(toggle, processed, newState).queue();
}
-
-// toggle.addExecuteId((String)processed.getAttributes().get("clientId"));
-// toggle.addRenderId((String)processed.getAttributes().get("clientId"));
+
}
}
}
protected void encodeControl(FacesContext context, UIComponent component) throws IOException {
+ UIToggleControl toggleControl = (UIToggleControl) component;
- if (component instanceof UIToggleControl) {
- UIToggleControl toggleControl = (UIToggleControl) component;
+ UISubTable subTable = findComponent(context, toggleControl);
+ if (subTable != null) {
+ ResponseWriter writer = context.getResponseWriter();
+
+ String toggleId = toggleControl.getClientId(context);
+ String options = encodeOptions(context, toggleControl, subTable);
+ String switchType = subTable.getExpandMode();
+
+ boolean expanded = subTable.isExpanded();
- UISubTable subTable = findComponent(context, toggleControl);
- //TODO nick - remove the next line
- subTable.getAttributes().get("expanded");
- if (subTable != null) {
- ResponseWriter writer = context.getResponseWriter();
+ encodeControl(context, writer, toggleControl, switchType, expanded, false);
+ encodeControl(context, writer, toggleControl, switchType, !expanded, true);
- String toggleId = toggleControl.getClientId(context);
- String options = encodeOptions(context, toggleControl, subTable);
-
- String switchType = null;//subTable.getSwichType();
-// boolean expanded = subTable.isExpanded();
-
-// encodeControl(context, writer, toggleControl, switchType, expanded, false);
-// encodeControl(context, writer, toggleControl, switchType, !expanded, true);
-
- encodeHiddenInput(context, writer, toggleControl);
-
- writer.startElement(HTML.SCRIPT_ELEM, subTable);
- String registerScript = MessageFormat.format(MANAGER_SCRIPT, toggleId, options);
- writer.writeText(registerScript, null);
- writer.endElement(HTML.SCRIPT_ELEM);
- }
+ encodeHiddenInput(context, writer, toggleControl);
+
+ String registerScript = MessageFormat.format(MANAGER_SCRIPT, toggleId, options);
+ writer.startElement(HTML.SCRIPT_ELEM, subTable);
+ writer.writeText(registerScript, null);
+ writer.endElement(HTML.SCRIPT_ELEM);
}
+
}
protected void encodeControl(FacesContext context, ResponseWriter writer, UIToggleControl control,
- String switchType, boolean expanded, boolean visible) throws IOException {
-
+ String switchType, boolean expanded, boolean visible) throws IOException {
String state = getState(expanded);
-
- String image = expanded ? control.getExpandControl() : control.getCollapseControl();
-
String script = getScript(control, switchType, expanded);
- String style = getStyle(context, control);
String styleClass = getStyleClass(context, control);
+ String style = getStyle(context, control);
writer.startElement(HTML.SPAN_ELEM, control);
writer.writeAttribute(HTML.CLASS_ATTRIBUTE, styleClass, null);
writer.writeAttribute(HTML.STYLE_ATTRIBUTE, style, null);
-
- writer.startElement(HTML.IMG_ELEMENT, control);
- writer.writeAttribute(HTML.ID_ATTRIBUTE, control.getClientId() + ":" + state, null);
-
- if (!visible) {
- writer.writeAttribute(HTML.STYLE_ATTRIBUTE, DISPLAY_NONE, null);
+
+ UIComponent controlFacet = control.getFacet(state);
+ if(controlFacet != null && controlFacet.isRendered()) {
+ if(!visible) {
+ String facetStyle = (String)controlFacet.getAttributes().get("style");
+ facetStyle = facetStyle != null ? facetStyle + "; display: none" : "; display: none";
+ controlFacet.getAttributes().put("style", facetStyle);
+ }
+ controlFacet.encodeAll(context);
+ } else {
+
+ String image = expanded ? control.getExpandControl() : control.getCollapseControl();
+ if (image != null && image.trim().length() > 0) {
+
+ writer.startElement(HTML.IMG_ELEMENT, control);
+ writer.writeAttribute(HTML.ID_ATTRIBUTE, control.getClientId() + ":" + state, null);
+ writer.writeAttribute(HTML.SRC_ATTRIBUTE, image, null);
+ writer.writeAttribute(HTML.ALT_ATTRIBUTE, "", null);
+
+ if (!visible) {
+ writer.writeAttribute(HTML.STYLE_ATTRIBUTE, DISPLAY_NONE, null);
+ }
+
+ //TODO: anton - remove inline script !
+ if (script != null && script.length() > 0) {
+ String eventName = control.getEvent();
+ writer.writeAttribute(eventName, script, null);
+ }
+ writer.endElement(HTML.IMG_ELEMENT);
+ }
}
-
- if (script != null && script.length() > 0) {
- String eventName = control.getEvent();
- writer.writeAttribute(eventName, script, null);
- }
-
- //TODO nick - if image is empty, then no tag should be encoded
- //TODO nick - "alt" attribute is required for <IMG>
- if (image != null && image.trim().length() > 0) {
- writer.writeAttribute(HTML.SRC_ATTRIBUTE, image, null);
- }
-
- writer.endElement(HTML.IMG_ELEMENT);
writer.endElement(HTML.SPAN_ELEM);
}
public String encodeOptions(FacesContext context, UIToggleControl toggleControl, UISubTable subTable) {
-
UIForm nestingForm = getUtils().getNestingForm(context, toggleControl);
String formId = nestingForm.getClientId(context);
@@ -163,8 +161,7 @@
}
public void encodeHiddenInput(FacesContext context, ResponseWriter writer, UIComponent component)
- throws IOException {
-
+ throws IOException {
String hiddenId = component.getClientId(context) + HIDDEN;
writer.startElement(HTML.INPUT_ELEM, component);
@@ -184,19 +181,19 @@
}
protected UISubTable findComponent(FacesContext context, UIToggleControl toggleControl) {
- String forId = toggleControl.getForId();
-
+ String forId = toggleControl.getFor();
if (forId != null && forId.length() > 0) {
+
UIComponent subTable = getUtils().findComponentFor(context, toggleControl, forId);
if (subTable instanceof UISubTable) {
return (UISubTable) subTable;
}
+
}
return null;
}
public String getScript(UIToggleControl toggleControl, String switchType, boolean isExpanded) {
-
String pattern = null;
/*
if (switchType.equals(UISubTable.SWITCH_TYPE_CLIENT)) {
@@ -208,11 +205,10 @@
}*/
String toggleId = toggleControl.getClientId();
- return MessageFormat.format(pattern, toggleId, isExpanded);
+ return ""; //MessageFormat.format(pattern, toggleId, isExpanded);
}
protected String getState(boolean expand) {
return expand ? EXPAND_STATE : COLLAPSE_STATE;
}
-
}
14 years, 8 months
JBoss Rich Faces SVN: r16735 - root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2010-04-06 12:07:37 -0400 (Tue, 06 Apr 2010)
New Revision: 16735
Modified:
root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UISubTable.java
Log:
add expandMode methods
Modified: root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UISubTable.java
===================================================================
--- root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UISubTable.java 2010-04-06 15:52:57 UTC (rev 16734)
+++ root/ui-sandbox/trunk/components/tables/ui/src/main/java/org/richfaces/component/UISubTable.java 2010-04-06 16:07:37 UTC (rev 16735)
@@ -22,12 +22,7 @@
package org.richfaces.component;
import javax.el.MethodExpression;
-import javax.faces.component.UIComponent;
-import javax.faces.event.AbortProcessingException;
-import org.ajax4jsf.model.DataComponentState;
-import org.ajax4jsf.model.RepeatState;
-import org.richfaces.component.state.DataTableState;
import org.richfaces.event.ToggleListener;
/**
@@ -35,17 +30,21 @@
*
*/
+public class UISubTable extends UIDataTableBase implements Column, Expandable {
-public class UISubTable extends UIDataTableBase implements Column {
-
enum PropertyKeys {
- switchType, expanded, toggleExpression
+ expandMode, expanded, toggleExpression
}
+
+ public static final String EXPANDMODE_AJAX = "ajax";
+
+ public static final String EXPANDMODE_SERVER = "server";
+
+ public static final String EXPANDMODE_CLIENT = "client";
-
-
+
public boolean isExpanded() {
- return (Boolean)getStateHelper().eval(PropertyKeys.expanded, false);
+ return (Boolean)getStateHelper().eval(PropertyKeys.expanded, true);
}
public void setExpanded(boolean expanded) {
@@ -89,7 +88,14 @@
public ToggleListener[] getToggleListeners() {
return (ToggleListener[]) getFacesListeners(ToggleListener.class);
}
-
+
+ public String getExpandMode() {
+ return (String)getStateHelper().eval(PropertyKeys.expandMode,EXPANDMODE_AJAX);
+ }
+
+ public void setExpandMode(String expandMode) {
+ getStateHelper().put(PropertyKeys.expandMode, expandMode);
+ }
}
14 years, 8 months