JBoss Rich Faces SVN: r23255 - branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc
Date: 2013-07-11 02:42:14 -0400 (Thu, 11 Jul 2013)
New Revision: 23255
Modified:
branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java
Log:
BZ#973877 patch for RichFaces 3.3.3.Final, removing use of JDK 6 features
Modified: branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java 2013-07-11 06:24:44 UTC (rev 23254)
+++ branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java 2013-07-11 06:42:14 UTC (rev 23255)
@@ -26,7 +26,6 @@
import java.io.InvalidClassException;
import java.io.ObjectInputStream;
import java.io.ObjectStreamClass;
-import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
@@ -42,7 +41,7 @@
public class LookAheadObjectInputStream extends ObjectInputStream {
private static final Map<String, Class<?>> PRIMITIVE_TYPES = new HashMap<String, Class<?>>(9, 1.0F);
private static Set<Class> whitelistBaseClasses = new HashSet<Class>();
- private static Set<String> whitelistClassNameCache = Collections.newSetFromMap(new ConcurrentHashMap<String, Boolean>());
+ private static Map<String, Boolean> whitelistClassNameCache = new ConcurrentHashMap<String, Boolean>();
static {
PRIMITIVE_TYPES.put("bool", Boolean.TYPE);
@@ -55,17 +54,17 @@
PRIMITIVE_TYPES.put("double", Double.TYPE);
PRIMITIVE_TYPES.put("void", Void.TYPE);
- whitelistClassNameCache.add(new Object[0].getClass().getName());
- whitelistClassNameCache.add(new String[0].getClass().getName());
- whitelistClassNameCache.add(new Boolean[0].getClass().getName());
- whitelistClassNameCache.add(new Byte[0].getClass().getName());
- whitelistClassNameCache.add(new Character[0].getClass().getName());
- whitelistClassNameCache.add(new Short[0].getClass().getName());
- whitelistClassNameCache.add(new Integer[0].getClass().getName());
- whitelistClassNameCache.add(new Long[0].getClass().getName());
- whitelistClassNameCache.add(new Float[0].getClass().getName());
- whitelistClassNameCache.add(new Double[0].getClass().getName());
- whitelistClassNameCache.add(new Void[0].getClass().getName());
+ whitelistClassNameCache.put(new Object[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new String[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Boolean[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Byte[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Character[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Short[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Integer[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Long[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Float[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Double[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Void[0].getClass().getName(), Boolean.TRUE);
whitelistBaseClasses.add(String.class);
whitelistBaseClasses.add(Boolean.class);
@@ -99,14 +98,14 @@
* Determine if the given requestedClassName is allowed by the whitelist
*/
boolean isClassValid(String requestedClassName) {
- if (whitelistClassNameCache.contains(requestedClassName)) {
+ if (whitelistClassNameCache.containsKey(requestedClassName)) {
return true;
}
try {
Class<?> requestedClass = Class.forName(requestedClassName);
for (Class baseClass : whitelistBaseClasses ) {
if (baseClass.isAssignableFrom(requestedClass)) {
- whitelistClassNameCache.add(requestedClassName);
+ whitelistClassNameCache.put(requestedClassName, Boolean.TRUE);
return true;
}
}
11 years, 3 months
JBoss Rich Faces SVN: r23254 - in branches/community/release-3.3.4: cdk and 220 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc
Date: 2013-07-11 02:24:44 -0400 (Thu, 11 Jul 2013)
New Revision: 23254
Modified:
branches/community/release-3.3.4/cdk/generator/pom.xml
branches/community/release-3.3.4/cdk/maven-archetype-jsf-component/pom.xml
branches/community/release-3.3.4/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
branches/community/release-3.3.4/cdk/maven-archetype-jsfwebapp/pom.xml
branches/community/release-3.3.4/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
branches/community/release-3.3.4/cdk/maven-archetype-plug-n-skin/pom.xml
branches/community/release-3.3.4/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
branches/community/release-3.3.4/cdk/maven-archetype-seam-app/pom.xml
branches/community/release-3.3.4/cdk/maven-archetype-theme/pom.xml
branches/community/release-3.3.4/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
branches/community/release-3.3.4/cdk/maven-cdk-plugin/pom.xml
branches/community/release-3.3.4/cdk/maven-javascript-plugin/pom.xml
branches/community/release-3.3.4/cdk/maven-resource-dependency-plugin/pom.xml
branches/community/release-3.3.4/cdk/pom.xml
branches/community/release-3.3.4/cdk/richfaces-facelets/pom.xml
branches/community/release-3.3.4/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
branches/community/release-3.3.4/docs/cdkguide/en/pom.xml
branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml
branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/modules/devsample.xml
branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/modules/setup.xml
branches/community/release-3.3.4/docs/cdkguide/pom.xml
branches/community/release-3.3.4/docs/common-resources/en/pom.xml
branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
branches/community/release-3.3.4/docs/common-resources/pom.xml
branches/community/release-3.3.4/docs/faq/en/pom.xml
branches/community/release-3.3.4/docs/faq/pom.xml
branches/community/release-3.3.4/docs/highlight/pom.xml
branches/community/release-3.3.4/docs/migrationguide/en/pom.xml
branches/community/release-3.3.4/docs/migrationguide/pom.xml
branches/community/release-3.3.4/docs/photo_album_app_guide/en/pom.xml
branches/community/release-3.3.4/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml
branches/community/release-3.3.4/docs/photo_album_app_guide/pom.xml
branches/community/release-3.3.4/docs/pom.xml
branches/community/release-3.3.4/docs/userguide/en/pom.xml
branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
branches/community/release-3.3.4/docs/userguide/pom.xml
branches/community/release-3.3.4/examples/photoalbum/assembly/pom.xml
branches/community/release-3.3.4/examples/photoalbum/pom.xml
branches/community/release-3.3.4/examples/photoalbum/source/ear/pom.xml
branches/community/release-3.3.4/examples/photoalbum/source/ejb/pom.xml
branches/community/release-3.3.4/examples/photoalbum/source/pom.xml
branches/community/release-3.3.4/examples/photoalbum/source/web/pom.xml
branches/community/release-3.3.4/examples/photoalbum/tests/pom.xml
branches/community/release-3.3.4/extensions/gwt/pom.xml
branches/community/release-3.3.4/extensions/pom.xml
branches/community/release-3.3.4/extensions/seam/pom.xml
branches/community/release-3.3.4/extensions/trinidad/pom.xml
branches/community/release-3.3.4/framework/api/pom.xml
branches/community/release-3.3.4/framework/impl/pom.xml
branches/community/release-3.3.4/framework/jsf-test/pom.xml
branches/community/release-3.3.4/framework/pom.xml
branches/community/release-3.3.4/framework/test/pom.xml
branches/community/release-3.3.4/pom.xml
branches/community/release-3.3.4/samples/beanValidatorSample/pom.xml
branches/community/release-3.3.4/samples/calendar-sample/pom.xml
branches/community/release-3.3.4/samples/colorPickerDemo/pom.xml
branches/community/release-3.3.4/samples/columnsDemo/pom.xml
branches/community/release-3.3.4/samples/combobox-sample/pom.xml
branches/community/release-3.3.4/samples/contextMenuDemo/pom.xml
branches/community/release-3.3.4/samples/createProject.sh
branches/community/release-3.3.4/samples/darkX/pom.xml
branches/community/release-3.3.4/samples/dataFilterSliderDemo/pom.xml
branches/community/release-3.3.4/samples/dataTableDemo/pom.xml
branches/community/release-3.3.4/samples/datascroller-sample/pom.xml
branches/community/release-3.3.4/samples/dragDropDemo/pom.xml
branches/community/release-3.3.4/samples/dropdownmenu-sample/pom.xml
branches/community/release-3.3.4/samples/editor-sample/pom.xml
branches/community/release-3.3.4/samples/editorSeam-sample/pom.xml
branches/community/release-3.3.4/samples/effect-sample/pom.xml
branches/community/release-3.3.4/samples/extendedDataTable-sample/pom.xml
branches/community/release-3.3.4/samples/fileUploadDemo/pom.xml
branches/community/release-3.3.4/samples/functions-demo/pom.xml
branches/community/release-3.3.4/samples/glassX/pom.xml
branches/community/release-3.3.4/samples/gmap-sample/pom.xml
branches/community/release-3.3.4/samples/hotKey-sample/pom.xml
branches/community/release-3.3.4/samples/inplaceInput-sample/pom.xml
branches/community/release-3.3.4/samples/inplaceSelect-sample/pom.xml
branches/community/release-3.3.4/samples/inputNumberSliderDemo/pom.xml
branches/community/release-3.3.4/samples/inputNumberSpinnerDemo/pom.xml
branches/community/release-3.3.4/samples/jQuery-sample/pom.xml
branches/community/release-3.3.4/samples/jira-data/pom.xml
branches/community/release-3.3.4/samples/laguna/pom.xml
branches/community/release-3.3.4/samples/layout-sample/pom.xml
branches/community/release-3.3.4/samples/listShuttleDemo/pom.xml
branches/community/release-3.3.4/samples/local-value-demo/pom.xml
branches/community/release-3.3.4/samples/mediaOutput/pom.xml
branches/community/release-3.3.4/samples/modalpanel-sample/pom.xml
branches/community/release-3.3.4/samples/orderingListDemo/pom.xml
branches/community/release-3.3.4/samples/panel-sample/pom.xml
branches/community/release-3.3.4/samples/panelbar-sample/pom.xml
branches/community/release-3.3.4/samples/panelmenu-sample/pom.xml
branches/community/release-3.3.4/samples/pickList-sample/pom.xml
branches/community/release-3.3.4/samples/pom.xml
branches/community/release-3.3.4/samples/progressBarDemo/pom.xml
branches/community/release-3.3.4/samples/queue-sample/pom.xml
branches/community/release-3.3.4/samples/rich-message-demo/pom.xml
branches/community/release-3.3.4/samples/richfaces-art-datatable/pom.xml
branches/community/release-3.3.4/samples/richfaces-demo/functional-test/pom.xml
branches/community/release-3.3.4/samples/richfaces-demo/pom.xml
branches/community/release-3.3.4/samples/richfaces-ear-demo/ejb/pom.xml
branches/community/release-3.3.4/samples/richfaces-ear-demo/pom.xml
branches/community/release-3.3.4/samples/richfaces-ear-demo/richfacesEAR/pom.xml
branches/community/release-3.3.4/samples/richfaces-ear-demo/webapp/pom.xml
branches/community/release-3.3.4/samples/scrollableDataTableDemo/pom.xml
branches/community/release-3.3.4/samples/seamEAR/ear/pom.xml
branches/community/release-3.3.4/samples/seamEAR/ejbs/pom.xml
branches/community/release-3.3.4/samples/seamEAR/pom.xml
branches/community/release-3.3.4/samples/seamEAR/primary-source/pom.xml
branches/community/release-3.3.4/samples/seamEAR/projects/logging/pom.xml
branches/community/release-3.3.4/samples/seamEAR/projects/pom.xml
branches/community/release-3.3.4/samples/seamEAR/wars/pom.xml
branches/community/release-3.3.4/samples/seamEAR/wars/seamWebapp/pom.xml
branches/community/release-3.3.4/samples/seamIntegration/pom.xml
branches/community/release-3.3.4/samples/separator-sample/pom.xml
branches/community/release-3.3.4/samples/simpleTogglePanel-sample/pom.xml
branches/community/release-3.3.4/samples/skins/pom.xml
branches/community/release-3.3.4/samples/sortingFilteringDemo/pom.xml
branches/community/release-3.3.4/samples/state-sample/pom.xml
branches/community/release-3.3.4/samples/stdcomponents-sample/pom.xml
branches/community/release-3.3.4/samples/suggestionbox-sample/pom.xml
branches/community/release-3.3.4/samples/tabPanelDemo/pom.xml
branches/community/release-3.3.4/samples/themes/pom.xml
branches/community/release-3.3.4/samples/togglePanel-sample/pom.xml
branches/community/release-3.3.4/samples/tomahawkCompability/pom.xml
branches/community/release-3.3.4/samples/toolBarDemo/pom.xml
branches/community/release-3.3.4/samples/tooltip-sample/pom.xml
branches/community/release-3.3.4/samples/tree-demo/pom.xml
branches/community/release-3.3.4/samples/treeModelDemo/pom.xml
branches/community/release-3.3.4/samples/violetRays/pom.xml
branches/community/release-3.3.4/samples/virtualEarth-sample/pom.xml
branches/community/release-3.3.4/sandbox/api/pom.xml
branches/community/release-3.3.4/sandbox/cdk/pom.xml
branches/community/release-3.3.4/sandbox/impl/pom.xml
branches/community/release-3.3.4/sandbox/pom.xml
branches/community/release-3.3.4/sandbox/samples/dialog-window-sample/pom.xml
branches/community/release-3.3.4/sandbox/samples/editorOld-sample/pom.xml
branches/community/release-3.3.4/sandbox/samples/fileUploadPOC/pom.xml
branches/community/release-3.3.4/sandbox/samples/maven-rd-plugin-sample/pom.xml
branches/community/release-3.3.4/sandbox/samples/panel2-sample/pom.xml
branches/community/release-3.3.4/sandbox/samples/pom.xml
branches/community/release-3.3.4/sandbox/samples/rex-demo/pom.xml
branches/community/release-3.3.4/sandbox/samples/simpleTogglePanel2-sample/pom.xml
branches/community/release-3.3.4/sandbox/ui/create.bat
branches/community/release-3.3.4/sandbox/ui/create.sh
branches/community/release-3.3.4/sandbox/ui/dialog-window/pom.xml
branches/community/release-3.3.4/sandbox/ui/editorOld/pom.xml
branches/community/release-3.3.4/sandbox/ui/panel2/pom.xml
branches/community/release-3.3.4/sandbox/ui/pom.xml
branches/community/release-3.3.4/sandbox/ui/rex-button/pom.xml
branches/community/release-3.3.4/sandbox/ui/rex-messageBox/pom.xml
branches/community/release-3.3.4/sandbox/ui/rex-resizable/pom.xml
branches/community/release-3.3.4/sandbox/ui/simpleTogglePanel2/pom.xml
branches/community/release-3.3.4/sandbox/ui/sortableHeader/pom.xml
branches/community/release-3.3.4/sandbox/ui/treeTable/pom.xml
branches/community/release-3.3.4/test-applications/ajaxTest/pom.xml
branches/community/release-3.3.4/test-applications/automator/pom.xml
branches/community/release-3.3.4/test-applications/facelets/pom.xml
branches/community/release-3.3.4/test-applications/jsp/pom.xml
branches/community/release-3.3.4/test-applications/pom.xml
branches/community/release-3.3.4/test-applications/regression-test/pom.xml
branches/community/release-3.3.4/test-applications/regressionArea/pom.xml
branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-ear/pom.xml
branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-ejb/pom.xml
branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-tests/pom.xml
branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-web/pom.xml
branches/community/release-3.3.4/test-applications/richfaces-docs/pom.xml
branches/community/release-3.3.4/test-applications/seleniumTest/pom.xml
branches/community/release-3.3.4/test-applications/seleniumTest/richfaces/pom.xml
branches/community/release-3.3.4/test-applications/seleniumTest/samples/pom.xml
branches/community/release-3.3.4/test-applications/test-jsp/pom.xml
branches/community/release-3.3.4/ui/assembly/pom.xml
branches/community/release-3.3.4/ui/beanValidator/pom.xml
branches/community/release-3.3.4/ui/calendar/pom.xml
branches/community/release-3.3.4/ui/colorPicker/pom.xml
branches/community/release-3.3.4/ui/columns/pom.xml
branches/community/release-3.3.4/ui/combobox/pom.xml
branches/community/release-3.3.4/ui/componentControl/pom.xml
branches/community/release-3.3.4/ui/contextMenu/pom.xml
branches/community/release-3.3.4/ui/core/pom.xml
branches/community/release-3.3.4/ui/create.bat
branches/community/release-3.3.4/ui/dataFilterSlider/pom.xml
branches/community/release-3.3.4/ui/dataTable/pom.xml
branches/community/release-3.3.4/ui/datascroller/pom.xml
branches/community/release-3.3.4/ui/drag-drop/pom.xml
branches/community/release-3.3.4/ui/dropdown-menu/pom.xml
branches/community/release-3.3.4/ui/editor/pom.xml
branches/community/release-3.3.4/ui/effect/pom.xml
branches/community/release-3.3.4/ui/extendedDataTable/pom.xml
branches/community/release-3.3.4/ui/fileUpload/pom.xml
branches/community/release-3.3.4/ui/functions/pom.xml
branches/community/release-3.3.4/ui/gmap/pom.xml
branches/community/release-3.3.4/ui/hotKey/pom.xml
branches/community/release-3.3.4/ui/inplaceInput/pom.xml
branches/community/release-3.3.4/ui/inplaceSelect/pom.xml
branches/community/release-3.3.4/ui/inputnumber-slider/pom.xml
branches/community/release-3.3.4/ui/inputnumber-spinner/pom.xml
branches/community/release-3.3.4/ui/insert/pom.xml
branches/community/release-3.3.4/ui/jQuery/pom.xml
branches/community/release-3.3.4/ui/layout/pom.xml
branches/community/release-3.3.4/ui/listShuttle/pom.xml
branches/community/release-3.3.4/ui/menu-components/pom.xml
branches/community/release-3.3.4/ui/message/pom.xml
branches/community/release-3.3.4/ui/modal-panel/pom.xml
branches/community/release-3.3.4/ui/orderingList/pom.xml
branches/community/release-3.3.4/ui/paint2D/pom.xml
branches/community/release-3.3.4/ui/panel/pom.xml
branches/community/release-3.3.4/ui/panelbar/pom.xml
branches/community/release-3.3.4/ui/panelmenu/pom.xml
branches/community/release-3.3.4/ui/pickList/pom.xml
branches/community/release-3.3.4/ui/pom.xml
branches/community/release-3.3.4/ui/progressBAR/pom.xml
branches/community/release-3.3.4/ui/scrollableDataTable/pom.xml
branches/community/release-3.3.4/ui/separator/pom.xml
branches/community/release-3.3.4/ui/simpleTogglePanel/pom.xml
branches/community/release-3.3.4/ui/spacer/pom.xml
branches/community/release-3.3.4/ui/state/pom.xml
branches/community/release-3.3.4/ui/suggestionbox/pom.xml
branches/community/release-3.3.4/ui/tabPanel/pom.xml
branches/community/release-3.3.4/ui/togglePanel/pom.xml
branches/community/release-3.3.4/ui/toolBar/pom.xml
branches/community/release-3.3.4/ui/tooltip/pom.xml
branches/community/release-3.3.4/ui/tree/pom.xml
branches/community/release-3.3.4/ui/treeModel/pom.xml
branches/community/release-3.3.4/ui/treeTable/pom.xml
branches/community/release-3.3.4/ui/virtualEarth/pom.xml
Log:
preparing for release: switching version to 3.3.4.Final
Modified: branches/community/release-3.3.4/cdk/generator/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/generator/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/generator/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: branches/community/release-3.3.4/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-archetype-jsf-component/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-archetype-jsf-component/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: branches/community/release-3.3.4/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-archetype-jsfwebapp/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-archetype-jsfwebapp/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -30,12 +30,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: branches/community/release-3.3.4/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-archetype-plug-n-skin/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-archetype-plug-n-skin/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: branches/community/release-3.3.4/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: branches/community/release-3.3.4/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-archetype-seam-app/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-archetype-seam-app/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/cdk/maven-archetype-theme/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-archetype-theme/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-archetype-theme/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: branches/community/release-3.3.4/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
Modified: branches/community/release-3.3.4/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-cdk-plugin/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-cdk-plugin/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
<build>
Modified: branches/community/release-3.3.4/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-javascript-plugin/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-javascript-plugin/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: branches/community/release-3.3.4/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/maven-resource-dependency-plugin/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/maven-resource-dependency-plugin/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>maven-resource-dependency-plugin</name>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
Modified: branches/community/release-3.3.4/cdk/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: branches/community/release-3.3.4/cdk/richfaces-facelets/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/richfaces-facelets/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/richfaces-facelets/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,13 +4,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>richfaces-facelets</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>maven-archetype-rf-facelets</name>
<packaging>maven-archetype</packaging>
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<build>
Modified: branches/community/release-3.3.4/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/release-3.3.4/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -28,7 +28,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: branches/community/release-3.3.4/docs/cdkguide/en/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/cdkguide/en/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/cdkguide/en/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml
===================================================================
--- branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -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.3.Final -DartifactId=inputDate]]>
+ <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.4.Final -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.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -202,7 +202,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>]]>
Modified: branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/modules/devsample.xml
===================================================================
--- branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/modules/devsample.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/modules/devsample.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -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.3.Final -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.4.Final -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: branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/modules/setup.xml
===================================================================
--- branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -180,7 +180,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>]]>
Modified: branches/community/release-3.3.4/docs/cdkguide/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/cdkguide/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/cdkguide/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: branches/community/release-3.3.4/docs/common-resources/en/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/common-resources/en/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/common-resources/en/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>Documentation common resources (${translation})</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
<build>
Modified: branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<extensions>
<extension>
Modified: branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: branches/community/release-3.3.4/docs/common-resources/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/common-resources/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/common-resources/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: branches/community/release-3.3.4/docs/faq/en/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/faq/en/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/faq/en/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
<build>
Modified: branches/community/release-3.3.4/docs/faq/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/faq/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/faq/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<!--repositories>
Modified: branches/community/release-3.3.4/docs/highlight/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/highlight/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/highlight/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: branches/community/release-3.3.4/docs/migrationguide/en/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/migrationguide/en/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/migrationguide/en/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
<build>
Modified: branches/community/release-3.3.4/docs/migrationguide/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/migrationguide/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/migrationguide/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: branches/community/release-3.3.4/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/photo_album_app_guide/en/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/photo_album_app_guide/en/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: branches/community/release-3.3.4/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml
===================================================================
--- branches/community/release-3.3.4/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -74,7 +74,7 @@
<para><code>mvn archetype:generate </code></para>
<para><code>-DarchetypeGroupId=org.richfaces.cdk </code></para>
<para><code>-DarchetypeArtifactId=maven-archetype-seam-app </code></para>
- <para><code>-DarchetypeVersion=3.3.3.Final </code></para>
+ <para><code>-DarchetypeVersion=3.3.4.Final </code></para>
<para><code>-DgroupId=[Your_project_group_id] </code></para>
<para><code>-DartifactId=[Your_project_name] </code></para>
<para>Some project preferences such as <property>RichFaces</property> components version or Jboss server version and others could be customized in the root <code>.pom</code> file </para>
Modified: branches/community/release-3.3.4/docs/photo_album_app_guide/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/photo_album_app_guide/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/photo_album_app_guide/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: branches/community/release-3.3.4/docs/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: branches/community/release-3.3.4/docs/userguide/en/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/userguide/en/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/userguide/en/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -335,7 +335,7 @@
<para>Now you have everything to create the project using the "maven-archetype-jsfwebapp" archetype. Create a folder that will house your project and run the this command in it:</para>
<programlisting role="XML" ><![CDATA[...
-mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.3.Final -DgroupId=org.docs.richfaces -DartifactId=jsf-app
+mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.4.Final -DgroupId=org.docs.richfaces -DartifactId=jsf-app
...]]></programlisting>
@@ -461,17 +461,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
...]]></programlisting>
Modified: branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3839,7 +3839,7 @@
<listitem>
<para>
<code>archetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.3.Final"</code>
+ <code>"3.3.4.Final"</code>
</para>
</listitem>
<listitem>
@@ -4080,7 +4080,7 @@
follow the steps described in the previous section.</para>
<para>This command will be used to create a template of the new skin project. </para>
<programlisting role="XML"><![CDATA[
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.3.Final -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.4.Final -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
]]></programlisting>
<para> Now you can browse the "P-n-S" folder to view what files and
folders were created there. </para>
Modified: branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
===================================================================
--- branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -48,7 +48,7 @@
RichFaces components are available on<ulink
url="http://livedemo.exadel.com/richfaces-demo/">RichFaces Live Demo</ulink>.</para>
<para>War file of a nightly build can be found on the <ulink
- url="http://snapshots.jboss.org/maven2/org/richfaces/ui/richfaces-ui/3.3.3.Final/"
+ url="http://snapshots.jboss.org/maven2/org/richfaces/ui/richfaces-ui/3.3.4.Final/"
>Snapshots repository</ulink>.</para>
<para>Source Code (SVN) can be found in<ulink
url="http://anonsvn.jboss.org/repos/richfaces/trunk/samples/richfaces-demo/"
Modified: branches/community/release-3.3.4/docs/userguide/pom.xml
===================================================================
--- branches/community/release-3.3.4/docs/userguide/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/docs/userguide/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: branches/community/release-3.3.4/examples/photoalbum/assembly/pom.xml
===================================================================
--- branches/community/release-3.3.4/examples/photoalbum/assembly/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/examples/photoalbum/assembly/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/community/release-3.3.4/examples/photoalbum/pom.xml
===================================================================
--- branches/community/release-3.3.4/examples/photoalbum/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/examples/photoalbum/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: branches/community/release-3.3.4/examples/photoalbum/source/ear/pom.xml
===================================================================
--- branches/community/release-3.3.4/examples/photoalbum/source/ear/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/examples/photoalbum/source/ear/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/community/release-3.3.4/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- branches/community/release-3.3.4/examples/photoalbum/source/ejb/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/examples/photoalbum/source/ejb/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/community/release-3.3.4/examples/photoalbum/source/pom.xml
===================================================================
--- branches/community/release-3.3.4/examples/photoalbum/source/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/examples/photoalbum/source/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<distributionManagement>
<downloadUrl>
Modified: branches/community/release-3.3.4/examples/photoalbum/source/web/pom.xml
===================================================================
--- branches/community/release-3.3.4/examples/photoalbum/source/web/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/examples/photoalbum/source/web/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/community/release-3.3.4/examples/photoalbum/tests/pom.xml
===================================================================
--- branches/community/release-3.3.4/examples/photoalbum/tests/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/examples/photoalbum/tests/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: branches/community/release-3.3.4/extensions/gwt/pom.xml
===================================================================
--- branches/community/release-3.3.4/extensions/gwt/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/extensions/gwt/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: branches/community/release-3.3.4/extensions/pom.xml
===================================================================
--- branches/community/release-3.3.4/extensions/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/extensions/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: branches/community/release-3.3.4/extensions/seam/pom.xml
===================================================================
--- branches/community/release-3.3.4/extensions/seam/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/extensions/seam/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: branches/community/release-3.3.4/extensions/trinidad/pom.xml
===================================================================
--- branches/community/release-3.3.4/extensions/trinidad/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/extensions/trinidad/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: branches/community/release-3.3.4/framework/api/pom.xml
===================================================================
--- branches/community/release-3.3.4/framework/api/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/framework/api/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<dependencies>
<dependency>
Modified: branches/community/release-3.3.4/framework/impl/pom.xml
===================================================================
--- branches/community/release-3.3.4/framework/impl/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/framework/impl/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>${classifiedArtifactId}</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<resources>
<resource>
@@ -294,7 +294,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/framework/jsf-test/pom.xml
===================================================================
--- branches/community/release-3.3.4/framework/jsf-test/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/framework/jsf-test/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<dependencies>
<dependency>
Modified: branches/community/release-3.3.4/framework/pom.xml
===================================================================
--- branches/community/release-3.3.4/framework/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/framework/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
Modified: branches/community/release-3.3.4/framework/test/pom.xml
===================================================================
--- branches/community/release-3.3.4/framework/test/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/framework/test/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,12 +3,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
Modified: branches/community/release-3.3.4/pom.xml
===================================================================
--- branches/community/release-3.3.4/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>RichFaces project</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
Modified: branches/community/release-3.3.4/samples/beanValidatorSample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/beanValidatorSample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/beanValidatorSample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -34,7 +34,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.3.Final</version> </dependency>
+ <version>3.3.4.Final</version> </dependency>
-->
<dependency>
<groupId>org.slf4j</groupId>
@@ -50,12 +50,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: branches/community/release-3.3.4/samples/calendar-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/calendar-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/calendar-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/colorPickerDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/colorPickerDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/colorPickerDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -40,17 +40,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
Modified: branches/community/release-3.3.4/samples/columnsDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/columnsDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/columnsDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/combobox-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/combobox-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/combobox-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/contextMenuDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/contextMenuDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/contextMenuDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/createProject.sh
===================================================================
--- branches/community/release-3.3.4/samples/createProject.sh 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/createProject.sh 2013-07-11 06:24:44 UTC (rev 23254)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.3.Final -Dversion=3.3.3.Final -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.4.Final -Dversion=3.3.4.Final -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: branches/community/release-3.3.4/samples/darkX/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/darkX/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/darkX/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/dataFilterSliderDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/dataFilterSliderDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/dataTableDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/dataTableDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/dataTableDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/datascroller-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/datascroller-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/datascroller-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/dragDropDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/dragDropDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/dragDropDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/dropdownmenu-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/dropdownmenu-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/dropdownmenu-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/editor-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/editor-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/editor-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/release-3.3.4/samples/editorSeam-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/editorSeam-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/editorSeam-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/release-3.3.4/samples/effect-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/effect-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/effect-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/extendedDataTable-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/extendedDataTable-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/extendedDataTable-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/release-3.3.4/samples/fileUploadDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/fileUploadDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/fileUploadDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/functions-demo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/functions-demo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/functions-demo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/glassX/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/glassX/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/glassX/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/samples/gmap-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/gmap-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/gmap-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/hotKey-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/hotKey-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/hotKey-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/release-3.3.4/samples/inplaceInput-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/inplaceInput-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/inplaceInput-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/inplaceSelect-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/inplaceSelect-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/inplaceSelect-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/inputNumberSliderDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/inputNumberSliderDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/inputNumberSpinnerDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/inputNumberSpinnerDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/jQuery-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/jQuery-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/jQuery-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/jira-data/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/jira-data/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/jira-data/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/laguna/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/laguna/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/laguna/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: branches/community/release-3.3.4/samples/layout-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/layout-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/layout-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>layout-sample</artifactId>
<packaging>war</packaging>
<name>layout Maven Webapp</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,17 +34,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/community/release-3.3.4/samples/listShuttleDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/listShuttleDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/listShuttleDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/local-value-demo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/local-value-demo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/local-value-demo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/mediaOutput/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/mediaOutput/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/mediaOutput/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,11 +5,11 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces</groupId>
<artifactId>mediaOutput</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>war</packaging>
<name>mediaOutput Maven Webapp</name>
<build>
Modified: branches/community/release-3.3.4/samples/modalpanel-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/modalpanel-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/modalpanel-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/orderingListDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/orderingListDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/orderingListDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/panel-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/panel-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/panel-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/panelbar-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/panelbar-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/panelbar-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/panelmenu-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/panelmenu-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/panelmenu-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/pickList-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/pickList-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/pickList-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/release-3.3.4/samples/progressBarDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/progressBarDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/progressBarDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/queue-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/queue-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/queue-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: branches/community/release-3.3.4/samples/rich-message-demo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/rich-message-demo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/rich-message-demo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/richfaces-art-datatable/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/richfaces-art-datatable/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/richfaces-art-datatable/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/richfaces-demo/functional-test/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/richfaces-demo/functional-test/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/richfaces-demo/functional-test/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.richfaces.integrationTest</groupId>
<artifactId>functional-test</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>selenium-test</name>
<url>http://maven.apache.org</url>
Modified: branches/community/release-3.3.4/samples/richfaces-demo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/richfaces-demo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/richfaces-demo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -246,22 +246,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -360,12 +360,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: branches/community/release-3.3.4/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/richfaces-ear-demo/ejb/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/richfaces-ear-demo/ejb/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/community/release-3.3.4/samples/richfaces-ear-demo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/richfaces-ear-demo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/richfaces-ear-demo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/community/release-3.3.4/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/richfaces-ear-demo/webapp/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/richfaces-ear-demo/webapp/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: branches/community/release-3.3.4/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/scrollableDataTableDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/scrollableDataTableDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: branches/community/release-3.3.4/samples/seamEAR/ear/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/seamEAR/ear/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/seamEAR/ear/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<dependencies>
<dependency>
Modified: branches/community/release-3.3.4/samples/seamEAR/ejbs/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/seamEAR/ejbs/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/seamEAR/ejbs/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<dependencies>
<dependency>
Modified: branches/community/release-3.3.4/samples/seamEAR/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/seamEAR/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/seamEAR/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/seamEAR/primary-source/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/seamEAR/primary-source/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/seamEAR/primary-source/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<dependencies>
<dependency>
Modified: branches/community/release-3.3.4/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/seamEAR/projects/logging/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/seamEAR/projects/logging/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
</project>
Modified: branches/community/release-3.3.4/samples/seamEAR/projects/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/seamEAR/projects/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/seamEAR/projects/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modules>
<module>logging</module>
Modified: branches/community/release-3.3.4/samples/seamEAR/wars/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/seamEAR/wars/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/seamEAR/wars/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: branches/community/release-3.3.4/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/seamEAR/wars/seamWebapp/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/seamEAR/wars/seamWebapp/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: branches/community/release-3.3.4/samples/seamIntegration/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/seamIntegration/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/seamIntegration/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/separator-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/separator-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/separator-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/simpleTogglePanel-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/simpleTogglePanel-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/skins/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/skins/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/skins/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/sortingFilteringDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/sortingFilteringDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/sortingFilteringDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency-->
<dependency>
Modified: branches/community/release-3.3.4/samples/state-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/state-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/state-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/samples/stdcomponents-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/stdcomponents-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/stdcomponents-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/suggestionbox-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/suggestionbox-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/suggestionbox-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/tabPanelDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/tabPanelDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/tabPanelDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/themes/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/themes/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/themes/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/community/release-3.3.4/samples/togglePanel-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/togglePanel-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/togglePanel-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/tomahawkCompability/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/tomahawkCompability/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/tomahawkCompability/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/toolBarDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/toolBarDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/toolBarDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/tooltip-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/tooltip-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/tooltip-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/tree-demo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/tree-demo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/tree-demo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/treeModelDemo/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/treeModelDemo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/treeModelDemo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/samples/violetRays/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/violetRays/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/violetRays/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/community/release-3.3.4/samples/virtualEarth-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/samples/virtualEarth-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/samples/virtualEarth-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: branches/community/release-3.3.4/sandbox/api/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/api/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/api/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/community/release-3.3.4/sandbox/cdk/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/cdk/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/cdk/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: branches/community/release-3.3.4/sandbox/impl/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/impl/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/impl/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/community/release-3.3.4/sandbox/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/release-3.3.4/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/samples/dialog-window-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/samples/dialog-window-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/release-3.3.4/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/samples/editorOld-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/samples/editorOld-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/release-3.3.4/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/samples/fileUploadPOC/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/samples/fileUploadPOC/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/release-3.3.4/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/samples/maven-rd-plugin-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/samples/maven-rd-plugin-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk.sandbox</groupId>
<artifactId>maven-rd-plugin-sample</artifactId>
<packaging>war</packaging>
<name>maven-rd-plugin-sample Maven Webapp</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<configuration>
<scriptFilePath>scripts/custom-dependencies.js</scriptFilePath>
<styleFilePath>css/custom-dependencies.xcss</styleFilePath>
@@ -59,7 +59,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/samples/panel2-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/samples/panel2-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/release-3.3.4/sandbox/samples/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/samples/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/samples/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/release-3.3.4/sandbox/samples/rex-demo/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/samples/rex-demo/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/samples/rex-demo/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
Modified: branches/community/release-3.3.4/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: branches/community/release-3.3.4/sandbox/ui/create.bat
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/create.bat 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/create.bat 2013-07-11 06:24:44 UTC (rev 23254)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.Final -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.4.Final -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: branches/community/release-3.3.4/sandbox/ui/create.sh
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/create.sh 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/create.sh 2013-07-11 06:24:44 UTC (rev 23254)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.Final -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.4.Final -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: branches/community/release-3.3.4/sandbox/ui/dialog-window/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/dialog-window/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/dialog-window/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: branches/community/release-3.3.4/sandbox/ui/editorOld/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/editorOld/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/editorOld/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/sandbox/ui/panel2/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/panel2/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/panel2/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/sandbox/ui/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: branches/community/release-3.3.4/sandbox/ui/rex-button/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/rex-button/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/rex-button/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/rex-messageBox/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/rex-messageBox/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/rex-resizable/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/rex-resizable/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/simpleTogglePanel2/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/simpleTogglePanel2/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/sortableHeader/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/sortableHeader/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/sandbox/ui/treeTable/pom.xml
===================================================================
--- branches/community/release-3.3.4/sandbox/ui/treeTable/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/sandbox/ui/treeTable/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/test-applications/ajaxTest/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/ajaxTest/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/ajaxTest/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: branches/community/release-3.3.4/test-applications/automator/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/automator/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/automator/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/release-3.3.4/test-applications/facelets/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/facelets/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/facelets/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/release-3.3.4/test-applications/jsp/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/jsp/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/jsp/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/release-3.3.4/test-applications/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,7 +50,7 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>RichFaces Test Applications</name>
<properties>
Modified: branches/community/release-3.3.4/test-applications/regression-test/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/regression-test/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/regression-test/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,7 +5,7 @@
<artifactId>regression-test</artifactId>
<name>Regression test application</name>
<packaging>war</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<description>Application for manual testing of regressions.</description>
<url>http://www.jboss.org/richfaces</url>
<inceptionYear>2009</inceptionYear>
Modified: branches/community/release-3.3.4/test-applications/regressionArea/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/regressionArea/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/regressionArea/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -36,7 +36,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.3.Final</richversion>
+ <richversion>3.3.4.Final</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-ear/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-ear/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-ejb/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-ejb/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-tests/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-tests/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-web/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/regressionArea/regressionArea-web/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: branches/community/release-3.3.4/test-applications/richfaces-docs/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/richfaces-docs/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/richfaces-docs/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -204,7 +204,7 @@
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
@@ -214,7 +214,7 @@
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
@@ -224,7 +224,7 @@
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
Modified: branches/community/release-3.3.4/test-applications/seleniumTest/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/seleniumTest/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/seleniumTest/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -233,7 +233,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: branches/community/release-3.3.4/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/seleniumTest/richfaces/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/seleniumTest/richfaces/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: branches/community/release-3.3.4/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/seleniumTest/samples/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/seleniumTest/samples/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: branches/community/release-3.3.4/test-applications/test-jsp/pom.xml
===================================================================
--- branches/community/release-3.3.4/test-applications/test-jsp/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/test-applications/test-jsp/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/community/release-3.3.4/ui/assembly/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/assembly/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/assembly/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
@@ -435,17 +435,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl-jsf2</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</profile>
Modified: branches/community/release-3.3.4/ui/beanValidator/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/beanValidator/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/beanValidator/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,19 +4,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: branches/community/release-3.3.4/ui/calendar/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/calendar/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/calendar/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/ui/colorPicker/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/colorPicker/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/colorPicker/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -12,7 +12,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/columns/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/columns/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/columns/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/community/release-3.3.4/ui/combobox/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/combobox/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/combobox/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
Modified: branches/community/release-3.3.4/ui/componentControl/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/componentControl/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/componentControl/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/contextMenu/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/contextMenu/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/contextMenu/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/ui/core/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/core/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/core/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/create.bat
===================================================================
--- branches/community/release-3.3.4/ui/create.bat 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/create.bat 2013-07-11 06:24:44 UTC (rev 23254)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.Final -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.4.Final -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: branches/community/release-3.3.4/ui/dataFilterSlider/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/dataFilterSlider/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/dataFilterSlider/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/dataTable/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/dataTable/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/dataTable/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
-->
</dependencies>
Modified: branches/community/release-3.3.4/ui/datascroller/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/datascroller/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/datascroller/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/drag-drop/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/drag-drop/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/drag-drop/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
-->
</dependencies>
Modified: branches/community/release-3.3.4/ui/dropdown-menu/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/dropdown-menu/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/dropdown-menu/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/ui/editor/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/editor/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/editor/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/community/release-3.3.4/ui/effect/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/effect/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/effect/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/extendedDataTable/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/extendedDataTable/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/extendedDataTable/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,40 +64,40 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/ui/fileUpload/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/fileUpload/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/fileUpload/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/ui/functions/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/functions/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/functions/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/gmap/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/gmap/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/gmap/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/hotKey/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/hotKey/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/hotKey/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/inplaceInput/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/inplaceInput/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/inplaceInput/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/ui/inplaceSelect/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/inplaceSelect/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/inplaceSelect/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
Modified: branches/community/release-3.3.4/ui/inputnumber-slider/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/inputnumber-slider/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/inputnumber-slider/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/inputnumber-spinner/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/inputnumber-spinner/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/inputnumber-spinner/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/community/release-3.3.4/ui/insert/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/insert/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/insert/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/jQuery/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/jQuery/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/jQuery/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/layout/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/layout/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/layout/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/community/release-3.3.4/ui/listShuttle/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/listShuttle/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/listShuttle/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: branches/community/release-3.3.4/ui/menu-components/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/menu-components/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/menu-components/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/message/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/message/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/message/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/modal-panel/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/modal-panel/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/modal-panel/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/orderingList/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/orderingList/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/orderingList/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/paint2D/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/paint2D/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/paint2D/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/panel/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/panel/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/panel/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/community/release-3.3.4/ui/panelbar/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/panelbar/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/panelbar/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/panelmenu/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/panelmenu/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/panelmenu/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/pickList/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/pickList/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/pickList/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,13 +53,13 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
Modified: branches/community/release-3.3.4/ui/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -187,12 +187,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
@@ -249,7 +249,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: branches/community/release-3.3.4/ui/progressBAR/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/progressBAR/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/progressBAR/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/ui/scrollableDataTable/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/scrollableDataTable/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/scrollableDataTable/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,12 +70,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/ui/separator/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/separator/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/separator/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: branches/community/release-3.3.4/ui/simpleTogglePanel/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/simpleTogglePanel/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/simpleTogglePanel/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/spacer/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/spacer/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/spacer/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/state/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/state/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/state/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/suggestionbox/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/suggestionbox/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/suggestionbox/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/tabPanel/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/tabPanel/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/tabPanel/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/togglePanel/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/togglePanel/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/togglePanel/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/toolBar/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/toolBar/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/toolBar/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/tooltip/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/tooltip/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/tooltip/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/tree/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/tree/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/tree/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/ui/treeModel/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/treeModel/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/treeModel/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: branches/community/release-3.3.4/ui/treeTable/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/treeTable/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/treeTable/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: branches/community/release-3.3.4/ui/virtualEarth/pom.xml
===================================================================
--- branches/community/release-3.3.4/ui/virtualEarth/pom.xml 2013-07-11 06:19:16 UTC (rev 23253)
+++ branches/community/release-3.3.4/ui/virtualEarth/pom.xml 2013-07-11 06:24:44 UTC (rev 23254)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
11 years, 3 months
JBoss Rich Faces SVN: r23253 - branches/community.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc
Date: 2013-07-11 02:19:16 -0400 (Thu, 11 Jul 2013)
New Revision: 23253
Added:
branches/community/release-3.3.4/
Log:
creating release branch for 3.3.4 release
11 years, 3 months
JBoss Rich Faces SVN: r23252 - branches.
by richfaces-svn-commits@lists.jboss.org
Author: bleathem
Date: 2013-07-10 23:54:08 -0400 (Wed, 10 Jul 2013)
New Revision: 23252
Added:
branches/3.3.1.SP3_JBPAPP-10813/
Log:
Branch for JBPAPP-10813
11 years, 3 months
JBoss Rich Faces SVN: r23251 - branches/embargo/3.3.1.SP3_JBPAPP-10776/framework/impl/src/main/java/org/ajax4jsf/resource.
by richfaces-svn-commits@lists.jboss.org
Author: bleathem
Date: 2013-07-10 23:02:16 -0400 (Wed, 10 Jul 2013)
New Revision: 23251
Modified:
branches/embargo/3.3.1.SP3_JBPAPP-10776/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java
Log:
JBPAPP-10813: patch for RichFaces 3.3.3.Final, removing use of JDK 6 features introduced in JBAPP-10776
Modified: branches/embargo/3.3.1.SP3_JBPAPP-10776/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java
===================================================================
--- branches/embargo/3.3.1.SP3_JBPAPP-10776/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java 2013-07-11 02:35:36 UTC (rev 23250)
+++ branches/embargo/3.3.1.SP3_JBPAPP-10776/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java 2013-07-11 03:02:16 UTC (rev 23251)
@@ -26,7 +26,6 @@
import java.io.InvalidClassException;
import java.io.ObjectInputStream;
import java.io.ObjectStreamClass;
-import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
@@ -42,7 +41,7 @@
public class LookAheadObjectInputStream extends ObjectInputStream {
private static final Map<String, Class<?>> PRIMITIVE_TYPES = new HashMap<String, Class<?>>(9, 1.0F);
private static Set<Class> whitelistBaseClasses = new HashSet<Class>();
- private static Set<String> whitelistClassNameCache = Collections.newSetFromMap(new ConcurrentHashMap<String, Boolean>());
+ private static Map<String, Boolean> whitelistClassNameCache = new ConcurrentHashMap<String, Boolean>();
static {
PRIMITIVE_TYPES.put("bool", Boolean.TYPE);
@@ -55,17 +54,17 @@
PRIMITIVE_TYPES.put("double", Double.TYPE);
PRIMITIVE_TYPES.put("void", Void.TYPE);
- whitelistClassNameCache.add(new Object[0].getClass().getName());
- whitelistClassNameCache.add(new String[0].getClass().getName());
- whitelistClassNameCache.add(new Boolean[0].getClass().getName());
- whitelistClassNameCache.add(new Byte[0].getClass().getName());
- whitelistClassNameCache.add(new Character[0].getClass().getName());
- whitelistClassNameCache.add(new Short[0].getClass().getName());
- whitelistClassNameCache.add(new Integer[0].getClass().getName());
- whitelistClassNameCache.add(new Long[0].getClass().getName());
- whitelistClassNameCache.add(new Float[0].getClass().getName());
- whitelistClassNameCache.add(new Double[0].getClass().getName());
- whitelistClassNameCache.add(new Void[0].getClass().getName());
+ whitelistClassNameCache.put(new Object[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new String[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Boolean[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Byte[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Character[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Short[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Integer[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Long[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Float[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Double[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Void[0].getClass().getName(), Boolean.TRUE);
whitelistBaseClasses.add(String.class);
whitelistBaseClasses.add(Boolean.class);
@@ -99,14 +98,14 @@
* Determine if the given requestedClassName is allowed by the whitelist
*/
boolean isClassValid(String requestedClassName) {
- if (whitelistClassNameCache.contains(requestedClassName)) {
+ if (whitelistClassNameCache.containsKey(requestedClassName)) {
return true;
}
try {
Class<?> requestedClass = Class.forName(requestedClassName);
for (Class baseClass : whitelistBaseClasses ) {
if (baseClass.isAssignableFrom(requestedClass)) {
- whitelistClassNameCache.add(requestedClassName);
+ whitelistClassNameCache.put(requestedClassName, Boolean.TRUE);
return true;
}
}
11 years, 3 months
JBoss Rich Faces SVN: r23250 - branches/embargo/3.3.3.Final_BZ#973877/framework/impl/src/main/java/org/ajax4jsf/resource.
by richfaces-svn-commits@lists.jboss.org
Author: bleathem
Date: 2013-07-10 22:35:36 -0400 (Wed, 10 Jul 2013)
New Revision: 23250
Modified:
branches/embargo/3.3.3.Final_BZ#973877/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java
Log:
BZ#973877 patch for RichFaces 3.3.3.Final, removing use of JDK 6 features
Modified: branches/embargo/3.3.3.Final_BZ#973877/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java
===================================================================
--- branches/embargo/3.3.3.Final_BZ#973877/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java 2013-07-10 17:11:54 UTC (rev 23249)
+++ branches/embargo/3.3.3.Final_BZ#973877/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java 2013-07-11 02:35:36 UTC (rev 23250)
@@ -26,7 +26,6 @@
import java.io.InvalidClassException;
import java.io.ObjectInputStream;
import java.io.ObjectStreamClass;
-import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
@@ -42,7 +41,7 @@
public class LookAheadObjectInputStream extends ObjectInputStream {
private static final Map<String, Class<?>> PRIMITIVE_TYPES = new HashMap<String, Class<?>>(9, 1.0F);
private static Set<Class> whitelistBaseClasses = new HashSet<Class>();
- private static Set<String> whitelistClassNameCache = Collections.newSetFromMap(new ConcurrentHashMap<String, Boolean>());
+ private static Map<String, Boolean> whitelistClassNameCache = new ConcurrentHashMap<String, Boolean>();
static {
PRIMITIVE_TYPES.put("bool", Boolean.TYPE);
@@ -55,17 +54,17 @@
PRIMITIVE_TYPES.put("double", Double.TYPE);
PRIMITIVE_TYPES.put("void", Void.TYPE);
- whitelistClassNameCache.add(new Object[0].getClass().getName());
- whitelistClassNameCache.add(new String[0].getClass().getName());
- whitelistClassNameCache.add(new Boolean[0].getClass().getName());
- whitelistClassNameCache.add(new Byte[0].getClass().getName());
- whitelistClassNameCache.add(new Character[0].getClass().getName());
- whitelistClassNameCache.add(new Short[0].getClass().getName());
- whitelistClassNameCache.add(new Integer[0].getClass().getName());
- whitelistClassNameCache.add(new Long[0].getClass().getName());
- whitelistClassNameCache.add(new Float[0].getClass().getName());
- whitelistClassNameCache.add(new Double[0].getClass().getName());
- whitelistClassNameCache.add(new Void[0].getClass().getName());
+ whitelistClassNameCache.put(new Object[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new String[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Boolean[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Byte[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Character[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Short[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Integer[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Long[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Float[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Double[0].getClass().getName(), Boolean.TRUE);
+ whitelistClassNameCache.put(new Void[0].getClass().getName(), Boolean.TRUE);
whitelistBaseClasses.add(String.class);
whitelistBaseClasses.add(Boolean.class);
@@ -99,14 +98,14 @@
* Determine if the given requestedClassName is allowed by the whitelist
*/
boolean isClassValid(String requestedClassName) {
- if (whitelistClassNameCache.contains(requestedClassName)) {
+ if (whitelistClassNameCache.containsKey(requestedClassName)) {
return true;
}
try {
Class<?> requestedClass = Class.forName(requestedClassName);
for (Class baseClass : whitelistBaseClasses ) {
if (baseClass.isAssignableFrom(requestedClass)) {
- whitelistClassNameCache.add(requestedClassName);
+ whitelistClassNameCache.put(requestedClassName, Boolean.TRUE);
return true;
}
}
11 years, 3 months
JBoss Rich Faces SVN: r23249 - in branches/community/3.3.X: framework/impl/src/main/resources/org/ajax4jsf and 4 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc
Date: 2013-07-10 13:11:54 -0400 (Wed, 10 Jul 2013)
New Revision: 23249
Added:
branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java
branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/SerializableResource.java
branches/community/3.3.X/framework/impl/src/main/resources/org/ajax4jsf/resource/
branches/community/3.3.X/framework/impl/src/main/resources/org/ajax4jsf/resource/resource-serialization.properties
Modified:
branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/ResourceBuilderImpl.java
branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/UserResource.java
branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/media/MediaData.java
branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/paint2d/PaintData.java
branches/community/3.3.X/ui/paint2D/src/main/java/org/richfaces/renderkit/html/Paint2DResource.java
Log:
BZ#973877 patch for RichFaces 3.3.3.Final, implementing a LookAheadObjectInputStream for object deserialisation
Added: branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java (rev 0)
+++ branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/LookAheadObjectInputStream.java 2013-07-10 17:11:54 UTC (rev 23249)
@@ -0,0 +1,148 @@
+/**
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ **/
+package org.ajax4jsf.resource;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InvalidClassException;
+import java.io.ObjectInputStream;
+import java.io.ObjectStreamClass;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.Map;
+import java.util.Properties;
+import java.util.Set;
+import java.util.concurrent.ConcurrentHashMap;
+
+/**
+ * When deserializing objects, first check that the class being deserialized is in the allowed whitelist.
+ *
+ * @author <a href="http://community.jboss.org/people/bleathem">Brian Leathem</a>
+ */
+public class LookAheadObjectInputStream extends ObjectInputStream {
+ private static final Map<String, Class<?>> PRIMITIVE_TYPES = new HashMap<String, Class<?>>(9, 1.0F);
+ private static Set<Class> whitelistBaseClasses = new HashSet<Class>();
+ private static Set<String> whitelistClassNameCache = Collections.newSetFromMap(new ConcurrentHashMap<String, Boolean>());
+
+ static {
+ PRIMITIVE_TYPES.put("bool", Boolean.TYPE);
+ PRIMITIVE_TYPES.put("byte", Byte.TYPE);
+ PRIMITIVE_TYPES.put("char", Character.TYPE);
+ PRIMITIVE_TYPES.put("short", Short.TYPE);
+ PRIMITIVE_TYPES.put("int", Integer.TYPE);
+ PRIMITIVE_TYPES.put("long", Long.TYPE);
+ PRIMITIVE_TYPES.put("float", Float.TYPE);
+ PRIMITIVE_TYPES.put("double", Double.TYPE);
+ PRIMITIVE_TYPES.put("void", Void.TYPE);
+
+ whitelistClassNameCache.add(new Object[0].getClass().getName());
+ whitelistClassNameCache.add(new String[0].getClass().getName());
+ whitelistClassNameCache.add(new Boolean[0].getClass().getName());
+ whitelistClassNameCache.add(new Byte[0].getClass().getName());
+ whitelistClassNameCache.add(new Character[0].getClass().getName());
+ whitelistClassNameCache.add(new Short[0].getClass().getName());
+ whitelistClassNameCache.add(new Integer[0].getClass().getName());
+ whitelistClassNameCache.add(new Long[0].getClass().getName());
+ whitelistClassNameCache.add(new Float[0].getClass().getName());
+ whitelistClassNameCache.add(new Double[0].getClass().getName());
+ whitelistClassNameCache.add(new Void[0].getClass().getName());
+
+ whitelistBaseClasses.add(String.class);
+ whitelistBaseClasses.add(Boolean.class);
+ whitelistBaseClasses.add(Byte.class);
+ whitelistBaseClasses.add(Character.class);
+ whitelistBaseClasses.add(Number.class);
+
+ loadWhitelist();
+ }
+
+ public LookAheadObjectInputStream(InputStream in) throws IOException {
+ super(in);
+ }
+
+ /**
+ * Only deserialize primitive or whitelisted classes
+ */
+ @Override
+ protected Class<?> resolveClass(ObjectStreamClass desc) throws IOException, ClassNotFoundException {
+ Class<?> primitiveType = PRIMITIVE_TYPES.get(desc.getName());
+ if (primitiveType != null) {
+ return primitiveType;
+ }
+ if (!isClassValid(desc.getName())) {
+ throw new InvalidClassException("Unauthorized deserialization attempt", desc.getName());
+ }
+ return super.resolveClass(desc);
+ }
+
+ /**
+ * Determine if the given requestedClassName is allowed by the whitelist
+ */
+ boolean isClassValid(String requestedClassName) {
+ if (whitelistClassNameCache.contains(requestedClassName)) {
+ return true;
+ }
+ try {
+ Class<?> requestedClass = Class.forName(requestedClassName);
+ for (Class baseClass : whitelistBaseClasses ) {
+ if (baseClass.isAssignableFrom(requestedClass)) {
+ whitelistClassNameCache.add(requestedClassName);
+ return true;
+ }
+ }
+ } catch (ClassNotFoundException e) {
+ return false;
+ }
+ return false;
+ }
+
+ /**
+ * Load the whitelist from the properties file
+ */
+ static void loadWhitelist() {
+ Properties whitelistProperties = new Properties();
+ InputStream stream = null;
+ try {
+ stream = LookAheadObjectInputStream.class.getResourceAsStream("resource-serialization.properties");
+ whitelistProperties.load(stream);
+ } catch (IOException e) {
+ throw new RuntimeException("Error loading the ResourceBuilder.properties file", e);
+ } finally {
+ if (stream != null) {
+ try {
+ stream.close();
+ } catch (IOException e) {
+ throw new RuntimeException("Error closing the ResourceBuilder.properties file", e);
+ }
+ }
+ }
+ for (String baseClassName : whitelistProperties.getProperty("whitelist").split(",")) {
+ try {
+ Class<?> baseClass = Class.forName(baseClassName);
+ whitelistBaseClasses.add(baseClass);
+ } catch (ClassNotFoundException e) {
+ throw new RuntimeException("Unable to load whiteList class " + baseClassName, e);
+ }
+ }
+ }
+}
Modified: branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/ResourceBuilderImpl.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/ResourceBuilderImpl.java 2013-07-10 16:52:03 UTC (rev 23248)
+++ branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/ResourceBuilderImpl.java 2013-07-10 17:11:54 UTC (rev 23249)
@@ -376,8 +376,7 @@
data = objectArray;
} else {
try {
- ObjectInputStream in = new ObjectInputStream(
- new ByteArrayInputStream(objectArray));
+ ObjectInputStream in = new LookAheadObjectInputStream(new ByteArrayInputStream(objectArray));
data = in.readObject();
} catch (StreamCorruptedException e) {
log.error(Messages
Added: branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/SerializableResource.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/SerializableResource.java (rev 0)
+++ branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/SerializableResource.java 2013-07-10 17:11:54 UTC (rev 23249)
@@ -0,0 +1,31 @@
+/**
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ **/
+package org.ajax4jsf.resource;
+
+/**
+ * A marker interface, used to indicate that the class implementing this interfaces is cleared for deserialisation by
+ * the LookAheadObjectInputStream
+ *
+ * @author <a href="http://community.jboss.org/people/bleathem">Brian Leathem</a>
+ */
+public interface SerializableResource extends java.io.Serializable {
+}
Modified: branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/UserResource.java
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/UserResource.java 2013-07-10 16:52:03 UTC (rev 23248)
+++ branches/community/3.3.X/framework/impl/src/main/java/org/ajax4jsf/resource/UserResource.java 2013-07-10 17:11:54 UTC (rev 23249)
@@ -23,7 +23,6 @@
import java.io.IOException;
import java.io.OutputStream;
-import java.io.Serializable;
import java.util.Date;
import javax.el.ELContext;
@@ -163,7 +162,7 @@
return true;
}
- public static class UriData implements Serializable {
+ public static class UriData implements SerializableResource {
/**
*
Added: branches/community/3.3.X/framework/impl/src/main/resources/org/ajax4jsf/resource/resource-serialization.properties
===================================================================
--- branches/community/3.3.X/framework/impl/src/main/resources/org/ajax4jsf/resource/resource-serialization.properties (rev 0)
+++ branches/community/3.3.X/framework/impl/src/main/resources/org/ajax4jsf/resource/resource-serialization.properties 2013-07-10 17:11:54 UTC (rev 23249)
@@ -0,0 +1 @@
+whitelist = org.ajax4jsf.resource.InternetResource,org.ajax4jsf.resource.SerializableResource,javax.el.Expression,javax.faces.el.MethodBinding,javax.faces.component.StateHolderSaver,java.awt.Color
\ No newline at end of file
Modified: branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/media/MediaData.java
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/media/MediaData.java 2013-07-10 16:52:03 UTC (rev 23248)
+++ branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/media/MediaData.java 2013-07-10 17:11:54 UTC (rev 23249)
@@ -1,10 +1,11 @@
package org.richfaces.demo.media;
import java.awt.Color;
-import java.io.Serializable;
-public class MediaData implements Serializable{
+import org.ajax4jsf.resource.SerializableResource;
+public class MediaData implements SerializableResource {
+
private static final long serialVersionUID = 1L;
Integer Width=110;
Integer Height=50;
Modified: branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/paint2d/PaintData.java
===================================================================
--- branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/paint2d/PaintData.java 2013-07-10 16:52:03 UTC (rev 23248)
+++ branches/community/3.3.X/samples/richfaces-demo/src/main/java/org/richfaces/demo/paint2d/PaintData.java 2013-07-10 17:11:54 UTC (rev 23249)
@@ -1,8 +1,8 @@
package org.richfaces.demo.paint2d;
-import java.io.Serializable;
+import org.ajax4jsf.resource.SerializableResource;
-public class PaintData implements Serializable{
+public class PaintData implements SerializableResource {
/**
*
*/
Modified: branches/community/3.3.X/ui/paint2D/src/main/java/org/richfaces/renderkit/html/Paint2DResource.java
===================================================================
--- branches/community/3.3.X/ui/paint2D/src/main/java/org/richfaces/renderkit/html/Paint2DResource.java 2013-07-10 16:52:03 UTC (rev 23248)
+++ branches/community/3.3.X/ui/paint2D/src/main/java/org/richfaces/renderkit/html/Paint2DResource.java 2013-07-10 17:11:54 UTC (rev 23249)
@@ -27,7 +27,6 @@
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
-import java.io.Serializable;
import javax.faces.FacesException;
import javax.faces.component.UIComponentBase;
@@ -41,6 +40,7 @@
import org.ajax4jsf.resource.PngRenderer;
import org.ajax4jsf.resource.ResourceContext;
import org.ajax4jsf.resource.ResourceRenderer;
+import org.ajax4jsf.resource.SerializableResource;
import org.ajax4jsf.util.HtmlColor;
import org.richfaces.component.UIPaint2D;
@@ -126,7 +126,7 @@
}
}
- private static final class ImageData implements Serializable {
+ private static final class ImageData implements SerializableResource {
private static final long serialVersionUID = 4452040100045367728L;
11 years, 3 months
JBoss Rich Faces SVN: r23248 - in tags/3.3.4.Final: cdk and 220 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc
Date: 2013-07-10 12:52:03 -0400 (Wed, 10 Jul 2013)
New Revision: 23248
Modified:
tags/3.3.4.Final/cdk/generator/pom.xml
tags/3.3.4.Final/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.4.Final/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.4.Final/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.4.Final/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.4.Final/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.4.Final/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.4.Final/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.4.Final/cdk/maven-archetype-theme/pom.xml
tags/3.3.4.Final/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
tags/3.3.4.Final/cdk/maven-cdk-plugin/pom.xml
tags/3.3.4.Final/cdk/maven-javascript-plugin/pom.xml
tags/3.3.4.Final/cdk/maven-resource-dependency-plugin/pom.xml
tags/3.3.4.Final/cdk/pom.xml
tags/3.3.4.Final/cdk/richfaces-facelets/pom.xml
tags/3.3.4.Final/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
tags/3.3.4.Final/docs/cdkguide/en/pom.xml
tags/3.3.4.Final/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml
tags/3.3.4.Final/docs/cdkguide/en/src/main/docbook/modules/devsample.xml
tags/3.3.4.Final/docs/cdkguide/en/src/main/docbook/modules/setup.xml
tags/3.3.4.Final/docs/cdkguide/pom.xml
tags/3.3.4.Final/docs/common-resources/en/pom.xml
tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
tags/3.3.4.Final/docs/common-resources/pom.xml
tags/3.3.4.Final/docs/faq/en/pom.xml
tags/3.3.4.Final/docs/faq/pom.xml
tags/3.3.4.Final/docs/highlight/pom.xml
tags/3.3.4.Final/docs/migrationguide/en/pom.xml
tags/3.3.4.Final/docs/migrationguide/pom.xml
tags/3.3.4.Final/docs/photo_album_app_guide/en/pom.xml
tags/3.3.4.Final/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml
tags/3.3.4.Final/docs/photo_album_app_guide/pom.xml
tags/3.3.4.Final/docs/pom.xml
tags/3.3.4.Final/docs/userguide/en/pom.xml
tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
tags/3.3.4.Final/docs/userguide/pom.xml
tags/3.3.4.Final/examples/photoalbum/assembly/pom.xml
tags/3.3.4.Final/examples/photoalbum/pom.xml
tags/3.3.4.Final/examples/photoalbum/source/ear/pom.xml
tags/3.3.4.Final/examples/photoalbum/source/ejb/pom.xml
tags/3.3.4.Final/examples/photoalbum/source/pom.xml
tags/3.3.4.Final/examples/photoalbum/source/web/pom.xml
tags/3.3.4.Final/examples/photoalbum/tests/pom.xml
tags/3.3.4.Final/extensions/gwt/pom.xml
tags/3.3.4.Final/extensions/pom.xml
tags/3.3.4.Final/extensions/seam/pom.xml
tags/3.3.4.Final/extensions/trinidad/pom.xml
tags/3.3.4.Final/framework/api/pom.xml
tags/3.3.4.Final/framework/impl/pom.xml
tags/3.3.4.Final/framework/jsf-test/pom.xml
tags/3.3.4.Final/framework/pom.xml
tags/3.3.4.Final/framework/test/pom.xml
tags/3.3.4.Final/pom.xml
tags/3.3.4.Final/samples/beanValidatorSample/pom.xml
tags/3.3.4.Final/samples/calendar-sample/pom.xml
tags/3.3.4.Final/samples/colorPickerDemo/pom.xml
tags/3.3.4.Final/samples/columnsDemo/pom.xml
tags/3.3.4.Final/samples/combobox-sample/pom.xml
tags/3.3.4.Final/samples/contextMenuDemo/pom.xml
tags/3.3.4.Final/samples/createProject.sh
tags/3.3.4.Final/samples/darkX/pom.xml
tags/3.3.4.Final/samples/dataFilterSliderDemo/pom.xml
tags/3.3.4.Final/samples/dataTableDemo/pom.xml
tags/3.3.4.Final/samples/datascroller-sample/pom.xml
tags/3.3.4.Final/samples/dragDropDemo/pom.xml
tags/3.3.4.Final/samples/dropdownmenu-sample/pom.xml
tags/3.3.4.Final/samples/editor-sample/pom.xml
tags/3.3.4.Final/samples/editorSeam-sample/pom.xml
tags/3.3.4.Final/samples/effect-sample/pom.xml
tags/3.3.4.Final/samples/extendedDataTable-sample/pom.xml
tags/3.3.4.Final/samples/fileUploadDemo/pom.xml
tags/3.3.4.Final/samples/functions-demo/pom.xml
tags/3.3.4.Final/samples/glassX/pom.xml
tags/3.3.4.Final/samples/gmap-sample/pom.xml
tags/3.3.4.Final/samples/hotKey-sample/pom.xml
tags/3.3.4.Final/samples/inplaceInput-sample/pom.xml
tags/3.3.4.Final/samples/inplaceSelect-sample/pom.xml
tags/3.3.4.Final/samples/inputNumberSliderDemo/pom.xml
tags/3.3.4.Final/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.4.Final/samples/jQuery-sample/pom.xml
tags/3.3.4.Final/samples/jira-data/pom.xml
tags/3.3.4.Final/samples/laguna/pom.xml
tags/3.3.4.Final/samples/layout-sample/pom.xml
tags/3.3.4.Final/samples/listShuttleDemo/pom.xml
tags/3.3.4.Final/samples/local-value-demo/pom.xml
tags/3.3.4.Final/samples/mediaOutput/pom.xml
tags/3.3.4.Final/samples/modalpanel-sample/pom.xml
tags/3.3.4.Final/samples/orderingListDemo/pom.xml
tags/3.3.4.Final/samples/panel-sample/pom.xml
tags/3.3.4.Final/samples/panelbar-sample/pom.xml
tags/3.3.4.Final/samples/panelmenu-sample/pom.xml
tags/3.3.4.Final/samples/pickList-sample/pom.xml
tags/3.3.4.Final/samples/pom.xml
tags/3.3.4.Final/samples/progressBarDemo/pom.xml
tags/3.3.4.Final/samples/queue-sample/pom.xml
tags/3.3.4.Final/samples/rich-message-demo/pom.xml
tags/3.3.4.Final/samples/richfaces-art-datatable/pom.xml
tags/3.3.4.Final/samples/richfaces-demo/functional-test/pom.xml
tags/3.3.4.Final/samples/richfaces-demo/pom.xml
tags/3.3.4.Final/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.4.Final/samples/richfaces-ear-demo/pom.xml
tags/3.3.4.Final/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.4.Final/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.4.Final/samples/scrollableDataTableDemo/pom.xml
tags/3.3.4.Final/samples/seamEAR/ear/pom.xml
tags/3.3.4.Final/samples/seamEAR/ejbs/pom.xml
tags/3.3.4.Final/samples/seamEAR/pom.xml
tags/3.3.4.Final/samples/seamEAR/primary-source/pom.xml
tags/3.3.4.Final/samples/seamEAR/projects/logging/pom.xml
tags/3.3.4.Final/samples/seamEAR/projects/pom.xml
tags/3.3.4.Final/samples/seamEAR/wars/pom.xml
tags/3.3.4.Final/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.4.Final/samples/seamIntegration/pom.xml
tags/3.3.4.Final/samples/separator-sample/pom.xml
tags/3.3.4.Final/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.4.Final/samples/skins/pom.xml
tags/3.3.4.Final/samples/sortingFilteringDemo/pom.xml
tags/3.3.4.Final/samples/state-sample/pom.xml
tags/3.3.4.Final/samples/stdcomponents-sample/pom.xml
tags/3.3.4.Final/samples/suggestionbox-sample/pom.xml
tags/3.3.4.Final/samples/tabPanelDemo/pom.xml
tags/3.3.4.Final/samples/themes/pom.xml
tags/3.3.4.Final/samples/togglePanel-sample/pom.xml
tags/3.3.4.Final/samples/tomahawkCompability/pom.xml
tags/3.3.4.Final/samples/toolBarDemo/pom.xml
tags/3.3.4.Final/samples/tooltip-sample/pom.xml
tags/3.3.4.Final/samples/tree-demo/pom.xml
tags/3.3.4.Final/samples/treeModelDemo/pom.xml
tags/3.3.4.Final/samples/violetRays/pom.xml
tags/3.3.4.Final/samples/virtualEarth-sample/pom.xml
tags/3.3.4.Final/sandbox/api/pom.xml
tags/3.3.4.Final/sandbox/cdk/pom.xml
tags/3.3.4.Final/sandbox/impl/pom.xml
tags/3.3.4.Final/sandbox/pom.xml
tags/3.3.4.Final/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.4.Final/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.4.Final/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.4.Final/sandbox/samples/maven-rd-plugin-sample/pom.xml
tags/3.3.4.Final/sandbox/samples/panel2-sample/pom.xml
tags/3.3.4.Final/sandbox/samples/pom.xml
tags/3.3.4.Final/sandbox/samples/rex-demo/pom.xml
tags/3.3.4.Final/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.4.Final/sandbox/ui/create.bat
tags/3.3.4.Final/sandbox/ui/create.sh
tags/3.3.4.Final/sandbox/ui/dialog-window/pom.xml
tags/3.3.4.Final/sandbox/ui/editorOld/pom.xml
tags/3.3.4.Final/sandbox/ui/panel2/pom.xml
tags/3.3.4.Final/sandbox/ui/pom.xml
tags/3.3.4.Final/sandbox/ui/rex-button/pom.xml
tags/3.3.4.Final/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.4.Final/sandbox/ui/rex-resizable/pom.xml
tags/3.3.4.Final/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.4.Final/sandbox/ui/sortableHeader/pom.xml
tags/3.3.4.Final/sandbox/ui/treeTable/pom.xml
tags/3.3.4.Final/test-applications/ajaxTest/pom.xml
tags/3.3.4.Final/test-applications/automator/pom.xml
tags/3.3.4.Final/test-applications/facelets/pom.xml
tags/3.3.4.Final/test-applications/jsp/pom.xml
tags/3.3.4.Final/test-applications/pom.xml
tags/3.3.4.Final/test-applications/regression-test/pom.xml
tags/3.3.4.Final/test-applications/regressionArea/pom.xml
tags/3.3.4.Final/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.4.Final/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.4.Final/test-applications/regressionArea/regressionArea-tests/pom.xml
tags/3.3.4.Final/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.4.Final/test-applications/richfaces-docs/pom.xml
tags/3.3.4.Final/test-applications/seleniumTest/pom.xml
tags/3.3.4.Final/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.4.Final/test-applications/seleniumTest/samples/pom.xml
tags/3.3.4.Final/test-applications/test-jsp/pom.xml
tags/3.3.4.Final/ui/assembly/pom.xml
tags/3.3.4.Final/ui/beanValidator/pom.xml
tags/3.3.4.Final/ui/calendar/pom.xml
tags/3.3.4.Final/ui/colorPicker/pom.xml
tags/3.3.4.Final/ui/columns/pom.xml
tags/3.3.4.Final/ui/combobox/pom.xml
tags/3.3.4.Final/ui/componentControl/pom.xml
tags/3.3.4.Final/ui/contextMenu/pom.xml
tags/3.3.4.Final/ui/core/pom.xml
tags/3.3.4.Final/ui/create.bat
tags/3.3.4.Final/ui/dataFilterSlider/pom.xml
tags/3.3.4.Final/ui/dataTable/pom.xml
tags/3.3.4.Final/ui/datascroller/pom.xml
tags/3.3.4.Final/ui/drag-drop/pom.xml
tags/3.3.4.Final/ui/dropdown-menu/pom.xml
tags/3.3.4.Final/ui/editor/pom.xml
tags/3.3.4.Final/ui/effect/pom.xml
tags/3.3.4.Final/ui/extendedDataTable/pom.xml
tags/3.3.4.Final/ui/fileUpload/pom.xml
tags/3.3.4.Final/ui/functions/pom.xml
tags/3.3.4.Final/ui/gmap/pom.xml
tags/3.3.4.Final/ui/hotKey/pom.xml
tags/3.3.4.Final/ui/inplaceInput/pom.xml
tags/3.3.4.Final/ui/inplaceSelect/pom.xml
tags/3.3.4.Final/ui/inputnumber-slider/pom.xml
tags/3.3.4.Final/ui/inputnumber-spinner/pom.xml
tags/3.3.4.Final/ui/insert/pom.xml
tags/3.3.4.Final/ui/jQuery/pom.xml
tags/3.3.4.Final/ui/layout/pom.xml
tags/3.3.4.Final/ui/listShuttle/pom.xml
tags/3.3.4.Final/ui/menu-components/pom.xml
tags/3.3.4.Final/ui/message/pom.xml
tags/3.3.4.Final/ui/modal-panel/pom.xml
tags/3.3.4.Final/ui/orderingList/pom.xml
tags/3.3.4.Final/ui/paint2D/pom.xml
tags/3.3.4.Final/ui/panel/pom.xml
tags/3.3.4.Final/ui/panelbar/pom.xml
tags/3.3.4.Final/ui/panelmenu/pom.xml
tags/3.3.4.Final/ui/pickList/pom.xml
tags/3.3.4.Final/ui/pom.xml
tags/3.3.4.Final/ui/progressBAR/pom.xml
tags/3.3.4.Final/ui/scrollableDataTable/pom.xml
tags/3.3.4.Final/ui/separator/pom.xml
tags/3.3.4.Final/ui/simpleTogglePanel/pom.xml
tags/3.3.4.Final/ui/spacer/pom.xml
tags/3.3.4.Final/ui/state/pom.xml
tags/3.3.4.Final/ui/suggestionbox/pom.xml
tags/3.3.4.Final/ui/tabPanel/pom.xml
tags/3.3.4.Final/ui/togglePanel/pom.xml
tags/3.3.4.Final/ui/toolBar/pom.xml
tags/3.3.4.Final/ui/tooltip/pom.xml
tags/3.3.4.Final/ui/tree/pom.xml
tags/3.3.4.Final/ui/treeModel/pom.xml
tags/3.3.4.Final/ui/treeTable/pom.xml
tags/3.3.4.Final/ui/virtualEarth/pom.xml
Log:
bumping version to 3.3.4.Final
Modified: tags/3.3.4.Final/cdk/generator/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/generator/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/generator/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Java Server Faces component generator</name>
<build>
<plugins>
Modified: tags/3.3.4.Final/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-archetype-jsf-component/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-archetype-jsf-component/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.4.Final/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-archetype-jsfwebapp/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-archetype-jsfwebapp/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -30,12 +30,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.4.Final/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-archetype-plug-n-skin/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-archetype-plug-n-skin/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.4.Final/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.4.Final/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-archetype-seam-app/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-archetype-seam-app/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/cdk/maven-archetype-theme/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-archetype-theme/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-archetype-theme/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,12 +3,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-theme</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>maven-archetype</packaging>
<name>maven-archetype-theme</name>
<build>
Modified: tags/3.3.4.Final/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-archetype-theme/src/main/resources/archetype-resources/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -41,12 +41,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
Modified: tags/3.3.4.Final/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-cdk-plugin/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-cdk-plugin/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.4.Final/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-javascript-plugin/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-javascript-plugin/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.4.Final/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/maven-resource-dependency-plugin/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/maven-resource-dependency-plugin/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -12,7 +12,7 @@
<artifactId>maven-resource-dependency-plugin</artifactId>
<packaging>maven-plugin</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>maven-resource-dependency-plugin</name>
@@ -40,7 +40,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
Modified: tags/3.3.4.Final/cdk/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.4.Final/cdk/richfaces-facelets/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/richfaces-facelets/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/richfaces-facelets/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,13 +4,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>richfaces-facelets</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>maven-archetype-rf-facelets</name>
<packaging>maven-archetype</packaging>
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<build>
Modified: tags/3.3.4.Final/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml
===================================================================
--- tags/3.3.4.Final/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/cdk/richfaces-facelets/src/main/resources/archetype-resources/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -28,7 +28,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.4.Final/docs/cdkguide/en/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/cdkguide/en/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/cdkguide/en/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.4.Final/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml
===================================================================
--- tags/3.3.4.Final/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/cdkguide/en/src/main/docbook/includes/pcreate.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -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.3.Final -DartifactId=inputDate]]>
+ <programlisting role="XML"><![CDATA[mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.4.Final -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.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -202,7 +202,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>]]>
Modified: tags/3.3.4.Final/docs/cdkguide/en/src/main/docbook/modules/devsample.xml
===================================================================
--- tags/3.3.4.Final/docs/cdkguide/en/src/main/docbook/modules/devsample.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/cdkguide/en/src/main/docbook/modules/devsample.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -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.3.Final -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.4.Final -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.4.Final/docs/cdkguide/en/src/main/docbook/modules/setup.xml
===================================================================
--- tags/3.3.4.Final/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/cdkguide/en/src/main/docbook/modules/setup.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -180,7 +180,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>]]>
Modified: tags/3.3.4.Final/docs/cdkguide/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/cdkguide/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/cdkguide/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.4.Final/docs/common-resources/en/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/common-resources/en/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/common-resources/en/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>Documentation common resources (${translation})</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,7 +4,7 @@
<artifactId>richfacesguide-archetype</artifactId>
<packaging>maven-archetype</packaging>
<name>richfacesguide-archetype</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<extensions>
<extension>
Modified: tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/en/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.richfacesguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>Richfaces Guide Template</name>
Modified: tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/common-resources/en/src/main/archetypes/richfaces_archetype/src/main/resources/archetype-resources/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>richfacesguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>richfacesguide</name>
<description>Richfaces Guide Template</description>
<pluginRepositories>
Modified: tags/3.3.4.Final/docs/common-resources/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/common-resources/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/common-resources/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.4.Final/docs/faq/en/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/faq/en/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/faq/en/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
<build>
Modified: tags/3.3.4.Final/docs/faq/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/faq/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/faq/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<!--repositories>
Modified: tags/3.3.4.Final/docs/highlight/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/highlight/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/highlight/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.4.Final/docs/migrationguide/en/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/migrationguide/en/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/migrationguide/en/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
<build>
Modified: tags/3.3.4.Final/docs/migrationguide/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/migrationguide/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/migrationguide/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.4.Final/docs/photo_album_app_guide/en/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/photo_album_app_guide/en/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/photo_album_app_guide/en/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.photo_album_app_guide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>RichFaces Photo Album application Guide (${translation})</name>
Modified: tags/3.3.4.Final/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml
===================================================================
--- tags/3.3.4.Final/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/photo_album_app_guide/en/src/main/docbook/modules/application_overview.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -74,7 +74,7 @@
<para><code>mvn archetype:generate </code></para>
<para><code>-DarchetypeGroupId=org.richfaces.cdk </code></para>
<para><code>-DarchetypeArtifactId=maven-archetype-seam-app </code></para>
- <para><code>-DarchetypeVersion=3.3.3.Final </code></para>
+ <para><code>-DarchetypeVersion=3.3.4.Final </code></para>
<para><code>-DgroupId=[Your_project_group_id] </code></para>
<para><code>-DartifactId=[Your_project_name] </code></para>
<para>Some project preferences such as <property>RichFaces</property> components version or Jboss server version and others could be customized in the root <code>.pom</code> file </para>
Modified: tags/3.3.4.Final/docs/photo_album_app_guide/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/photo_album_app_guide/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/photo_album_app_guide/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,13 +4,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>photo_album_app_guide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>RichFaces Photo Album Application Guide</name>
<description>RichFaces Photo Album Application Guide</description>
<pluginRepositories>
Modified: tags/3.3.4.Final/docs/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.4.Final/docs/userguide/en/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/userguide/en/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/userguide/en/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml
===================================================================
--- tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCGettingStarted.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -335,7 +335,7 @@
<para>Now you have everything to create the project using the "maven-archetype-jsfwebapp" archetype. Create a folder that will house your project and run the this command in it:</para>
<programlisting role="XML" ><![CDATA[...
-mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.3.Final -DgroupId=org.docs.richfaces -DartifactId=jsf-app
+mvn archetype:generate -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp -DarchetypeVersion=3.3.4.Final -DgroupId=org.docs.richfaces -DartifactId=jsf-app
...]]></programlisting>
@@ -461,17 +461,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
...]]></programlisting>
Modified: tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3839,7 +3839,7 @@
<listitem>
<para>
<code>archetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.3.Final"</code>
+ <code>"3.3.4.Final"</code>
</para>
</listitem>
<listitem>
@@ -4080,7 +4080,7 @@
follow the steps described in the previous section.</para>
<para>This command will be used to create a template of the new skin project. </para>
<programlisting role="XML"><![CDATA[
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.3.Final -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-plug-n-skin -DarchetypeVersion=3.3.4.Final -DartifactId=P-n-S -DgroupId=GROUPID -Dversion=1.0.-SNAPSHOT
]]></programlisting>
<para> Now you can browse the "P-n-S" folder to view what files and
folders were created there. </para>
Modified: tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml
===================================================================
--- tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/userguide/en/src/main/docbook/modules/RFCfaq.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -48,7 +48,7 @@
RichFaces components are available on<ulink
url="http://livedemo.exadel.com/richfaces-demo/">RichFaces Live Demo</ulink>.</para>
<para>War file of a nightly build can be found on the <ulink
- url="http://snapshots.jboss.org/maven2/org/richfaces/ui/richfaces-ui/3.3.3.Final/"
+ url="http://snapshots.jboss.org/maven2/org/richfaces/ui/richfaces-ui/3.3.4.Final/"
>Snapshots repository</ulink>.</para>
<para>Source Code (SVN) can be found in<ulink
url="http://anonsvn.jboss.org/repos/richfaces/trunk/samples/richfaces-demo/"
Modified: tags/3.3.4.Final/docs/userguide/pom.xml
===================================================================
--- tags/3.3.4.Final/docs/userguide/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/docs/userguide/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.4.Final/examples/photoalbum/assembly/pom.xml
===================================================================
--- tags/3.3.4.Final/examples/photoalbum/assembly/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/examples/photoalbum/assembly/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.4.Final/examples/photoalbum/pom.xml
===================================================================
--- tags/3.3.4.Final/examples/photoalbum/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/examples/photoalbum/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,7 +4,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Photoalbum Demo Application Root</name>
<modules>
Modified: tags/3.3.4.Final/examples/photoalbum/source/ear/pom.xml
===================================================================
--- tags/3.3.4.Final/examples/photoalbum/source/ear/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/examples/photoalbum/source/ear/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.4.Final/examples/photoalbum/source/ejb/pom.xml
===================================================================
--- tags/3.3.4.Final/examples/photoalbum/source/ejb/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/examples/photoalbum/source/ejb/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.4.Final/examples/photoalbum/source/pom.xml
===================================================================
--- tags/3.3.4.Final/examples/photoalbum/source/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/examples/photoalbum/source/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -8,7 +8,7 @@
<artifactId>photoalbum</artifactId>
<packaging>pom</packaging>
<name>${appName}</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<distributionManagement>
<downloadUrl>
Modified: tags/3.3.4.Final/examples/photoalbum/source/web/pom.xml
===================================================================
--- tags/3.3.4.Final/examples/photoalbum/source/web/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/examples/photoalbum/source/web/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.4.Final/examples/photoalbum/tests/pom.xml
===================================================================
--- tags/3.3.4.Final/examples/photoalbum/tests/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/examples/photoalbum/tests/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>photoalbum-root</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.examples</groupId>
Modified: tags/3.3.4.Final/extensions/gwt/pom.xml
===================================================================
--- tags/3.3.4.Final/extensions/gwt/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/extensions/gwt/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.4.Final/extensions/pom.xml
===================================================================
--- tags/3.3.4.Final/extensions/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/extensions/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.4.Final/extensions/seam/pom.xml
===================================================================
--- tags/3.3.4.Final/extensions/seam/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/extensions/seam/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.4.Final/extensions/trinidad/pom.xml
===================================================================
--- tags/3.3.4.Final/extensions/trinidad/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/extensions/trinidad/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.4.Final/framework/api/pom.xml
===================================================================
--- tags/3.3.4.Final/framework/api/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/framework/api/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<dependencies>
<dependency>
Modified: tags/3.3.4.Final/framework/impl/pom.xml
===================================================================
--- tags/3.3.4.Final/framework/impl/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/framework/impl/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,13 +3,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>${classifiedArtifactId}</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<resources>
<resource>
@@ -294,7 +294,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/framework/jsf-test/pom.xml
===================================================================
--- tags/3.3.4.Final/framework/jsf-test/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/framework/jsf-test/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,13 +4,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
<name>jsf-test</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<dependencies>
<dependency>
Modified: tags/3.3.4.Final/framework/pom.xml
===================================================================
--- tags/3.3.4.Final/framework/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/framework/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
Modified: tags/3.3.4.Final/framework/test/pom.xml
===================================================================
--- tags/3.3.4.Final/framework/test/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/framework/test/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,12 +3,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
Modified: tags/3.3.4.Final/pom.xml
===================================================================
--- tags/3.3.4.Final/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>RichFaces project</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
Modified: tags/3.3.4.Final/samples/beanValidatorSample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/beanValidatorSample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/beanValidatorSample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -34,7 +34,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.3.Final</version> </dependency>
+ <version>3.3.4.Final</version> </dependency>
-->
<dependency>
<groupId>org.slf4j</groupId>
@@ -50,12 +50,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.4.Final/samples/calendar-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/calendar-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/calendar-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/colorPickerDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/colorPickerDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/colorPickerDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -40,17 +40,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.4.Final/samples/columnsDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/columnsDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/columnsDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/combobox-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/combobox-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/combobox-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/contextMenuDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/contextMenuDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/contextMenuDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/createProject.sh
===================================================================
--- tags/3.3.4.Final/samples/createProject.sh 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/createProject.sh 2013-07-10 16:52:03 UTC (rev 23248)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.3.Final -Dversion=3.3.3.Final -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.4.Final -Dversion=3.3.4.Final -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: tags/3.3.4.Final/samples/darkX/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/darkX/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/darkX/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/dataFilterSliderDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/dataFilterSliderDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/dataTableDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/dataTableDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/dataTableDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/datascroller-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/datascroller-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/datascroller-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/dragDropDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/dragDropDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/dragDropDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/dropdownmenu-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/dropdownmenu-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/dropdownmenu-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/editor-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/editor-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/editor-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.4.Final/samples/editorSeam-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/editorSeam-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/editorSeam-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.4.Final/samples/effect-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/effect-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/effect-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/extendedDataTable-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/extendedDataTable-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/extendedDataTable-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.4.Final/samples/fileUploadDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/fileUploadDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/fileUploadDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/functions-demo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/functions-demo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/functions-demo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/glassX/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/glassX/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/glassX/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
<name>glassX</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/samples/gmap-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/gmap-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/gmap-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/hotKey-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/hotKey-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/hotKey-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.4.Final/samples/inplaceInput-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/inplaceInput-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/inplaceInput-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/inplaceSelect-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/inplaceSelect-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/inplaceSelect-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/inputNumberSliderDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/inputNumberSliderDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/inputNumberSpinnerDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/inputNumberSpinnerDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/jQuery-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/jQuery-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/jQuery-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/jira-data/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/jira-data/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/jira-data/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/laguna/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/laguna/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/laguna/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.4.Final/samples/layout-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/layout-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/layout-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>layout-sample</artifactId>
<packaging>war</packaging>
<name>layout Maven Webapp</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,17 +34,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.4.Final/samples/listShuttleDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/listShuttleDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/listShuttleDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/local-value-demo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/local-value-demo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/local-value-demo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/mediaOutput/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/mediaOutput/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/mediaOutput/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,11 +5,11 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces</groupId>
<artifactId>mediaOutput</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>war</packaging>
<name>mediaOutput Maven Webapp</name>
<build>
Modified: tags/3.3.4.Final/samples/modalpanel-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/modalpanel-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/modalpanel-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/orderingListDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/orderingListDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/orderingListDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/panel-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/panel-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/panel-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/panelbar-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/panelbar-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/panelbar-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/panelmenu-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/panelmenu-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/panelmenu-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/pickList-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/pickList-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/pickList-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.4.Final/samples/progressBarDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/progressBarDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/progressBarDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/queue-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/queue-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/queue-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.4.Final/samples/rich-message-demo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/rich-message-demo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/rich-message-demo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/richfaces-art-datatable/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/richfaces-art-datatable/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/richfaces-art-datatable/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/richfaces-demo/functional-test/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/richfaces-demo/functional-test/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/richfaces-demo/functional-test/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.richfaces.integrationTest</groupId>
<artifactId>functional-test</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>jar</packaging>
<name>selenium-test</name>
<url>http://maven.apache.org</url>
Modified: tags/3.3.4.Final/samples/richfaces-demo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/richfaces-demo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/richfaces-demo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -246,22 +246,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -360,12 +360,12 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
Modified: tags/3.3.4.Final/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/richfaces-ear-demo/ejb/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/richfaces-ear-demo/ejb/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.4.Final/samples/richfaces-ear-demo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/richfaces-ear-demo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/richfaces-ear-demo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.4.Final/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/richfaces-ear-demo/webapp/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/richfaces-ear-demo/webapp/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.4.Final/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/scrollableDataTableDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/scrollableDataTableDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.4.Final/samples/seamEAR/ear/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/seamEAR/ear/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/seamEAR/ear/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.4.Final/samples/seamEAR/ejbs/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/seamEAR/ejbs/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/seamEAR/ejbs/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.4.Final/samples/seamEAR/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/seamEAR/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/seamEAR/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/seamEAR/primary-source/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/seamEAR/primary-source/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/seamEAR/primary-source/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.4.Final/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/seamEAR/projects/logging/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/seamEAR/projects/logging/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
</project>
Modified: tags/3.3.4.Final/samples/seamEAR/projects/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/seamEAR/projects/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/seamEAR/projects/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.4.Final/samples/seamEAR/wars/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/seamEAR/wars/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/seamEAR/wars/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.4.Final/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/seamEAR/wars/seamWebapp/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/seamEAR/wars/seamWebapp/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.4.Final/samples/seamIntegration/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/seamIntegration/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/seamIntegration/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/separator-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/separator-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/separator-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/simpleTogglePanel-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/simpleTogglePanel-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/skins/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/skins/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/skins/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/sortingFilteringDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/sortingFilteringDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/sortingFilteringDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency-->
<dependency>
Modified: tags/3.3.4.Final/samples/state-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/state-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/state-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/samples/stdcomponents-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/stdcomponents-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/stdcomponents-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/suggestionbox-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/suggestionbox-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/suggestionbox-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/tabPanelDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/tabPanelDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/tabPanelDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/themes/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/themes/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/themes/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>themes</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.4.Final/samples/togglePanel-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/togglePanel-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/togglePanel-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/tomahawkCompability/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/tomahawkCompability/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/tomahawkCompability/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/toolBarDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/toolBarDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/toolBarDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/tooltip-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/tooltip-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/tooltip-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/tree-demo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/tree-demo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/tree-demo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/treeModelDemo/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/treeModelDemo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/treeModelDemo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/samples/violetRays/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/violetRays/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/violetRays/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,18 +4,18 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>violetRays</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>violetRays</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.4.Final/samples/virtualEarth-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/samples/virtualEarth-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/samples/virtualEarth-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.4.Final/sandbox/api/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/api/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/api/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.4.Final/sandbox/cdk/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/cdk/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/cdk/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.4.Final/sandbox/impl/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/impl/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/impl/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.4.Final/sandbox/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.4.Final/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/samples/dialog-window-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/samples/dialog-window-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.4.Final/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/samples/editorOld-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/samples/editorOld-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.4.Final/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/samples/fileUploadPOC/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/samples/fileUploadPOC/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.4.Final/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/samples/maven-rd-plugin-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/samples/maven-rd-plugin-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk.sandbox</groupId>
<artifactId>maven-rd-plugin-sample</artifactId>
<packaging>war</packaging>
<name>maven-rd-plugin-sample Maven Webapp</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<pluginRepositories>
<pluginRepository>
@@ -33,7 +33,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<configuration>
<scriptFilePath>scripts/custom-dependencies.js</scriptFilePath>
<styleFilePath>css/custom-dependencies.xcss</styleFilePath>
@@ -59,7 +59,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/samples/panel2-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/samples/panel2-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.4.Final/sandbox/samples/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/samples/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/samples/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.4.Final/sandbox/samples/rex-demo/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/samples/rex-demo/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/samples/rex-demo/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
Modified: tags/3.3.4.Final/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.4.Final/sandbox/ui/create.bat
===================================================================
--- tags/3.3.4.Final/sandbox/ui/create.bat 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/create.bat 2013-07-10 16:52:03 UTC (rev 23248)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.Final -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.4.Final -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.4.Final/sandbox/ui/create.sh
===================================================================
--- tags/3.3.4.Final/sandbox/ui/create.sh 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/create.sh 2013-07-10 16:52:03 UTC (rev 23248)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.Final -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.4.Final -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: tags/3.3.4.Final/sandbox/ui/dialog-window/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/ui/dialog-window/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/dialog-window/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.4.Final/sandbox/ui/editorOld/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/ui/editorOld/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/editorOld/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/sandbox/ui/panel2/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/ui/panel2/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/panel2/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/sandbox/ui/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/ui/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.4.Final/sandbox/ui/rex-button/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/ui/rex-button/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/rex-button/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/ui/rex-messageBox/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/rex-messageBox/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/ui/rex-resizable/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/rex-resizable/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/ui/simpleTogglePanel2/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/simpleTogglePanel2/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/ui/sortableHeader/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/sortableHeader/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/sandbox/ui/treeTable/pom.xml
===================================================================
--- tags/3.3.4.Final/sandbox/ui/treeTable/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/sandbox/ui/treeTable/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/test-applications/ajaxTest/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/ajaxTest/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/ajaxTest/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.4.Final/test-applications/automator/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/automator/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/automator/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.4.Final/test-applications/facelets/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/facelets/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/facelets/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.4.Final/test-applications/jsp/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/jsp/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/jsp/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.4.Final/test-applications/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,7 +50,7 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>RichFaces Test Applications</name>
<properties>
Modified: tags/3.3.4.Final/test-applications/regression-test/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/regression-test/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/regression-test/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,7 +5,7 @@
<artifactId>regression-test</artifactId>
<name>Regression test application</name>
<packaging>war</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<description>Application for manual testing of regressions.</description>
<url>http://www.jboss.org/richfaces</url>
<inceptionYear>2009</inceptionYear>
Modified: tags/3.3.4.Final/test-applications/regressionArea/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/regressionArea/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/regressionArea/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -36,7 +36,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.3.Final</richversion>
+ <richversion>3.3.4.Final</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: tags/3.3.4.Final/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/regressionArea/regressionArea-ear/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/regressionArea/regressionArea-ear/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.4.Final/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/regressionArea/regressionArea-ejb/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/regressionArea/regressionArea-ejb/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.4.Final/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/regressionArea/regressionArea-tests/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/regressionArea/regressionArea-tests/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: tags/3.3.4.Final/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/regressionArea/regressionArea-web/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/regressionArea/regressionArea-web/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.4.Final/test-applications/richfaces-docs/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/richfaces-docs/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/richfaces-docs/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -204,7 +204,7 @@
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
@@ -214,7 +214,7 @@
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
@@ -224,7 +224,7 @@
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
Modified: tags/3.3.4.Final/test-applications/seleniumTest/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/seleniumTest/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/seleniumTest/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -233,7 +233,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.4.Final/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/seleniumTest/richfaces/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/seleniumTest/richfaces/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: tags/3.3.4.Final/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/seleniumTest/samples/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/seleniumTest/samples/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.4.Final/test-applications/test-jsp/pom.xml
===================================================================
--- tags/3.3.4.Final/test-applications/test-jsp/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/test-applications/test-jsp/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.4.Final/ui/assembly/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/assembly/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/assembly/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
@@ -435,17 +435,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl-jsf2</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</profile>
Modified: tags/3.3.4.Final/ui/beanValidator/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/beanValidator/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/beanValidator/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,19 +4,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
<name>beanValidator</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
Modified: tags/3.3.4.Final/ui/calendar/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/calendar/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/calendar/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -46,7 +46,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/ui/colorPicker/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/colorPicker/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/colorPicker/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -12,7 +12,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/columns/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/columns/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/columns/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.4.Final/ui/combobox/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/combobox/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/combobox/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
Modified: tags/3.3.4.Final/ui/componentControl/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/componentControl/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/componentControl/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/contextMenu/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/contextMenu/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/contextMenu/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/ui/core/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/core/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/core/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/create.bat
===================================================================
--- tags/3.3.4.Final/ui/create.bat 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/create.bat 2013-07-10 16:52:03 UTC (rev 23248)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.3.Final -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.4.Final -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.4.Final/ui/dataFilterSlider/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/dataFilterSlider/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/dataFilterSlider/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/dataTable/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/dataTable/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/dataTable/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.4.Final/ui/datascroller/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/datascroller/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/datascroller/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/drag-drop/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/drag-drop/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/drag-drop/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.4.Final/ui/dropdown-menu/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/dropdown-menu/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/dropdown-menu/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/ui/editor/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/editor/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/editor/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.4.Final/ui/effect/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/effect/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/effect/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/extendedDataTable/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/extendedDataTable/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/extendedDataTable/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -64,40 +64,40 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>jQuery</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>scrollableDataTable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/ui/fileUpload/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/fileUpload/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/fileUpload/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,7 +51,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/ui/functions/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/functions/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/functions/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/gmap/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/gmap/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/gmap/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/hotKey/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/hotKey/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/hotKey/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/inplaceInput/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/inplaceInput/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/inplaceInput/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/ui/inplaceSelect/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/inplaceSelect/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/inplaceSelect/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
Modified: tags/3.3.4.Final/ui/inputnumber-slider/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/inputnumber-slider/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/inputnumber-slider/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/inputnumber-spinner/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/inputnumber-spinner/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/inputnumber-spinner/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.4.Final/ui/insert/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/insert/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/insert/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/jQuery/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/jQuery/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/jQuery/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/layout/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/layout/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/layout/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -4,18 +4,18 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>layout</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>layout</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.4.Final/ui/listShuttle/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/listShuttle/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/listShuttle/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.4.Final/ui/menu-components/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/menu-components/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/menu-components/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/message/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/message/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/message/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/modal-panel/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/modal-panel/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/modal-panel/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/orderingList/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/orderingList/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/orderingList/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/paint2D/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/paint2D/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/paint2D/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/panel/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/panel/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/panel/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.4.Final/ui/panelbar/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/panelbar/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/panelbar/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/panelmenu/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/panelmenu/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/panelmenu/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/pickList/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/pickList/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/pickList/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,13 +53,13 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
Modified: tags/3.3.4.Final/ui/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -187,12 +187,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
@@ -249,7 +249,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.4.Final/ui/progressBAR/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/progressBAR/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/progressBAR/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/ui/scrollableDataTable/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/scrollableDataTable/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/scrollableDataTable/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,12 +70,12 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/ui/separator/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/separator/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/separator/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.4.Final/ui/simpleTogglePanel/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/simpleTogglePanel/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/simpleTogglePanel/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/spacer/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/spacer/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/spacer/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/state/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/state/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/state/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/suggestionbox/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/suggestionbox/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/suggestionbox/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/tabPanel/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/tabPanel/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/tabPanel/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/togglePanel/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/togglePanel/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/togglePanel/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/toolBar/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/toolBar/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/toolBar/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/tooltip/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/tooltip/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/tooltip/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/tree/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/tree/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/tree/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/ui/treeModel/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/treeModel/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/treeModel/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.4.Final/ui/treeTable/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/treeTable/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/treeTable/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.4.Final/ui/virtualEarth/pom.xml
===================================================================
--- tags/3.3.4.Final/ui/virtualEarth/pom.xml 2013-07-10 15:23:10 UTC (rev 23247)
+++ tags/3.3.4.Final/ui/virtualEarth/pom.xml 2013-07-10 16:52:03 UTC (rev 23248)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.3.Final</version>
+ <version>3.3.4.Final</version>
<executions>
<execution>
<phase>generate-sources</phase>
11 years, 3 months
JBoss Rich Faces SVN: r23247 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc
Date: 2013-07-10 11:23:10 -0400 (Wed, 10 Jul 2013)
New Revision: 23247
Added:
tags/3.3.4.Final/
Log:
preparing tag for fix of BZ#973877
11 years, 3 months
JBoss Rich Faces SVN: r23246 - in branches/enterprise/3.3.1.SP3_test_patch/ui: scrollableDataTable/src/main/javascript/ClientUI/common/box and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: bleathem
Date: 2013-07-08 18:16:06 -0400 (Mon, 08 Jul 2013)
New Revision: 23246
Modified:
branches/enterprise/3.3.1.SP3_test_patch/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js
branches/enterprise/3.3.1.SP3_test_patch/ui/scrollableDataTable/src/main/javascript/ClientUI/common/box/Box.js
Log:
RF-7173: Back-ported the fix from RF 3.3.3.Final
Modified: branches/enterprise/3.3.1.SP3_test_patch/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js
===================================================================
--- branches/enterprise/3.3.1.SP3_test_patch/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js 2013-07-08 16:51:27 UTC (rev 23245)
+++ branches/enterprise/3.3.1.SP3_test_patch/ui/extendedDataTable/src/main/javascript/ClientUI/controls/datatable/ExtendedDataTable.js 2013-07-08 22:16:06 UTC (rev 23246)
@@ -398,8 +398,11 @@
cols[columnsNumber-1].width = null;
cols[cols.length-1].width = null;
var newHeight = mainDivHeight - header.getHeight() - footerHeight - 2;
- newHeight -= this.header.getCaptionHeight();
- scrollingDiv.setStyle('height:'+ newHeight +'px;');
+ var caption = header.getCaption()
+ if (caption && caption.tagName == "caption") {
+ newHeight -= this.header.getCaptionHeight();
+ }
+ scrollingDiv.setStyle('height:'+ newHeight +'px;');
this._redrawTable(table);
header.adjustSeparators();
this._redrawTable(this.tableB);
Modified: branches/enterprise/3.3.1.SP3_test_patch/ui/scrollableDataTable/src/main/javascript/ClientUI/common/box/Box.js
===================================================================
--- branches/enterprise/3.3.1.SP3_test_patch/ui/scrollableDataTable/src/main/javascript/ClientUI/common/box/Box.js 2013-07-08 16:51:27 UTC (rev 23245)
+++ branches/enterprise/3.3.1.SP3_test_patch/ui/scrollableDataTable/src/main/javascript/ClientUI/common/box/Box.js 2013-07-08 22:16:06 UTC (rev 23246)
@@ -72,7 +72,7 @@
getHeight: function() {
var el = this.getElement();
if(el.tagName.toLowerCase() != "body") {
- var h = el.getHeight(); // offsetHeight; RF-7173
+ var h = el.offsetHeight;
return h>0 ? h : (this.element.boxHeight ? parseInt(this.element.boxHeight) : 0);
}
11 years, 3 months