JBoss Rich Faces SVN: r16896 - root/framework/trunk/impl/src/main/resources/META-INF/resources.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2010-05-05 11:07:26 -0400 (Wed, 05 May 2010)
New Revision: 16896
Modified:
root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-queue.js
root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces.js
Log:
queue options
Modified: root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-queue.js
===================================================================
--- root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-queue.js 2010-05-05 14:32:59 UTC (rev 16895)
+++ root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-queue.js 2010-05-05 15:07:26 UTC (rev 16896)
@@ -363,6 +363,10 @@
$.extend(defaultQueueOptions, id);
}
return richfaces.queue;
+ },
+
+ getQueueOptions: function (id) {
+ return defaultQueueOptions[id] || {};
}
}
}());
Modified: root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces.js
===================================================================
--- root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces.js 2010-05-05 14:32:59 UTC (rev 16895)
+++ root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces.js 2010-05-05 15:07:26 UTC (rev 16896)
@@ -480,12 +480,12 @@
}
}());
- richfaces.ajax = function(source, event, options) {
-
- options = options || {};
+ richfaces.ajax = function(source, event, parameters, queueId) {
+
var sourceId = (typeof source == 'object' && source.id) ? source.id : source;
+ var options = (richfaces.queue) ? richfaces.queue.getQueueOptions(queueId || sourceId) : {};
- parameters = options.parameters || {}; // TODO: change "parameters" to "richfaces.ajax.params"
+ //parameters = options.parameters || {}; // TODO: change "parameters" to "richfaces.ajax.params"
parameters.execute = "@component";
parameters.render = "@component";
14 years, 8 months
JBoss Rich Faces SVN: r16895 - in root/framework/trunk/impl/src: test/resources/javascript and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2010-05-05 10:32:59 -0400 (Wed, 05 May 2010)
New Revision: 16895
Modified:
root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-queue.js
root/framework/trunk/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js
Log:
queue changes
Modified: root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-queue.js
===================================================================
--- root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-queue.js 2010-05-05 09:47:34 UTC (rev 16894)
+++ root/framework/trunk/impl/src/main/resources/META-INF/resources/richfaces-queue.js 2010-05-05 14:32:59 UTC (rev 16895)
@@ -17,10 +17,10 @@
* JSF 2.0 original method that sends an asynchronous ajax request to the server
* see jsf.ajax.request method for parameter's description
* @function
- * @name RichFaces.ajax.request
+ * @name RichFaces.ajax.jsfRequest
*
* */
- richfaces.ajax.request = jsf.ajax.request;
+ richfaces.ajax.jsfRequest = jsf.ajax.request;
/**
* RichFaces wrapper function of JSF 2.0 original method jsf.ajax.request
@@ -32,7 +32,6 @@
* @param {object} [options] - The set name/value pairs that can be sent as request parameters to control client and/or server side request processing
* */
jsf.ajax.request = function request(source, event, options) {
- //richfaces.ajax.request(source, event, options);
richfaces.queue.push(source, event, options);
};
@@ -52,6 +51,7 @@
var defaultQueueOptions = {};
defaultQueueOptions[DEFAULT_QUEUE_ID] = {requestDelay:0, ignoreDupResponse:false, timeout:0};
+ var eventHandlers = {};
var QueueEntry = function(queue, source, event, options) {
this.queue = queue;
@@ -176,10 +176,10 @@
});
// TODO: add this two variables to richfaces and report bug to jsf about constants
- //TODO: what's the point in such kind of hash?
- var jsfDataTypes = {'event' : 'event'};
- var jsfEventNames = {'success' : 'success'};
-
+ var JSF_EVENT_TYPE = 'event';
+ var JSF_EVENT_SUCCESS = 'success';
+ var JSF_EVENT_COMPLETE = 'complete';
+
var log = richfaces.log;
var items = [];
var lastRequestedEntry;
@@ -193,7 +193,7 @@
};
var onComplete = function (data) {
- if (jsfDataTypes[data.type]=='event' && jsfEventNames[data.status]=='success') {
+ if (data.type == JSF_EVENT_TYPE && data.status == JSF_EVENT_SUCCESS) { // or JSF_EVENT_COMPLETE will be rather
log.debug("richfaces.queue: ajax submit successfull");
lastRequestedEntry = null;
submitFirst();
@@ -215,11 +215,12 @@
if (items[0].getReadyToSubmit()) {
lastRequestedEntry = items.shift();
log.debug("richfaces.queue: will submit request NOW");
- //TODO: copy of event should be created otherwise IE will fail
var o = lastRequestedEntry.options;
+ // copy of event should be created otherwise IE will fail
+ var e = $.extend({}, lastRequestedEntry.event);
//lastRequestedEntry.source.appendParameter("AJAX:EVENTS_COUNT", lastRequestedEntry.eventsCount);
o["AJAX:EVENTS_COUNT"] = lastRequestedEntry.eventsCount;
- richfaces.ajax.request(lastRequestedEntry.source, lastRequestedEntry.event, o);
+ richfaces.ajax.jsfRequest(lastRequestedEntry.source, e, o);
if (o.queueonsubmit) {
o.queueonsubmit.call(lastRequestedEntry);
}
@@ -244,7 +245,11 @@
};
return {
-
+ /**
+ * @constant
+ * @name RichFaces.queue.DEFAULT_QUEUE_ID
+ * @type string
+ * */
DEFAULT_QUEUE_ID: DEFAULT_QUEUE_ID,
/**
@@ -329,7 +334,6 @@
* @name RichFaces.queue.clear
* */
clear: function () {
- //TODO: clear queue
var lastEntry = getLastEntry();
if (lastEntry) {
lastEntry.stopTimer();
Modified: root/framework/trunk/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js
===================================================================
--- root/framework/trunk/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js 2010-05-05 09:47:34 UTC (rev 16894)
+++ root/framework/trunk/impl/src/test/resources/javascript/richfaces-queue-qunit-request.js 2010-05-05 14:32:59 UTC (rev 16895)
@@ -8,12 +8,21 @@
// reference to original jsf.ajax.request function
test("Reference to origional jsf.ajax.request function", function() {
expect(1);
- equals(RichFaces.ajax.request, jsf_ajax_request);
+ equals(RichFaces.ajax.jsfRequest, jsf_ajax_request);
});
- //TODO: add setQueueOptions here
+ // default queue id
+ test("Default queue id", function() {
+ expect(1);
+ equals(RichFaces.queue.DEFAULT_QUEUE_ID, "org.richfaces.queue.global");
+ });
+
+ // setQueueOptions
+ test("setQueueOptions chain", function() {
+ expect(1);
+ equals(RichFaces.queue.setQueueOptions(), RichFaces.queue);
+ });
-
//TODO: add request test here
-
+ //jsf.ajax.request
});
\ No newline at end of file
14 years, 8 months
JBoss Rich Faces SVN: r16894 - in root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk: apt and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2010-05-05 05:47:34 -0400 (Wed, 05 May 2010)
New Revision: 16894
Modified:
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/Generator.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/TaskFactoryImpl.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/generate/freemarker/FreeMakerModule.java
root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/generate/taglib/TaglibWriter.java
Log:
RF-7826 Migrate A1 components to new CDK
remove logs
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/Generator.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/Generator.java 2010-05-05 06:23:05 UTC (rev 16893)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/Generator.java 2010-05-05 09:47:34 UTC (rev 16894)
@@ -121,7 +121,15 @@
new TemplateModule(),
new XmlModule(),
new TaglibModule());
-
+
+ if (!log.isDebugEnabled()) {
+ try {
+ freemarker.log.Logger.selectLoggerLibrary(freemarker.log.Logger.LIBRARY_NONE);
+ } catch (ClassNotFoundException e) {
+ // Do nothing.
+ }
+ }
+
// Create builder instance.
this.libraryBuilder = injector.getInstance(LibraryBuilder.class);
}
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/TaskFactoryImpl.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/TaskFactoryImpl.java 2010-05-05 06:23:05 UTC (rev 16893)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/apt/TaskFactoryImpl.java 2010-05-05 09:47:34 UTC (rev 16894)
@@ -23,8 +23,6 @@
package org.richfaces.cdk.apt;
-import com.google.common.collect.ImmutableCollection;
-import com.google.common.collect.ImmutableList;
import com.google.inject.Inject;
import org.richfaces.cdk.CdkClassLoader;
import org.richfaces.cdk.CdkException;
@@ -48,7 +46,10 @@
import java.io.File;
import java.io.IOException;
import java.nio.charset.Charset;
+import java.util.ArrayList;
+import java.util.Arrays;
import java.util.Collections;
+import java.util.List;
import java.util.Locale;
/**
@@ -83,9 +84,9 @@
}
}
- private static final ImmutableCollection<String> COMPILER_OPTIONS =
- ImmutableList.of("-proc:only", "-implicit:class"/*, "-verbose"*/);
-
+ private static List<String> compilerOptions =
+ new ArrayList<String>(Arrays.asList("-proc:only", "-implicit:class"));
+
@Inject
private Logger log;
@@ -125,8 +126,13 @@
diagnosticListener = new DiagnosticListenerImplementation();
Iterable<? extends JavaFileObject> sourceObjects = getFileManager()
.getJavaFileObjectsFromFiles(sourceFolders.getFiles());
+
+ if (log.isDebugEnabled()) {
+ compilerOptions.add("-verbose");
+ }
+
CompilationTask task = getJavaCompiler()
- .getTask(null, getFileManager(), diagnosticListener, COMPILER_OPTIONS, null, sourceObjects);
+ .getTask(null, getFileManager(), diagnosticListener, compilerOptions, null, sourceObjects);
task.setLocale(locale);
task.setProcessors(Collections.singleton(cdkProcessor));
return task;
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/generate/freemarker/FreeMakerModule.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/generate/freemarker/FreeMakerModule.java 2010-05-05 06:23:05 UTC (rev 16893)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/generate/freemarker/FreeMakerModule.java 2010-05-05 09:47:34 UTC (rev 16894)
@@ -24,7 +24,6 @@
package org.richfaces.cdk.generate.freemarker;
import com.google.inject.AbstractModule;
-
import freemarker.template.Configuration;
import freemarker.template.ObjectWrapper;
@@ -35,9 +34,6 @@
*/
public class FreeMakerModule extends AbstractModule {
- /* (non-Javadoc)
- * @see com.google.inject.AbstractModule#configure()
- */
@Override
protected void configure() {
bind(Configuration.class).to(CdkConfiguration.class);
Modified: root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/generate/taglib/TaglibWriter.java
===================================================================
--- root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/generate/taglib/TaglibWriter.java 2010-05-05 06:23:05 UTC (rev 16893)
+++ root/cdk/trunk/plugins/generator/src/main/java/org/richfaces/cdk/generate/taglib/TaglibWriter.java 2010-05-05 09:47:34 UTC (rev 16894)
@@ -23,6 +23,7 @@
package org.richfaces.cdk.generate.taglib;
import com.google.inject.Inject;
+import org.dom4j.Document;
import org.dom4j.io.OutputFormat;
import org.dom4j.io.XMLWriter;
import org.richfaces.cdk.CdkException;
@@ -57,12 +58,17 @@
TaglibGeneratorVisitor visitor = new TaglibGeneratorVisitor(generator.getNamespace());
library.accept(visitor);
+ Document document = visitor.getDocument();
+ if (document.getRootElement().elements().isEmpty()) {
+ return;
+ }
+
try {
OutputFormat format1 = OutputFormat.createPrettyPrint();
format1.setIndentSize(4);
XMLWriter writer = new XMLWriter(getOutput(), format1);
- writer.write(visitor.getDocument());
+ writer.write(document);
writer.close();
} catch (IOException e) {
e.printStackTrace(); // TODO
14 years, 8 months
JBoss Rich Faces SVN: r16893 - tags/3.3.3.Final/docs/userguide/en/src/main/docbook.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-05-05 02:23:05 -0400 (Wed, 05 May 2010)
New Revision: 16893
Modified:
tags/3.3.3.Final/docs/userguide/en/src/main/docbook/master.xml
Log:
Fixed tld links (RFPL-572)
Modified: tags/3.3.3.Final/docs/userguide/en/src/main/docbook/master.xml
===================================================================
--- tags/3.3.3.Final/docs/userguide/en/src/main/docbook/master.xml 2010-05-05 06:11:46 UTC (rev 16892)
+++ tags/3.3.3.Final/docs/userguide/en/src/main/docbook/master.xml 2010-05-05 06:23:05 UTC (rev 16893)
@@ -134,9 +134,9 @@
<!ENTITY migrationguide "../../migrationguide/html_single/index.html">
<!ENTITY photoalbumguide "../../realworld/html_single/index.html">
<!ENTITY realworld "../../realworld/html_single/index.html">
- <!ENTITY tlddoc "../../tlddoc/index.html">
- <!ENTITY apidoc "../../apidoc/index.html">
- <!ENTITY apidoc_framework "../../apidoc_framework/index.html">
+ <!ENTITY tlddoc "../../tlddoc/">
+ <!ENTITY apidoc "../../apidoc/">
+ <!ENTITY apidoc_framework "../../apidoc_framework/">
]>
<book>
14 years, 8 months
JBoss Rich Faces SVN: r16892 - branches/community/3.3.X/docs/userguide/en/src/main/docbook.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-05-05 02:11:46 -0400 (Wed, 05 May 2010)
New Revision: 16892
Modified:
branches/community/3.3.X/docs/userguide/en/src/main/docbook/master.xml
Log:
Fixed tld links (RFPL-572)
Modified: branches/community/3.3.X/docs/userguide/en/src/main/docbook/master.xml
===================================================================
--- branches/community/3.3.X/docs/userguide/en/src/main/docbook/master.xml 2010-05-04 22:43:58 UTC (rev 16891)
+++ branches/community/3.3.X/docs/userguide/en/src/main/docbook/master.xml 2010-05-05 06:11:46 UTC (rev 16892)
@@ -134,9 +134,9 @@
<!ENTITY migrationguide "../../migrationguide/html_single/index.html">
<!ENTITY photoalbumguide "../../realworld/html_single/index.html">
<!ENTITY realworld "../../realworld/html_single/index.html">
- <!ENTITY tlddoc "../../tlddoc/index.html">
- <!ENTITY apidoc "../../apidoc/index.html">
- <!ENTITY apidoc_framework "../../apidoc_framework/index.html">
+ <!ENTITY tlddoc "../../tlddoc/">
+ <!ENTITY apidoc "../../apidoc/">
+ <!ENTITY apidoc_framework "../../apidoc_framework/">
]>
<book>
14 years, 8 months
JBoss Rich Faces SVN: r16891 - root/examples/trunk/components/core-demo/src/main/webapp.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-05-04 18:43:58 -0400 (Tue, 04 May 2010)
New Revision: 16891
Added:
root/examples/trunk/components/core-demo/src/main/webapp/attachQueue.xhtml
Modified:
root/examples/trunk/components/core-demo/src/main/webapp/welcome.xhtml
Log:
https://jira.jboss.org/jira/browse/RFPL-518
Added: root/examples/trunk/components/core-demo/src/main/webapp/attachQueue.xhtml
===================================================================
--- root/examples/trunk/components/core-demo/src/main/webapp/attachQueue.xhtml (rev 0)
+++ root/examples/trunk/components/core-demo/src/main/webapp/attachQueue.xhtml 2010-05-04 22:43:58 UTC (rev 16891)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:a4j="http://richfaces.org/a4j">
+<f:view>
+ <h:head>
+ </h:head>
+ <h:body>
+ <h:form id="form">
+
+ <a4j:ajax>
+ <h:inputText />
+
+ <a4j:attachQueue id="firstAttach" />
+ </a4j:ajax>
+
+ <a4j:ajax event="valueChange">
+ <h:panelGroup>
+ <a4j:ajax event="valueChange">
+ <h:inputText />
+
+ <a4j:commandLink value="Link">
+ <a4j:attachQueue id="linkAttach" />
+ </a4j:commandLink>
+
+ <a4j:attachQueue id="secondAttach" />
+ </a4j:ajax>
+ </h:panelGroup>
+ </a4j:ajax>
+ </h:form>
+
+ <ui:debug hotkey="L" />
+ </h:body>
+</f:view>
+</html>
\ No newline at end of file
Modified: root/examples/trunk/components/core-demo/src/main/webapp/welcome.xhtml
===================================================================
--- root/examples/trunk/components/core-demo/src/main/webapp/welcome.xhtml 2010-05-04 22:40:24 UTC (rev 16890)
+++ root/examples/trunk/components/core-demo/src/main/webapp/welcome.xhtml 2010-05-04 22:43:58 UTC (rev 16891)
@@ -10,6 +10,7 @@
<h1>Welcome To RichFaces 4.x Core Demo</h1>
<ul>
<li><h:link outcome="ajax">a4j:ajax</h:link></li>
+ <li><h:link outcome="attachQueue">a4j:attachQueue</h:link></li>
<li><h:link outcome="button">a4j:commandButton</h:link></li>
<li><h:link outcome="link">a4j:commandLink</h:link></li>
<li><h:link outcome="log">a4j:log</h:link></li>
14 years, 8 months
JBoss Rich Faces SVN: r16890 - in root/ui/trunk/components/core/src/main: java/org/richfaces/component and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-05-04 18:40:24 -0400 (Tue, 04 May 2010)
New Revision: 16890
Modified:
root/ui/trunk/components/core/src/main/java/org/ajax4jsf/component/behavior/AjaxBehavior.java
root/ui/trunk/components/core/src/main/java/org/richfaces/component/AbstractAttachQueue.java
root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AjaxHandler.java
root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AttachQueueHandler.java
root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AttachQueueInfo.java
root/ui/trunk/components/core/src/main/resources/META-INF/a4j.taglib.xml
Log:
https://jira.jboss.org/jira/browse/RFPL-518
Modified: root/ui/trunk/components/core/src/main/java/org/ajax4jsf/component/behavior/AjaxBehavior.java
===================================================================
--- root/ui/trunk/components/core/src/main/java/org/ajax4jsf/component/behavior/AjaxBehavior.java 2010-05-04 18:06:22 UTC (rev 16889)
+++ root/ui/trunk/components/core/src/main/java/org/ajax4jsf/component/behavior/AjaxBehavior.java 2010-05-04 22:40:24 UTC (rev 16890)
@@ -6,6 +6,7 @@
import javax.el.ELContext;
import javax.el.ValueExpression;
+import javax.faces.component.UIComponent;
import javax.faces.component.UIComponentBase;
import javax.faces.component.behavior.FacesBehavior;
import javax.faces.context.FacesContext;
@@ -239,6 +240,10 @@
this.queueId = queueId;
clearInitialState();
}
+
+ public void attachToQueue(FacesContext context, UIComponent queueComponent) {
+ setQueueId(queueComponent.getClientId(context));
+ }
public boolean isLimitRender() {
if (this.limitRender != null) {
Modified: root/ui/trunk/components/core/src/main/java/org/richfaces/component/AbstractAttachQueue.java
===================================================================
--- root/ui/trunk/components/core/src/main/java/org/richfaces/component/AbstractAttachQueue.java 2010-05-04 18:06:22 UTC (rev 16889)
+++ root/ui/trunk/components/core/src/main/java/org/richfaces/component/AbstractAttachQueue.java 2010-05-04 22:40:24 UTC (rev 16890)
@@ -21,12 +21,14 @@
*/
package org.richfaces.component;
+import javax.faces.component.UIComponent;
import javax.faces.component.UIComponentBase;
+import javax.faces.context.FacesContext;
+import org.richfaces.cdk.annotations.Attribute;
import org.richfaces.cdk.annotations.JsfComponent;
import org.richfaces.cdk.annotations.Tag;
import org.richfaces.cdk.annotations.TagType;
-import org.richfaces.cdk.annotations.Attribute;
/**
* @author Nick Belaevski
@@ -40,7 +42,13 @@
public abstract class AbstractAttachQueue extends UIComponentBase {
public static final String COMPONENT_TYPE = "org.richfaces.AttachQueue";
+
+ public static final String QUEUE_ID_ATTRIBUTE = "queueId";
+ private enum PropertyKeys {
+ attachToParent
+ }
+
@Attribute
public abstract String getRequestSimilarityId();
@@ -51,7 +59,7 @@
public abstract int getTimeout();
@Attribute
- public abstract boolean isIgnoreDupresponses();
+ public abstract boolean isIgnoreDupResponses();
@Attribute
public abstract String getOnrequestqueue();
@@ -64,4 +72,37 @@
return null;
}
+ public boolean isAttachToParent() {
+ Object propertyValue = getStateHelper().get(PropertyKeys.attachToParent);
+ if (propertyValue == null) {
+ //default value is true
+ return true;
+ } else {
+ return Boolean.TRUE.equals(propertyValue);
+ }
+ }
+
+ public void setAttachToParent(boolean attachToParent) {
+ getStateHelper().put(PropertyKeys.attachToParent, attachToParent);
+ }
+
+ @Override
+ public void setParent(UIComponent parent) {
+ UIComponent oldParent = getParent();
+
+ super.setParent(parent);
+
+ if (isAttachToParent()) {
+ if (oldParent != null) {
+ oldParent.getAttributes().remove(QUEUE_ID_ATTRIBUTE);
+ }
+
+ if (parent != null) {
+ FacesContext context = getFacesContext();
+ String clientId = getClientId(context);
+
+ parent.getAttributes().put(QUEUE_ID_ATTRIBUTE, clientId);
+ }
+ }
+ }
}
Modified: root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AjaxHandler.java
===================================================================
--- root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AjaxHandler.java 2010-05-04 18:06:22 UTC (rev 16889)
+++ root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AjaxHandler.java 2010-05-04 22:40:24 UTC (rev 16890)
@@ -53,8 +53,10 @@
import javax.faces.view.facelets.TagHandler;
import org.ajax4jsf.component.behavior.AjaxBehavior;
+import org.richfaces.component.AbstractAttachQueue;
import org.richfaces.view.facelets.html.BehaviorStack.BehaviorInfo;
+//TODO nick - use TagHandlerDelegate
public class AjaxHandler extends TagHandler implements BehaviorHolderAttachedObjectHandler {
// TODO - is that implementation dependency?
@@ -110,7 +112,7 @@
BehaviorInfo behaviorInfo = ajaxBehaviors.popBehavior();
if (behaviorInfo != null) {
if (behaviorInfo.isWrapping()) {
- UIComponent attachQueue = attachQueueInfo.getAttachQueue();
+ AbstractAttachQueue attachQueue = attachQueueInfo.getAttachQueue();
assignAttachQueueComponent(context, attachQueue, behaviorInfo.getBehaviors());
} else {
applyNested(ctx, parent, ajaxBehavior);
@@ -192,19 +194,17 @@
}
}
- private void assignAttachQueueComponent(FacesContext context, UIComponent attachQueue,
+ private void assignAttachQueueComponent(FacesContext context, AbstractAttachQueue attachQueue,
List<ClientBehavior> behaviors) {
if (behaviors != null && attachQueue != null) {
- String queueId = attachQueue.getClientId(context);
-
for (ClientBehavior behavior : behaviors) {
if (!(behavior instanceof AjaxBehavior)) {
continue;
}
AjaxBehavior ajaxBehavior = (AjaxBehavior) behavior;
- ajaxBehavior.setQueueId(queueId);
+ ajaxBehavior.attachToQueue(context, attachQueue);
}
}
}
Modified: root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AttachQueueHandler.java
===================================================================
--- root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AttachQueueHandler.java 2010-05-04 18:06:22 UTC (rev 16889)
+++ root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AttachQueueHandler.java 2010-05-04 22:40:24 UTC (rev 16890)
@@ -26,6 +26,8 @@
import javax.faces.view.facelets.ComponentHandler;
import javax.faces.view.facelets.FaceletContext;
+import org.richfaces.component.AbstractAttachQueue;
+
/**
* @author Nick Belaevski
*
@@ -49,7 +51,9 @@
if (attachQueueInfo != null) {
UIComponent queueInfoParent = attachQueueInfo.getParentComponent();
if (queueInfoParent.equals(parent)) {
- attachQueueInfo.setAttachQueue(c);
+ AbstractAttachQueue attachQueue = ((AbstractAttachQueue) c);
+ attachQueueInfo.setAttachQueue(attachQueue);
+ attachQueue.setAttachToParent(false);
}
}
}
Modified: root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AttachQueueInfo.java
===================================================================
--- root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AttachQueueInfo.java 2010-05-04 18:06:22 UTC (rev 16889)
+++ root/ui/trunk/components/core/src/main/java/org/richfaces/view/facelets/html/AttachQueueInfo.java 2010-05-04 22:40:24 UTC (rev 16890)
@@ -23,6 +23,8 @@
import javax.faces.component.UIComponent;
+import org.richfaces.component.AbstractAttachQueue;
+
/**
* @author Nick Belaevski
*
@@ -31,7 +33,7 @@
private UIComponent parentComponent;
- private UIComponent attachQueue;
+ private AbstractAttachQueue attachQueue;
public AttachQueueInfo(UIComponent parentComponent) {
super();
@@ -42,11 +44,11 @@
return parentComponent;
}
- public void setAttachQueue(UIComponent attachQueue) {
+ public void setAttachQueue(AbstractAttachQueue attachQueue) {
this.attachQueue = attachQueue;
}
- public UIComponent getAttachQueue() {
+ public AbstractAttachQueue getAttachQueue() {
return attachQueue;
}
Modified: root/ui/trunk/components/core/src/main/resources/META-INF/a4j.taglib.xml
===================================================================
--- root/ui/trunk/components/core/src/main/resources/META-INF/a4j.taglib.xml 2010-05-04 18:06:22 UTC (rev 16889)
+++ root/ui/trunk/components/core/src/main/resources/META-INF/a4j.taglib.xml 2010-05-04 22:40:24 UTC (rev 16890)
@@ -89,4 +89,11 @@
<handler-class>org.richfaces.view.facelets.html.AjaxHandler</handler-class>
</behavior>
</tag>
+ <tag>
+ <tag-name>attachQueue</tag-name>
+ <component>
+ <component-type>org.richfaces.AttachQueue</component-type>
+ <handler-class>org.richfaces.view.facelets.html.AttachQueueHandler</handler-class>
+ </component>
+ </tag>
</facelet-taglib>
14 years, 8 months
JBoss Rich Faces SVN: r16889 - in tags: 3.3.1.SP2 and 218 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-05-04 14:06:22 -0400 (Tue, 04 May 2010)
New Revision: 16889
Added:
tags/3.3.1.SP2/
Modified:
tags/3.3.1.SP2/cdk/generator/pom.xml
tags/3.3.1.SP2/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.1.SP2/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP2/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.1.SP2/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP2/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.1.SP2/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP2/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.1.SP2/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP2/cdk/maven-archetype-theme/pom.xml
tags/3.3.1.SP2/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP2/cdk/maven-cdk-plugin/pom.xml
tags/3.3.1.SP2/cdk/maven-javascript-plugin/pom.xml
tags/3.3.1.SP2/cdk/maven-resource-dependency-plugin/pom.xml
tags/3.3.1.SP2/cdk/pom.xml
tags/3.3.1.SP2/docs/cdkguide/en/pom.xml
tags/3.3.1.SP2/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml
tags/3.3.1.SP2/docs/cdkguide/en/src/main/docbook/modules/devsample.xml
tags/3.3.1.SP2/docs/cdkguide/en/src/main/docbook/modules/setup.xml
tags/3.3.1.SP2/docs/cdkguide/pom.xml
tags/3.3.1.SP2/docs/common-resources/en/pom.xml
tags/3.3.1.SP2/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
tags/3.3.1.SP2/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
tags/3.3.1.SP2/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.SP2/docs/common-resources/pom.xml
tags/3.3.1.SP2/docs/faq/en/pom.xml
tags/3.3.1.SP2/docs/faq/pom.xml
tags/3.3.1.SP2/docs/highlight/pom.xml
tags/3.3.1.SP2/docs/migrationguide/en/pom.xml
tags/3.3.1.SP2/docs/migrationguide/pom.xml
tags/3.3.1.SP2/docs/photo_album_app_guide/en/pom.xml
tags/3.3.1.SP2/docs/photo_album_app_guide/pom.xml
tags/3.3.1.SP2/docs/pom.xml
tags/3.3.1.SP2/docs/userguide/en/pom.xml
tags/3.3.1.SP2/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
tags/3.3.1.SP2/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.1.SP2/docs/userguide/pom.xml
tags/3.3.1.SP2/examples/photoalbum/assembly/pom.xml
tags/3.3.1.SP2/examples/photoalbum/pom.xml
tags/3.3.1.SP2/examples/photoalbum/source/ear/pom.xml
tags/3.3.1.SP2/examples/photoalbum/source/ejb/pom.xml
tags/3.3.1.SP2/examples/photoalbum/source/pom.xml
tags/3.3.1.SP2/examples/photoalbum/source/web/pom.xml
tags/3.3.1.SP2/examples/photoalbum/tests/pom.xml
tags/3.3.1.SP2/extensions/gwt/pom.xml
tags/3.3.1.SP2/extensions/pom.xml
tags/3.3.1.SP2/extensions/seam/pom.xml
tags/3.3.1.SP2/extensions/trinidad/pom.xml
tags/3.3.1.SP2/framework/api/pom.xml
tags/3.3.1.SP2/framework/impl/pom.xml
tags/3.3.1.SP2/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.3.1.SP2/framework/jsf-test/pom.xml
tags/3.3.1.SP2/framework/pom.xml
tags/3.3.1.SP2/framework/test/pom.xml
tags/3.3.1.SP2/pom.xml
tags/3.3.1.SP2/samples/beanValidatorSample/pom.xml
tags/3.3.1.SP2/samples/calendar-sample/pom.xml
tags/3.3.1.SP2/samples/colorPickerDemo/pom.xml
tags/3.3.1.SP2/samples/columnsDemo/pom.xml
tags/3.3.1.SP2/samples/combobox-sample/pom.xml
tags/3.3.1.SP2/samples/contextMenuDemo/pom.xml
tags/3.3.1.SP2/samples/createProject.sh
tags/3.3.1.SP2/samples/darkX/pom.xml
tags/3.3.1.SP2/samples/dataFilterSliderDemo/pom.xml
tags/3.3.1.SP2/samples/dataTableDemo/pom.xml
tags/3.3.1.SP2/samples/datascroller-sample/pom.xml
tags/3.3.1.SP2/samples/dragDropDemo/pom.xml
tags/3.3.1.SP2/samples/dropdownmenu-sample/pom.xml
tags/3.3.1.SP2/samples/editor-sample/pom.xml
tags/3.3.1.SP2/samples/editorSeam-sample/pom.xml
tags/3.3.1.SP2/samples/effect-sample/pom.xml
tags/3.3.1.SP2/samples/extendedDataTable-sample/pom.xml
tags/3.3.1.SP2/samples/fileUploadDemo/pom.xml
tags/3.3.1.SP2/samples/functions-demo/pom.xml
tags/3.3.1.SP2/samples/glassX/pom.xml
tags/3.3.1.SP2/samples/gmap-sample/pom.xml
tags/3.3.1.SP2/samples/hotKey-sample/pom.xml
tags/3.3.1.SP2/samples/inplaceInput-sample/pom.xml
tags/3.3.1.SP2/samples/inplaceSelect-sample/pom.xml
tags/3.3.1.SP2/samples/inputNumberSliderDemo/pom.xml
tags/3.3.1.SP2/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.1.SP2/samples/jQuery-sample/pom.xml
tags/3.3.1.SP2/samples/jira-data/pom.xml
tags/3.3.1.SP2/samples/laguna/pom.xml
tags/3.3.1.SP2/samples/layout-sample/pom.xml
tags/3.3.1.SP2/samples/listShuttleDemo/pom.xml
tags/3.3.1.SP2/samples/local-value-demo/pom.xml
tags/3.3.1.SP2/samples/modalpanel-sample/pom.xml
tags/3.3.1.SP2/samples/orderingListDemo/pom.xml
tags/3.3.1.SP2/samples/panel-sample/pom.xml
tags/3.3.1.SP2/samples/panelbar-sample/pom.xml
tags/3.3.1.SP2/samples/panelmenu-sample/pom.xml
tags/3.3.1.SP2/samples/pickList-sample/pom.xml
tags/3.3.1.SP2/samples/pom.xml
tags/3.3.1.SP2/samples/progressBarDemo/pom.xml
tags/3.3.1.SP2/samples/queue-sample/pom.xml
tags/3.3.1.SP2/samples/rich-message-demo/pom.xml
tags/3.3.1.SP2/samples/richfaces-art-datatable/pom.xml
tags/3.3.1.SP2/samples/richfaces-demo/pom.xml
tags/3.3.1.SP2/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.1.SP2/samples/richfaces-ear-demo/pom.xml
tags/3.3.1.SP2/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.1.SP2/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.1.SP2/samples/scrollableDataTableDemo/pom.xml
tags/3.3.1.SP2/samples/seamEAR/ear/pom.xml
tags/3.3.1.SP2/samples/seamEAR/ejbs/pom.xml
tags/3.3.1.SP2/samples/seamEAR/pom.xml
tags/3.3.1.SP2/samples/seamEAR/primary-source/pom.xml
tags/3.3.1.SP2/samples/seamEAR/projects/logging/pom.xml
tags/3.3.1.SP2/samples/seamEAR/projects/pom.xml
tags/3.3.1.SP2/samples/seamEAR/wars/pom.xml
tags/3.3.1.SP2/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.1.SP2/samples/seamIntegration/pom.xml
tags/3.3.1.SP2/samples/separator-sample/pom.xml
tags/3.3.1.SP2/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.1.SP2/samples/skins/pom.xml
tags/3.3.1.SP2/samples/sortingFilteringDemo/pom.xml
tags/3.3.1.SP2/samples/state-sample/pom.xml
tags/3.3.1.SP2/samples/stdcomponents-sample/pom.xml
tags/3.3.1.SP2/samples/suggestionbox-sample/pom.xml
tags/3.3.1.SP2/samples/tabPanelDemo/pom.xml
tags/3.3.1.SP2/samples/themes/pom.xml
tags/3.3.1.SP2/samples/togglePanel-sample/pom.xml
tags/3.3.1.SP2/samples/tomahawkCompability/pom.xml
tags/3.3.1.SP2/samples/toolBarDemo/pom.xml
tags/3.3.1.SP2/samples/tooltip-sample/pom.xml
tags/3.3.1.SP2/samples/tree-demo/pom.xml
tags/3.3.1.SP2/samples/treeModelDemo/pom.xml
tags/3.3.1.SP2/samples/violetRays/pom.xml
tags/3.3.1.SP2/samples/virtualEarth-sample/pom.xml
tags/3.3.1.SP2/sandbox/api/pom.xml
tags/3.3.1.SP2/sandbox/cdk/pom.xml
tags/3.3.1.SP2/sandbox/impl/pom.xml
tags/3.3.1.SP2/sandbox/pom.xml
tags/3.3.1.SP2/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.1.SP2/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.1.SP2/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.1.SP2/sandbox/samples/maven-rd-plugin-sample/pom.xml
tags/3.3.1.SP2/sandbox/samples/panel2-sample/pom.xml
tags/3.3.1.SP2/sandbox/samples/pom.xml
tags/3.3.1.SP2/sandbox/samples/rex-demo/pom.xml
tags/3.3.1.SP2/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.1.SP2/sandbox/ui/create.bat
tags/3.3.1.SP2/sandbox/ui/create.sh
tags/3.3.1.SP2/sandbox/ui/dialog-window/pom.xml
tags/3.3.1.SP2/sandbox/ui/editorOld/pom.xml
tags/3.3.1.SP2/sandbox/ui/panel2/pom.xml
tags/3.3.1.SP2/sandbox/ui/pom.xml
tags/3.3.1.SP2/sandbox/ui/rex-button/pom.xml
tags/3.3.1.SP2/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.1.SP2/sandbox/ui/rex-resizable/pom.xml
tags/3.3.1.SP2/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.1.SP2/sandbox/ui/sortableHeader/pom.xml
tags/3.3.1.SP2/sandbox/ui/treeTable/pom.xml
tags/3.3.1.SP2/test-applications/ajaxTest/pom.xml
tags/3.3.1.SP2/test-applications/automator/pom.xml
tags/3.3.1.SP2/test-applications/facelets/pom.xml
tags/3.3.1.SP2/test-applications/jsp/pom.xml
tags/3.3.1.SP2/test-applications/pom.xml
tags/3.3.1.SP2/test-applications/regressionArea/pom.xml
tags/3.3.1.SP2/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.1.SP2/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.1.SP2/test-applications/regressionArea/regressionArea-tests/pom.xml
tags/3.3.1.SP2/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.1.SP2/test-applications/richfaces-docs/pom.xml
tags/3.3.1.SP2/test-applications/richfaces-docs/web/pom.xml
tags/3.3.1.SP2/test-applications/seamApp/pom.xml
tags/3.3.1.SP2/test-applications/seleniumTest/pom.xml
tags/3.3.1.SP2/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.1.SP2/test-applications/seleniumTest/samples/pom.xml
tags/3.3.1.SP2/ui/assembly/pom.xml
tags/3.3.1.SP2/ui/beanValidator/pom.xml
tags/3.3.1.SP2/ui/calendar/pom.xml
tags/3.3.1.SP2/ui/colorPicker/pom.xml
tags/3.3.1.SP2/ui/columns/pom.xml
tags/3.3.1.SP2/ui/combobox/pom.xml
tags/3.3.1.SP2/ui/componentControl/pom.xml
tags/3.3.1.SP2/ui/contextMenu/pom.xml
tags/3.3.1.SP2/ui/core/pom.xml
tags/3.3.1.SP2/ui/create.bat
tags/3.3.1.SP2/ui/dataFilterSlider/pom.xml
tags/3.3.1.SP2/ui/dataTable/pom.xml
tags/3.3.1.SP2/ui/datascroller/pom.xml
tags/3.3.1.SP2/ui/drag-drop/pom.xml
tags/3.3.1.SP2/ui/dropdown-menu/pom.xml
tags/3.3.1.SP2/ui/editor/pom.xml
tags/3.3.1.SP2/ui/effect/pom.xml
tags/3.3.1.SP2/ui/extendedDataTable/pom.xml
tags/3.3.1.SP2/ui/fileUpload/pom.xml
tags/3.3.1.SP2/ui/functions/pom.xml
tags/3.3.1.SP2/ui/gmap/pom.xml
tags/3.3.1.SP2/ui/hotKey/pom.xml
tags/3.3.1.SP2/ui/inplaceInput/pom.xml
tags/3.3.1.SP2/ui/inplaceSelect/pom.xml
tags/3.3.1.SP2/ui/inputnumber-slider/pom.xml
tags/3.3.1.SP2/ui/inputnumber-spinner/pom.xml
tags/3.3.1.SP2/ui/insert/pom.xml
tags/3.3.1.SP2/ui/jQuery/pom.xml
tags/3.3.1.SP2/ui/layout/pom.xml
tags/3.3.1.SP2/ui/listShuttle/pom.xml
tags/3.3.1.SP2/ui/menu-components/pom.xml
tags/3.3.1.SP2/ui/message/pom.xml
tags/3.3.1.SP2/ui/modal-panel/pom.xml
tags/3.3.1.SP2/ui/orderingList/pom.xml
tags/3.3.1.SP2/ui/paint2D/pom.xml
tags/3.3.1.SP2/ui/panel/pom.xml
tags/3.3.1.SP2/ui/panelbar/pom.xml
tags/3.3.1.SP2/ui/panelmenu/pom.xml
tags/3.3.1.SP2/ui/pickList/pom.xml
tags/3.3.1.SP2/ui/pom.xml
tags/3.3.1.SP2/ui/progressBAR/pom.xml
tags/3.3.1.SP2/ui/scrollableDataTable/pom.xml
tags/3.3.1.SP2/ui/separator/pom.xml
tags/3.3.1.SP2/ui/simpleTogglePanel/pom.xml
tags/3.3.1.SP2/ui/spacer/pom.xml
tags/3.3.1.SP2/ui/state/pom.xml
tags/3.3.1.SP2/ui/suggestionbox/pom.xml
tags/3.3.1.SP2/ui/tabPanel/pom.xml
tags/3.3.1.SP2/ui/togglePanel/pom.xml
tags/3.3.1.SP2/ui/toolBar/pom.xml
tags/3.3.1.SP2/ui/tooltip/pom.xml
tags/3.3.1.SP2/ui/tree/pom.xml
tags/3.3.1.SP2/ui/treeModel/pom.xml
tags/3.3.1.SP2/ui/treeTable/pom.xml
tags/3.3.1.SP2/ui/virtualEarth/pom.xml
Log:
recreate tag for 3.3.1.SP2
Copied: tags/3.3.1.SP2 (from rev 16888, branches/enterprise/3.3.X)
Modified: tags/3.3.1.SP2/cdk/generator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/generator/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/generator/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: tags/3.3.1.SP2/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-archetype-jsf-component/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP2/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-archetype-jsfwebapp/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP2/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-archetype-plug-n-skin/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.1.SP2/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP2/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-archetype-seam-app/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.1.SP1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.SP2</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.1.SP2/cdk/maven-archetype-theme/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-archetype-theme/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: tags/3.3.1.SP2/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<!-- Required for JSF -->
Modified: tags/3.3.1.SP2/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-cdk-plugin/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-cdk-plugin/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.SP2/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-javascript-plugin/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-javascript-plugin/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.1.SP2/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/maven-resource-dependency-plugin/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/maven-resource-dependency-plugin/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>maven-resource-dependency-plugin</name>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP2/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/cdk/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/cdk/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.SP2/docs/cdkguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/cdkguide/en/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.1.SP2/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -14,7 +14,7 @@
At first we need to create a project for the component itself. In the library directory
<property>Sandbox</property> you just created, launch the following command (all in one line):
</para>
- <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -DartifactId=inputDate]]>
+ <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP2 -DartifactId=inputDate]]>
</programlisting>
<para>
As is easy to see a new directory with the name <property>inputDate</property> will be created.
@@ -164,7 +164,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -202,7 +202,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>]]>
Modified: tags/3.3.1.SP2/docs/cdkguide/en/src/main/docbook/modules/devsample.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/src/main/docbook/modules/devsample.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/cdkguide/en/src/main/docbook/modules/devsample.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -21,7 +21,7 @@
where you have created the <emphasis role="bold"><property><inputDate></property></emphasis> component
and launch the following command (all in one line):
</para>
- <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -DgroupId=org.mycompany -DartifactId=inputDate-sample]]></programlisting>
+ <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.1.SP2 -DgroupId=org.mycompany -DartifactId=inputDate-sample]]></programlisting>
<para>
As easy to see a new directory <property>inputDate-sample</property> is created with the predefined JSF project structure:
</para>
Modified: tags/3.3.1.SP2/docs/cdkguide/en/src/main/docbook/modules/setup.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -180,7 +180,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>]]>
Modified: tags/3.3.1.SP2/docs/cdkguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/cdkguide/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/cdkguide/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.1.SP2/docs/common-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/common-resources/en/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>en</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>jar</packaging>
<name>Documentation common resources (en)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.SP2/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<extensions>
<extension>
Modified: tags/3.3.1.SP2/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: tags/3.3.1.SP2/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: tags/3.3.1.SP2/docs/common-resources/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/common-resources/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/common-resources/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.1.SP2/docs/faq/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/en/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/faq/en/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.1.SP2/docs/faq/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/faq/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/faq/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<pluginRepositories>
Modified: tags/3.3.1.SP2/docs/highlight/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/highlight/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/highlight/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.1.SP2/docs/migrationguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/en/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/migrationguide/en/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: tags/3.3.1.SP2/docs/migrationguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/migrationguide/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/migrationguide/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.1.SP2/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/en/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/photo_album_app_guide/en/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: tags/3.3.1.SP2/docs/photo_album_app_guide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/photo_album_app_guide/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/photo_album_app_guide/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: tags/3.3.1.SP2/docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.1.SP2/docs/userguide/en/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/userguide/en/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.1.SP2/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -327,7 +327,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.1.SP1-SNAPSHOT -DgroupId=org.docs.richfaces -DartifactId=jsf-app
+mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.1.SP2 -DgroupId=org.docs.richfaces -DartifactId=jsf-app
...]]></programlisting>
@@ -453,17 +453,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
...]]></programlisting>
Modified: tags/3.3.1.SP2/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3246,7 +3246,7 @@
<listitem>
<para>
<code>archetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.1.SP1-SNAPSHOT"</code>
+ <code>"3.3.1.SP2"</code>
</para>
</listitem>
<listitem>
@@ -3490,7 +3490,7 @@
mvn archetype:create
-DarchetypeGroupId=org.richfaces.cdk
-DarchetypeArtifactId=maven-archetype-plug-n-skin
--DarchetypeVersion=3.3.1.SP1-SNAPSHOT
+-DarchetypeVersion=3.3.1.SP2
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: tags/3.3.1.SP2/docs/userguide/pom.xml
===================================================================
--- branches/enterprise/3.3.X/docs/userguide/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/docs/userguide/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.1.SP2/examples/photoalbum/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/assembly/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/examples/photoalbum/assembly/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP2/examples/photoalbum/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/examples/photoalbum/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: tags/3.3.1.SP2/examples/photoalbum/source/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ear/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/examples/photoalbum/source/ear/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP2/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/ejb/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/examples/photoalbum/source/ejb/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP2/examples/photoalbum/source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/examples/photoalbum/source/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<distributionManagement>
<downloadUrl>
Modified: tags/3.3.1.SP2/examples/photoalbum/source/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/source/web/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/examples/photoalbum/source/web/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP2/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/examples/photoalbum/tests/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/examples/photoalbum/tests/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.1.SP2/extensions/gwt/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/gwt/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/extensions/gwt/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.1.SP2/extensions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/extensions/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.1.SP2/extensions/seam/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/seam/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/extensions/seam/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.1.SP2/extensions/trinidad/pom.xml
===================================================================
--- branches/enterprise/3.3.X/extensions/trinidad/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/extensions/trinidad/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.1.SP2/framework/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/api/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/framework/api/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: tags/3.3.1.SP2/framework/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/impl/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/framework/impl/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<resources>
<resource>
@@ -161,7 +161,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- branches/enterprise/3.3.X/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/framework/impl/src/main/java/org/richfaces/VersionBean.java 2010-05-04 18:06:22 UTC (rev 16889)
@@ -38,7 +38,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "1.GA" ;
+ public static final String REVISION = "1.SP2" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.3.1.SP2/framework/jsf-test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/jsf-test/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/framework/jsf-test/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP2/framework/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/framework/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: tags/3.3.1.SP2/framework/test/pom.xml
===================================================================
--- branches/enterprise/3.3.X/framework/test/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/framework/test/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<dependencies />
<build>
Modified: tags/3.3.1.SP2/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/beanValidatorSample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/beanValidatorSample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -52,7 +52,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version> </dependency>
+ <version>3.3.1.SP2</version> </dependency>
-->
<dependency>
<groupId>org.hibernate</groupId>
@@ -75,7 +75,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.1.SP2/samples/calendar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/calendar-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/calendar-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/colorPickerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/colorPickerDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/colorPickerDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -35,7 +35,7 @@
<groupId>org.richfaces.framework
</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples
@@ -46,17 +46,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP2/samples/columnsDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/columnsDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/columnsDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/combobox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/combobox-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/combobox-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/contextMenuDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/contextMenuDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/createProject.sh
===================================================================
--- branches/enterprise/3.3.X/samples/createProject.sh 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/createProject.sh 2010-05-04 18:06:22 UTC (rev 16889)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -Dversion=3.3.1.SP1-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.1.SP2 -Dversion=3.3.1.SP2 -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: tags/3.3.1.SP2/samples/darkX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/darkX/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/darkX/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP2/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataFilterSliderDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/dataFilterSliderDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/dataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dataTableDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/dataTableDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/datascroller-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/datascroller-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/datascroller-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/dragDropDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dragDropDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/dragDropDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/dropdownmenu-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/dropdownmenu-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/editor-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editor-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/editor-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP2/samples/editorSeam-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/editorSeam-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/editorSeam-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP2/samples/effect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/effect-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/effect-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/extendedDataTable-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/extendedDataTable-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP2/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/fileUploadDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/fileUploadDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/functions-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/functions-demo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/functions-demo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/glassX/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/glassX/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/glassX/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.SP2/samples/gmap-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/gmap-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/gmap-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/hotKey-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/hotKey-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/hotKey-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP2/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceInput-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/inplaceInput-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inplaceSelect-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/inplaceSelect-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSliderDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/inputNumberSliderDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/inputNumberSpinnerDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/inputNumberSpinnerDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/jQuery-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jQuery-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/jQuery-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/jira-data/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/jira-data/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/jira-data/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/laguna/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/laguna/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/laguna/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.1.SP2/samples/layout-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/layout-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/layout-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>layout-sample</artifactId>
<packaging>war</packaging>
<name>layout Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,22 +34,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.SP2/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/listShuttleDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/listShuttleDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/local-value-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/local-value-demo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/local-value-demo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/modalpanel-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/modalpanel-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/orderingListDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/orderingListDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/orderingListDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/panel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panel-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/panel-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/panelbar-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelbar-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/panelbar-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/panelmenu-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/panelmenu-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/pickList-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pickList-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/pickList-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP2/samples/progressBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/progressBarDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/progressBarDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/queue-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/queue-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/queue-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.1.SP2/samples/rich-message-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/rich-message-demo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/rich-message-demo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-art-datatable/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/richfaces-art-datatable/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/richfaces-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-demo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/richfaces-demo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -207,22 +207,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -312,12 +312,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: tags/3.3.1.SP2/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/ejb/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/richfaces-ear-demo/ejb/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.SP2/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/richfaces-ear-demo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.SP2/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/richfaces-ear-demo/webapp/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/richfaces-ear-demo/webapp/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.SP2/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/scrollableDataTableDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/scrollableDataTableDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.1.SP2/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ear/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/seamEAR/ear/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.SP2/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/ejbs/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/seamEAR/ejbs/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.SP2/samples/seamEAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/seamEAR/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -76,7 +76,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.SP2/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/primary-source/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/seamEAR/primary-source/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.SP2/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/logging/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/seamEAR/projects/logging/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
</project>
Modified: tags/3.3.1.SP2/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/projects/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/seamEAR/projects/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.1.SP2/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/seamEAR/wars/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.1.SP2/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamEAR/wars/seamWebapp/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/seamEAR/wars/seamWebapp/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.SP2/samples/seamIntegration/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/seamIntegration/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/seamIntegration/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/separator-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/separator-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/separator-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/simpleTogglePanel-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/simpleTogglePanel-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/skins/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/skins/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/skins/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/sortingFilteringDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/sortingFilteringDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency-->
<dependency>
Modified: tags/3.3.1.SP2/samples/state-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/state-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/state-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/stdcomponents-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/stdcomponents-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/suggestionbox-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/suggestionbox-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tabPanelDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/tabPanelDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/themes/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/themes/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/themes/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/togglePanel-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/togglePanel-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tomahawkCompability/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/tomahawkCompability/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/toolBarDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/toolBarDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/toolBarDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/tooltip-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tooltip-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/tooltip-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/tree-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/tree-demo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/tree-demo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/treeModelDemo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/treeModelDemo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/treeModelDemo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/samples/violetRays/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/violetRays/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/violetRays/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/samples/virtualEarth-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/samples/virtualEarth-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.SP2/sandbox/api/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/api/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/api/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP2/sandbox/cdk/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/cdk/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/cdk/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.SP2/sandbox/impl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/impl/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/impl/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP2/sandbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP2/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/dialog-window-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/samples/dialog-window-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP2/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/editorOld-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/samples/editorOld-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP2/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/fileUploadPOC/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/samples/fileUploadPOC/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP2/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/samples/maven-rd-plugin-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk.sandbox</groupId>
<artifactId>maven-rd-plugin-sample</artifactId>
<packaging>war</packaging>
<name>maven-rd-plugin-sample Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<configuration>
<scriptFilePath>scripts/custom-dependencies.js</scriptFilePath>
<styleFilePath>css/custom-dependencies.xcss</styleFilePath>
@@ -59,7 +59,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/panel2-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/samples/panel2-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP2/sandbox/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/samples/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP2/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/rex-demo/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/samples/rex-demo/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
Modified: tags/3.3.1.SP2/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.SP2/sandbox/ui/create.bat
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/create.bat 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/create.bat 2010-05-04 18:06:22 UTC (rev 16889)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP2 -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.1.SP2/sandbox/ui/create.sh
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/create.sh 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/create.sh 2010-05-04 18:06:22 UTC (rev 16889)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP2 -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: tags/3.3.1.SP2/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/dialog-window/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/dialog-window/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP2/sandbox/ui/editorOld/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/editorOld/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/editorOld/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/panel2/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/panel2/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/sandbox/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.1.SP2/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-button/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/rex-button/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-messageBox/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/rex-messageBox/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/rex-resizable/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/rex-resizable/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/simpleTogglePanel2/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/simpleTogglePanel2/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/sortableHeader/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/sortableHeader/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/sandbox/ui/treeTable/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/sandbox/ui/treeTable/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/test-applications/ajaxTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/ajaxTest/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/ajaxTest/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.1.SP2/test-applications/automator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/automator/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/automator/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP2/test-applications/facelets/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/facelets/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/facelets/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP2/test-applications/jsp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/jsp/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/jsp/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.SP2/test-applications/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<relativePath>../samples</relativePath>
</parent>
@@ -20,11 +20,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.1.SP1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.SP2</rfVersion>
</properties>
<modules>
Modified: tags/3.3.1.SP2/test-applications/regressionArea/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/regressionArea/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Regresion Area:Seam Application</name>
<repositories>
@@ -22,7 +22,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.1.SP1-SNAPSHOT</richversion>
+ <richversion>3.3.1.SP2</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.1.SP2/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/regressionArea/regressionArea-ear/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.1.SP2/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/regressionArea/regressionArea-ejb/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.1.SP2/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/regressionArea/regressionArea-tests/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: tags/3.3.1.SP2/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/regressionArea/regressionArea-web/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/regressionArea/regressionArea-web/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.1.SP2/test-applications/richfaces-docs/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/richfaces-docs/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -8,7 +8,7 @@
<name>richfaces-docs</name>
<properties>
<projectName>richfaces-docs</projectName>
- <richfacesVersion>3.3.1.SP1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.SP2</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<droolsVersion>4.0.0</droolsVersion>
Modified: tags/3.3.1.SP2/test-applications/richfaces-docs/web/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/richfaces-docs/web/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/richfaces-docs/web/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -47,7 +47,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<scope>provided</scope>
</dependency>
Modified: tags/3.3.1.SP2/test-applications/seamApp/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seamApp/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/seamApp/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.1.SP1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.SP2</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.1.SP2/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/seleniumTest/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -197,7 +197,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.SP2/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/richfaces/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/seleniumTest/richfaces/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: tags/3.3.1.SP2/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/enterprise/3.3.X/test-applications/seleniumTest/samples/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/test-applications/seleniumTest/samples/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.1.SP2/ui/assembly/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/assembly/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/assembly/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.3.1.SP2/ui/beanValidator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/beanValidator/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/beanValidator/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -3,19 +3,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: tags/3.3.1.SP2/ui/calendar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/calendar/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/calendar/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/colorPicker/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/colorPicker/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/colorPicker/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -12,7 +12,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/columns/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/columns/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/columns/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.SP2/ui/combobox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/combobox/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/combobox/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP2/ui/componentControl/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/componentControl/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/componentControl/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/contextMenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/contextMenu/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/contextMenu/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/core/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/core/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/core/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/create.bat
===================================================================
--- branches/enterprise/3.3.X/ui/create.bat 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/create.bat 2010-05-04 18:06:22 UTC (rev 16889)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP1-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.SP2 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataFilterSlider/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/dataFilterSlider/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/dataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dataTable/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/dataTable/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.SP2/ui/datascroller/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/datascroller/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/datascroller/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/drag-drop/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/drag-drop/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/drag-drop/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.SP2/ui/dropdown-menu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/dropdown-menu/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/dropdown-menu/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/editor/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/editor/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/editor/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -62,7 +62,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Modified: tags/3.3.1.SP2/ui/effect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/effect/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/effect/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/extendedDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/extendedDataTable/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/extendedDataTable/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,45 +64,45 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/fileUpload/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/fileUpload/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/fileUpload/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/functions/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/functions/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/functions/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/gmap/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/gmap/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/gmap/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/hotKey/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/hotKey/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/hotKey/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/inplaceInput/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceInput/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/inplaceInput/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/inplaceSelect/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inplaceSelect/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/inplaceSelect/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP2/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-slider/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/inputnumber-slider/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/inputnumber-spinner/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/inputnumber-spinner/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.SP2/ui/insert/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/insert/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/insert/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/jQuery/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/jQuery/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/jQuery/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/layout/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/layout/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/layout/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -48,7 +48,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.SP2/ui/listShuttle/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/listShuttle/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/listShuttle/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.SP2/ui/menu-components/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/menu-components/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/menu-components/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/message/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/message/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/message/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/modal-panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/modal-panel/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/modal-panel/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/orderingList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/orderingList/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/orderingList/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/paint2D/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/paint2D/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/paint2D/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/panel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panel/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/panel/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/panelbar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelbar/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/panelbar/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/panelmenu/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/panelmenu/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/panelmenu/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/pickList/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pickList/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/pickList/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.SP2/ui/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -138,12 +138,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.SP2/ui/progressBAR/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/progressBAR/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/progressBAR/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/scrollableDataTable/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/scrollableDataTable/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/separator/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/separator/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/separator/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.SP2/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/simpleTogglePanel/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/simpleTogglePanel/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/spacer/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/spacer/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/spacer/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/state/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/state/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/state/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/suggestionbox/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/suggestionbox/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/suggestionbox/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/tabPanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tabPanel/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/tabPanel/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/togglePanel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/togglePanel/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/togglePanel/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/toolBar/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/toolBar/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/toolBar/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/tooltip/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tooltip/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/tooltip/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/tree/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/tree/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/tree/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/treeModel/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeModel/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/treeModel/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.SP2/ui/treeTable/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/treeTable/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/treeTable/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.SP2/ui/virtualEarth/pom.xml
===================================================================
--- branches/enterprise/3.3.X/ui/virtualEarth/pom.xml 2010-05-04 17:51:52 UTC (rev 16888)
+++ tags/3.3.1.SP2/ui/virtualEarth/pom.xml 2010-05-04 18:06:22 UTC (rev 16889)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1.SP1-SNAPSHOT</version>
+ <version>3.3.1.SP2</version>
<executions>
<execution>
<phase>generate-sources</phase>
14 years, 8 months
JBoss Rich Faces SVN: r16888 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-05-04 13:51:52 -0400 (Tue, 04 May 2010)
New Revision: 16888
Removed:
tags/3.3.1.SP2/
Log:
will be retagged
14 years, 8 months
JBoss Rich Faces SVN: r16887 - branches/enterprise/3.3.X/ui/scrollableDataTable/src/main/java/org/richfaces/convert/selection.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2010-05-04 13:46:18 -0400 (Tue, 04 May 2010)
New Revision: 16887
Modified:
branches/enterprise/3.3.X/ui/scrollableDataTable/src/main/java/org/richfaces/convert/selection/ClientSelectionConverter.java
Log:
RF-8632
Modified: branches/enterprise/3.3.X/ui/scrollableDataTable/src/main/java/org/richfaces/convert/selection/ClientSelectionConverter.java
===================================================================
--- branches/enterprise/3.3.X/ui/scrollableDataTable/src/main/java/org/richfaces/convert/selection/ClientSelectionConverter.java 2010-05-04 15:54:02 UTC (rev 16886)
+++ branches/enterprise/3.3.X/ui/scrollableDataTable/src/main/java/org/richfaces/convert/selection/ClientSelectionConverter.java 2010-05-04 17:46:18 UTC (rev 16887)
@@ -91,9 +91,11 @@
}
String[] rows = selections[length-1].split("\\|");
clientSelection.setActiveRowIndex(Integer.parseInt(rows[0]));
- String shiftRowIndex = rows[1];
- if (shiftRowIndex.charAt(0) > '0') {
- clientSelection.setShiftRowIndex(Integer.parseInt(shiftRowIndex));
+ if (rows.length > 1) {
+ String shiftRowIndex = rows[1];
+ if (shiftRowIndex.charAt(0) > '0') {
+ clientSelection.setShiftRowIndex(Integer.parseInt(shiftRowIndex));
+ }
}
length--;
for (int i = 0; i < length; i++) {
14 years, 8 months