JBoss Rich Faces SVN: r13496 - in trunk/test-applications/realworld2/web/src/main: java/org/richfaces/realworld/util and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: Alex.Kolonitsky
Date: 2009-04-10 10:31:21 -0400 (Fri, 10 Apr 2009)
New Revision: 13496
Modified:
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ImageManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/CopyImageStuff.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/FileUtils.java
trunk/test-applications/realworld2/web/src/main/resources/messages_en.properties
Log:
Change web application path resolver.
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ImageManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ImageManager.java 2009-04-10 14:22:36 UTC (rev 13495)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/ImageManager.java 2009-04-10 14:31:21 UTC (rev 13496)
@@ -113,10 +113,10 @@
}
public List<MetaTag> autoComplete(Object suggest) {
- String temp = (String)suggest;
- if(temp.trim().equals("")){
- return null;
- }
+ String temp = (String) suggest;
+ if (temp.trim().equals("")) {
+ return null;
+ }
return imageAction.getTagsLikeString((String)suggest);
}
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/CopyImageStuff.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/CopyImageStuff.java 2009-04-10 14:22:36 UTC (rev 13495)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/CopyImageStuff.java 2009-04-10 14:31:21 UTC (rev 13496)
@@ -3,11 +3,6 @@
*/
package org.richfaces.realworld.util;
-import java.io.File;
-import java.io.IOException;
-import java.net.URL;
-import java.net.URLClassLoader;
-
import org.jboss.seam.ScopeType;
import org.jboss.seam.annotations.Create;
import org.jboss.seam.annotations.Destroy;
@@ -15,9 +10,21 @@
import org.jboss.seam.annotations.Out;
import org.jboss.seam.annotations.Scope;
import org.jboss.seam.annotations.Startup;
-import org.richfaces.realworld.service.Constants;
+import org.jboss.seam.contexts.ServletLifecycle;
+import static org.richfaces.realworld.service.Constants.IMAGE_FOLDER;
+import static org.richfaces.realworld.service.Constants.REALWORLD_FOLDER;
+import static org.richfaces.realworld.service.Constants.TEMP_DIR;
+import static org.richfaces.realworld.service.Constants.UPLOAD_FOLDER_PATH_ERROR;
+import static org.richfaces.realworld.service.Constants.WEB_INF;
+import static org.richfaces.realworld.util.FileUtils.copyDirectory;
+import static org.richfaces.realworld.util.FileUtils.deleteDirectory;
+import static org.richfaces.realworld.util.FileUtils.joinFiles;
+import javax.servlet.ServletContext;
+import java.io.File;
+import java.io.IOException;
+
/**
* @author Andrey Markavtsov
*
@@ -27,74 +34,58 @@
@Scope(ScopeType.APPLICATION)
@Startup
public class CopyImageStuff {
-
+
@Out(scope = ScopeType.APPLICATION)
- File uploadRoot;
+ private File uploadRoot;
@Out(scope = ScopeType.APPLICATION)
- String uploadRootPath;
+ private String uploadRootPath;
- String imageSrc;
+ private String imageSrc;
@Create
- public void create() throws Exception {
+ public void create() throws IOException {
resolveImageFolder();
resolveUploadRoot();
-
+
copyImages();
}
@Destroy
public void destroy()throws IOException {
- FileUtils.deleteDirectory(uploadRoot, true);
+ deleteDirectory(uploadRoot, true);
}
- void resolveImageFolder() {
- //TODO nick - what this cast is for?
- URLClassLoader loader = (URLClassLoader)getClass().getClassLoader();
- //TODO nick - rewrite that
- URL path = loader.getResource("");
- String classLoadPath = null;
- String realPath = null;
+ private void resolveImageFolder() {
+ final ServletContext servletContext = ServletLifecycle.getServletContext();
- if (path != null) {
- classLoadPath = path.getFile();
- }
-
- if (classLoadPath != null) {
- int index = classLoadPath.indexOf(Constants.WEB_INF);
- if (index != -1) {
- realPath = classLoadPath.substring(0, index + Constants.WEB_INF.length()) + Constants.IMAGE_FOLDER;
- }
- }
-
- if (realPath != null) {
- this.imageSrc = realPath;
+ if (servletContext != null) {
+ this.imageSrc = joinFiles(servletContext.getRealPath(""),
+ WEB_INF, IMAGE_FOLDER);
}else {
- throw new NullPointerException(Constants.UPLOAD_FOLDER_PATH_ERROR);
+ throw new IllegalStateException(UPLOAD_FOLDER_PATH_ERROR);
}
}
- void resolveUploadRoot()throws IOException {
- String property = System.getProperty(Constants.TEMP_DIR);
- if(!property.endsWith(File.separator)){
- property+=File.separator;
+ private void resolveUploadRoot() throws IOException {
+ uploadRoot = new File(joinFiles(
+ System.getProperty(TEMP_DIR), REALWORLD_FOLDER));
+
+ if (uploadRoot.exists()) {
+ deleteDirectory(uploadRoot, true);
}
- String uploadRootPath = property + Constants.REALWORLD_FOLDER + File.separator;
- if (uploadRootPath != null) {
- uploadRoot = new File(uploadRootPath);
- if (uploadRoot.exists()) {
- FileUtils.deleteDirectory(uploadRoot, true);
- }
- uploadRoot.mkdir();
- this.uploadRootPath = uploadRoot.getCanonicalPath();
- }else {
- throw new NullPointerException(Constants.UPLOAD_ROOT_CREATION_ERROR);
- }
+
+ uploadRoot.mkdir();
+
+ uploadRootPath = uploadRoot.getCanonicalPath();
}
- void copyImages()throws IOException {
- FileUtils.copyDirectory(new File(imageSrc), uploadRoot);
+ private void copyImages() {
+ try {
+ copyDirectory(new File(imageSrc), uploadRoot);
+ } catch (IOException e) {
+ System.out.println("ERROR on copy '"+imageSrc+"' to '"+uploadRoot+ '\'');
+ }
}
}
\ No newline at end of file
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/FileUtils.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/FileUtils.java 2009-04-10 14:22:36 UTC (rev 13495)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/util/FileUtils.java 2009-04-10 14:31:21 UTC (rev 13496)
@@ -92,13 +92,23 @@
} else {
if (dir.exists()) {
final boolean isFileDeleted = dir.delete();
- System.out.println((isFileDeleted ? "OK " : "CANCEL ") +
+ System.out.println((isFileDeleted ? "OK " : "ERROR ") +
"Delete file '" + dir.getPath() + '\'');
}
}
dir.delete();
return true;
}
+
+ public static String joinFiles(String... files) {
+ final StringBuilder res = new StringBuilder();
+ for (String file : files) {
+ res.append(file).append(File.separatorChar);
+ }
+
+ return res.substring(0, res.length() - 1);
+ }
+
public static void deleteFile(File file) {
if (file.exists()) {
Modified: trunk/test-applications/realworld2/web/src/main/resources/messages_en.properties
===================================================================
--- trunk/test-applications/realworld2/web/src/main/resources/messages_en.properties 2009-04-10 14:22:36 UTC (rev 13495)
+++ trunk/test-applications/realworld2/web/src/main/resources/messages_en.properties 2009-04-10 14:31:21 UTC (rev 13496)
@@ -197,6 +197,7 @@
user_profile=View profile
user_show_albums=Show albums
+size=Size
camera=Camera
uploaded=Uploaded at
15 years, 9 months
JBoss Rich Faces SVN: r13495 - in trunk/ui/combobox/src/main: templates and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2009-04-10 10:22:36 -0400 (Fri, 10 Apr 2009)
New Revision: 13495
Modified:
trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js
trunk/ui/combobox/src/main/templates/combobox.jspx
Log:
https://jira.jboss.org/jira/browse/RF-5963
Modified: trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
--- trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2009-04-10 14:03:11 UTC (rev 13494)
+++ trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2009-04-10 14:22:36 UTC (rev 13495)
@@ -114,7 +114,7 @@
},
setInputWidth : function() {
- var width = (parseInt(this.field.parentNode.style.width) - this.BUTTON_WIDTH) + Richfaces.getBorderWidth(this.field, "lr");
+ var width = (parseInt(this.field.parentNode.style.width) - this.BUTTON_WIDTH) - Richfaces.getBorderWidth(this.field, "lr") - Richfaces.getBorderWidth(this.button, "lr") - Richfaces.getPaddingWidth(this.field,"lr");
this.field.style.width = width + "px";
},
Modified: trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js
===================================================================
--- trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js 2009-04-10 14:03:11 UTC (rev 13494)
+++ trunk/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combolist.js 2009-04-10 14:22:36 UTC (rev 13495)
@@ -220,7 +220,6 @@
var combobox = this.listParent.parentNode;
var correction = parseInt(width) - Richfaces.getBorderWidth(positionElem.firstChild, "lr") - Richfaces.getPaddingWidth(positionElem.firstChild, "lr") + "px";
this.list.style.width = correction;
- combobox.style.width = correction;
if (this.iframe) {
this.iframe.style.width = correction;
}
Modified: trunk/ui/combobox/src/main/templates/combobox.jspx
===================================================================
--- trunk/ui/combobox/src/main/templates/combobox.jspx 2009-04-10 14:03:11 UTC (rev 13494)
+++ trunk/ui/combobox/src/main/templates/combobox.jspx 2009-04-10 14:22:36 UTC (rev 13495)
@@ -204,7 +204,7 @@
</jsp:scriptlet>
<f:resource var="spacer" name="images/spacer.gif"/>
<div id="#{clientId}">
-<div id="#{clientId}combobox" class="rich-combobox-font rich-combobox #{styleClass}" style="width:#{listWidth};#{style}"
+<div id="#{clientId}combobox" class="rich-combobox-font rich-combobox #{styleClass}" style="width:#{width};#{style}"
x:passThruWithExclusions="value,name,type,id,styleClass,class,style,size,autocomplete,disabled,onchange">
<div class="rich-combobox-list-cord"></div>
15 years, 9 months
JBoss Rich Faces SVN: r13494 - in tags: 3.3.1.BETA4 and 203 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2009-04-10 10:03:11 -0400 (Fri, 10 Apr 2009)
New Revision: 13494
Added:
tags/3.3.1.BETA4/
Modified:
tags/3.3.1.BETA4/cdk/generator/pom.xml
tags/3.3.1.BETA4/cdk/maven-archetype-jsf-component/pom.xml
tags/3.3.1.BETA4/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA4/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.3.1.BETA4/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA4/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.3.1.BETA4/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA4/cdk/maven-archetype-seam-app/pom.xml
tags/3.3.1.BETA4/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
tags/3.3.1.BETA4/cdk/maven-cdk-plugin/pom.xml
tags/3.3.1.BETA4/cdk/maven-javascript-plugin/pom.xml
tags/3.3.1.BETA4/cdk/maven-resource-dependency-plugin/pom.xml
tags/3.3.1.BETA4/cdk/pom.xml
tags/3.3.1.BETA4/deployRelease.sh
tags/3.3.1.BETA4/docs/cdkguide/en/pom.xml
tags/3.3.1.BETA4/docs/cdkguide/pom.xml
tags/3.3.1.BETA4/docs/common-resources/en/pom.xml
tags/3.3.1.BETA4/docs/common-resources/pom.xml
tags/3.3.1.BETA4/docs/faq/en/pom.xml
tags/3.3.1.BETA4/docs/faq/pom.xml
tags/3.3.1.BETA4/docs/highlight/pom.xml
tags/3.3.1.BETA4/docs/migrationguide/en/pom.xml
tags/3.3.1.BETA4/docs/migrationguide/pom.xml
tags/3.3.1.BETA4/docs/pom.xml
tags/3.3.1.BETA4/docs/realworld_app_guide/en/pom.xml
tags/3.3.1.BETA4/docs/realworld_app_guide/pom.xml
tags/3.3.1.BETA4/docs/userguide/en/pom.xml
tags/3.3.1.BETA4/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.3.1.BETA4/docs/userguide/pom.xml
tags/3.3.1.BETA4/extensions/gwt/pom.xml
tags/3.3.1.BETA4/extensions/pom.xml
tags/3.3.1.BETA4/extensions/seam/pom.xml
tags/3.3.1.BETA4/extensions/trinidad/pom.xml
tags/3.3.1.BETA4/framework/api/pom.xml
tags/3.3.1.BETA4/framework/impl/pom.xml
tags/3.3.1.BETA4/framework/jsf-test/pom.xml
tags/3.3.1.BETA4/framework/pom.xml
tags/3.3.1.BETA4/framework/test/pom.xml
tags/3.3.1.BETA4/pom.xml
tags/3.3.1.BETA4/samples/beanValidatorSample/pom.xml
tags/3.3.1.BETA4/samples/calendar-sample/pom.xml
tags/3.3.1.BETA4/samples/colorPickerDemo/pom.xml
tags/3.3.1.BETA4/samples/columnsDemo/pom.xml
tags/3.3.1.BETA4/samples/combobox-sample/pom.xml
tags/3.3.1.BETA4/samples/contextMenuDemo/pom.xml
tags/3.3.1.BETA4/samples/createProject.sh
tags/3.3.1.BETA4/samples/darkX/pom.xml
tags/3.3.1.BETA4/samples/dataFilterSliderDemo/pom.xml
tags/3.3.1.BETA4/samples/dataTableDemo/pom.xml
tags/3.3.1.BETA4/samples/datascroller-sample/pom.xml
tags/3.3.1.BETA4/samples/dragDropDemo/pom.xml
tags/3.3.1.BETA4/samples/dropdownmenu-sample/pom.xml
tags/3.3.1.BETA4/samples/editor-sample/pom.xml
tags/3.3.1.BETA4/samples/editorSeam-sample/pom.xml
tags/3.3.1.BETA4/samples/effect-sample/pom.xml
tags/3.3.1.BETA4/samples/extendedDataTable-sample/pom.xml
tags/3.3.1.BETA4/samples/fileUploadDemo/pom.xml
tags/3.3.1.BETA4/samples/functions-demo/pom.xml
tags/3.3.1.BETA4/samples/glassX/pom.xml
tags/3.3.1.BETA4/samples/gmap-sample/pom.xml
tags/3.3.1.BETA4/samples/hotKey-sample/pom.xml
tags/3.3.1.BETA4/samples/inplaceInput-sample/pom.xml
tags/3.3.1.BETA4/samples/inplaceSelect-sample/pom.xml
tags/3.3.1.BETA4/samples/inputNumberSliderDemo/pom.xml
tags/3.3.1.BETA4/samples/inputNumberSpinnerDemo/pom.xml
tags/3.3.1.BETA4/samples/jQuery-sample/pom.xml
tags/3.3.1.BETA4/samples/jira-data/pom.xml
tags/3.3.1.BETA4/samples/laguna/pom.xml
tags/3.3.1.BETA4/samples/layout-sample/pom.xml
tags/3.3.1.BETA4/samples/listShuttleDemo/pom.xml
tags/3.3.1.BETA4/samples/local-value-demo/pom.xml
tags/3.3.1.BETA4/samples/modalpanel-sample/pom.xml
tags/3.3.1.BETA4/samples/orderingListDemo/pom.xml
tags/3.3.1.BETA4/samples/panel-sample/pom.xml
tags/3.3.1.BETA4/samples/panelbar-sample/pom.xml
tags/3.3.1.BETA4/samples/panelmenu-sample/pom.xml
tags/3.3.1.BETA4/samples/pickList-sample/pom.xml
tags/3.3.1.BETA4/samples/pom.xml
tags/3.3.1.BETA4/samples/progressBarDemo/pom.xml
tags/3.3.1.BETA4/samples/queue-sample/pom.xml
tags/3.3.1.BETA4/samples/rich-message-demo/pom.xml
tags/3.3.1.BETA4/samples/richfaces-art-datatable/pom.xml
tags/3.3.1.BETA4/samples/richfaces-demo/pom.xml
tags/3.3.1.BETA4/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.3.1.BETA4/samples/richfaces-ear-demo/pom.xml
tags/3.3.1.BETA4/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.3.1.BETA4/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.3.1.BETA4/samples/scrollableDataTableDemo/pom.xml
tags/3.3.1.BETA4/samples/seamEAR/ear/pom.xml
tags/3.3.1.BETA4/samples/seamEAR/ejbs/pom.xml
tags/3.3.1.BETA4/samples/seamEAR/pom.xml
tags/3.3.1.BETA4/samples/seamEAR/primary-source/pom.xml
tags/3.3.1.BETA4/samples/seamEAR/projects/logging/pom.xml
tags/3.3.1.BETA4/samples/seamEAR/projects/pom.xml
tags/3.3.1.BETA4/samples/seamEAR/wars/pom.xml
tags/3.3.1.BETA4/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.3.1.BETA4/samples/seamIntegration/pom.xml
tags/3.3.1.BETA4/samples/separator-sample/pom.xml
tags/3.3.1.BETA4/samples/simpleTogglePanel-sample/pom.xml
tags/3.3.1.BETA4/samples/skins/pom.xml
tags/3.3.1.BETA4/samples/sortingFilteringDemo/pom.xml
tags/3.3.1.BETA4/samples/state-sample/pom.xml
tags/3.3.1.BETA4/samples/stdcomponents-sample/pom.xml
tags/3.3.1.BETA4/samples/suggestionbox-sample/pom.xml
tags/3.3.1.BETA4/samples/tabPanelDemo/pom.xml
tags/3.3.1.BETA4/samples/themes/pom.xml
tags/3.3.1.BETA4/samples/togglePanel-sample/pom.xml
tags/3.3.1.BETA4/samples/tomahawkCompability/pom.xml
tags/3.3.1.BETA4/samples/toolBarDemo/pom.xml
tags/3.3.1.BETA4/samples/tooltip-sample/pom.xml
tags/3.3.1.BETA4/samples/tree-demo/pom.xml
tags/3.3.1.BETA4/samples/treeModelDemo/pom.xml
tags/3.3.1.BETA4/samples/virtualEarth-sample/pom.xml
tags/3.3.1.BETA4/sandbox/api/pom.xml
tags/3.3.1.BETA4/sandbox/cdk/pom.xml
tags/3.3.1.BETA4/sandbox/impl/pom.xml
tags/3.3.1.BETA4/sandbox/pom.xml
tags/3.3.1.BETA4/sandbox/samples/dialog-window-sample/pom.xml
tags/3.3.1.BETA4/sandbox/samples/editorOld-sample/pom.xml
tags/3.3.1.BETA4/sandbox/samples/fileUploadPOC/pom.xml
tags/3.3.1.BETA4/sandbox/samples/maven-rd-plugin-sample/pom.xml
tags/3.3.1.BETA4/sandbox/samples/panel2-sample/pom.xml
tags/3.3.1.BETA4/sandbox/samples/pom.xml
tags/3.3.1.BETA4/sandbox/samples/rex-demo/pom.xml
tags/3.3.1.BETA4/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.3.1.BETA4/sandbox/ui/create.bat
tags/3.3.1.BETA4/sandbox/ui/create.sh
tags/3.3.1.BETA4/sandbox/ui/dialog-window/pom.xml
tags/3.3.1.BETA4/sandbox/ui/editorOld/pom.xml
tags/3.3.1.BETA4/sandbox/ui/panel2/pom.xml
tags/3.3.1.BETA4/sandbox/ui/pom.xml
tags/3.3.1.BETA4/sandbox/ui/rex-button/pom.xml
tags/3.3.1.BETA4/sandbox/ui/rex-messageBox/pom.xml
tags/3.3.1.BETA4/sandbox/ui/rex-resizable/pom.xml
tags/3.3.1.BETA4/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.3.1.BETA4/sandbox/ui/sortableHeader/pom.xml
tags/3.3.1.BETA4/sandbox/ui/treeTable/pom.xml
tags/3.3.1.BETA4/test-applications/ajaxTest/pom.xml
tags/3.3.1.BETA4/test-applications/automator/pom.xml
tags/3.3.1.BETA4/test-applications/facelets/pom.xml
tags/3.3.1.BETA4/test-applications/jsp/pom.xml
tags/3.3.1.BETA4/test-applications/pom.xml
tags/3.3.1.BETA4/test-applications/realworld2/pom.xml
tags/3.3.1.BETA4/test-applications/regressionArea/pom.xml
tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-ear/pom.xml
tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-ejb/pom.xml
tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-tests/pom.xml
tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-web/pom.xml
tags/3.3.1.BETA4/test-applications/richfaces-docs/pom.xml
tags/3.3.1.BETA4/test-applications/richfaces-docs/web/pom.xml
tags/3.3.1.BETA4/test-applications/seamApp/pom.xml
tags/3.3.1.BETA4/test-applications/seleniumTest/pom.xml
tags/3.3.1.BETA4/test-applications/seleniumTest/richfaces/pom.xml
tags/3.3.1.BETA4/test-applications/seleniumTest/samples/pom.xml
tags/3.3.1.BETA4/ui/assembly/pom.xml
tags/3.3.1.BETA4/ui/beanValidator/pom.xml
tags/3.3.1.BETA4/ui/calendar/pom.xml
tags/3.3.1.BETA4/ui/colorPicker/pom.xml
tags/3.3.1.BETA4/ui/columns/pom.xml
tags/3.3.1.BETA4/ui/combobox/pom.xml
tags/3.3.1.BETA4/ui/componentControl/pom.xml
tags/3.3.1.BETA4/ui/contextMenu/pom.xml
tags/3.3.1.BETA4/ui/core/pom.xml
tags/3.3.1.BETA4/ui/create.bat
tags/3.3.1.BETA4/ui/dataFilterSlider/pom.xml
tags/3.3.1.BETA4/ui/dataTable/pom.xml
tags/3.3.1.BETA4/ui/datascroller/pom.xml
tags/3.3.1.BETA4/ui/drag-drop/pom.xml
tags/3.3.1.BETA4/ui/dropdown-menu/pom.xml
tags/3.3.1.BETA4/ui/editor/pom.xml
tags/3.3.1.BETA4/ui/effect/pom.xml
tags/3.3.1.BETA4/ui/extendedDataTable/pom.xml
tags/3.3.1.BETA4/ui/fileUpload/pom.xml
tags/3.3.1.BETA4/ui/functions/pom.xml
tags/3.3.1.BETA4/ui/gmap/pom.xml
tags/3.3.1.BETA4/ui/hotKey/pom.xml
tags/3.3.1.BETA4/ui/inplaceInput/pom.xml
tags/3.3.1.BETA4/ui/inplaceSelect/pom.xml
tags/3.3.1.BETA4/ui/inputnumber-slider/pom.xml
tags/3.3.1.BETA4/ui/inputnumber-spinner/pom.xml
tags/3.3.1.BETA4/ui/insert/pom.xml
tags/3.3.1.BETA4/ui/jQuery/pom.xml
tags/3.3.1.BETA4/ui/layout/pom.xml
tags/3.3.1.BETA4/ui/listShuttle/pom.xml
tags/3.3.1.BETA4/ui/menu-components/pom.xml
tags/3.3.1.BETA4/ui/message/pom.xml
tags/3.3.1.BETA4/ui/modal-panel/pom.xml
tags/3.3.1.BETA4/ui/orderingList/pom.xml
tags/3.3.1.BETA4/ui/paint2D/pom.xml
tags/3.3.1.BETA4/ui/panel/pom.xml
tags/3.3.1.BETA4/ui/panelbar/pom.xml
tags/3.3.1.BETA4/ui/panelmenu/pom.xml
tags/3.3.1.BETA4/ui/pickList/pom.xml
tags/3.3.1.BETA4/ui/pom.xml
tags/3.3.1.BETA4/ui/progressBAR/pom.xml
tags/3.3.1.BETA4/ui/scrollableDataTable/pom.xml
tags/3.3.1.BETA4/ui/separator/pom.xml
tags/3.3.1.BETA4/ui/simpleTogglePanel/pom.xml
tags/3.3.1.BETA4/ui/spacer/pom.xml
tags/3.3.1.BETA4/ui/state/pom.xml
tags/3.3.1.BETA4/ui/suggestionbox/pom.xml
tags/3.3.1.BETA4/ui/tabPanel/pom.xml
tags/3.3.1.BETA4/ui/togglePanel/pom.xml
tags/3.3.1.BETA4/ui/toolBar/pom.xml
tags/3.3.1.BETA4/ui/tooltip/pom.xml
tags/3.3.1.BETA4/ui/tree/pom.xml
tags/3.3.1.BETA4/ui/treeModel/pom.xml
tags/3.3.1.BETA4/ui/treeTable/pom.xml
tags/3.3.1.BETA4/ui/virtualEarth/pom.xml
Log:
create tag for a 3.3.1.BETA4
Copied: tags/3.3.1.BETA4 (from rev 13482, trunk)
Modified: tags/3.3.1.BETA4/cdk/generator/pom.xml
===================================================================
--- trunk/cdk/generator/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/generator/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,93 +1,93 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <parent>
- <artifactId>cdk</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>generator</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <name>Java Server Faces component generator</name>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <inherited>true</inherited>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.6.5</version>
- </dependency>
- <dependency>
- <groupId>velocity</groupId>
- <artifactId>velocity-dep</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>commons-digester</groupId>
- <artifactId>commons-digester</artifactId>
- <version>1.5</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>qdox</groupId>
- <artifactId>qdox</artifactId>
- <version>1.6</version>
- </dependency>
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib</artifactId>
- <version>2.1_3</version>
- </dependency>
- <dependency>
- <groupId>wutka</groupId>
- <artifactId>dtdparser</artifactId>
- <version>1.21</version>
- </dependency>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.8.1</version>
- </dependency>
- </dependencies>
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>cdk</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>generator</artifactId>
+ <version>3.3.1.BETA4</version>
+ <name>Java Server Faces component generator</name>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.6.5</version>
+ </dependency>
+ <dependency>
+ <groupId>velocity</groupId>
+ <artifactId>velocity-dep</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ <version>1.5</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>qdox</groupId>
+ <artifactId>qdox</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>cglib</groupId>
+ <artifactId>cglib</artifactId>
+ <version>2.1_3</version>
+ </dependency>
+ <dependency>
+ <groupId>wutka</groupId>
+ <artifactId>dtdparser</artifactId>
+ <version>1.21</version>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.8.1</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsf-component/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/maven-archetype-jsf-component/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.BETA4/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsfwebapp/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/maven-archetype-jsfwebapp/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.BETA4/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-plug-n-skin/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/maven-archetype-plug-n-skin/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.3.1.BETA4/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.3.1.BETA4/cdk/maven-archetype-seam-app/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-seam-app/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/maven-archetype-seam-app/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-seam-app</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>Archetype - maven-archetype-seam-app</name>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/maven-archetype-seam-app/src/main/resources/archetype-resources/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>${artifactId}</projectName>
- <richfacesVersion>3.3.1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.BETA4</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.3.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.3.GA/jboss-4.2.3.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.1.BETA4/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-cdk-plugin/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/maven-cdk-plugin/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.BETA4/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-javascript-plugin/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/maven-javascript-plugin/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.3.1.BETA4/cdk/maven-resource-dependency-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-resource-dependency-plugin/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/maven-resource-dependency-plugin/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,47 +1,46 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>cdk</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
-
- <groupId>org.richfaces.cdk</groupId>
-
- <artifactId>maven-resource-dependency-plugin</artifactId>
- <packaging>maven-plugin</packaging>
- <version>3.3.1-SNAPSHOT</version>
- <name>maven-resource-dependency-plugin</name>
-
-
- <dependencies>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>commons-vfs</groupId>
- <artifactId>commons-vfs</artifactId>
- <version>1.0</version>
- </dependency>
-
- <dependency>
- <groupId>commons-digester</groupId>
- <artifactId>commons-digester</artifactId>
- <version>2.0</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
-
- </dependencies>
-</project>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>cdk</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.richfaces.cdk</groupId>
+
+ <artifactId>maven-resource-dependency-plugin</artifactId>
+ <packaging>maven-plugin</packaging>
+ <version>3.3.1.BETA4</version>
+ <name>maven-resource-dependency-plugin</name>
+
+
+ <dependencies>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-vfs</groupId>
+ <artifactId>commons-vfs</artifactId>
+ <version>1.0</version>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ <version>2.0</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+
+ </dependencies>
+</project>
Modified: tags/3.3.1.BETA4/cdk/pom.xml
===================================================================
--- trunk/cdk/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/cdk/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.BETA4/deployRelease.sh
===================================================================
--- trunk/deployRelease.sh 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/deployRelease.sh 2009-04-10 14:03:11 UTC (rev 13494)
@@ -6,14 +6,6 @@
PROJECT_DIR=`pwd`
-mvn -s $settings -P local,docs,release clean deploy -N
-cd $PROJECT_DIR/cdk
-mvn -s $settings -P local,docs,release clean deploy
-cd $PROJECT_DIR/framework
-mvn -s $settings -P local,docs,release clean deploy
-cd $PROJECT_DIR/ui
-mvn -s $settings -P local,docs,release clean deploy -N
-mvn -s $settings -P local,docs,release clean install
cd $PROJECT_DIR/docs
mvn -s $settings -P local,docs,release clean deploy
cd $PROJECT_DIR/ui/assembly
Modified: tags/3.3.1.BETA4/docs/cdkguide/en/pom.xml
===================================================================
--- trunk/docs/cdkguide/en/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/cdkguide/en/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.3.1.BETA4/docs/cdkguide/pom.xml
===================================================================
--- trunk/docs/cdkguide/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/cdkguide/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA4/docs/common-resources/en/pom.xml
===================================================================
--- trunk/docs/common-resources/en/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/common-resources/en/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,12 +2,12 @@
<parent>
<artifactId>common-resources</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.common-resources</groupId>
<artifactId>en</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<packaging>jar</packaging>
<name>Documentation common resources (en)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.3.1.BETA4/docs/common-resources/pom.xml
===================================================================
--- trunk/docs/common-resources/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/common-resources/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>common-resources</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<packaging>pom</packaging>
<name>Documentation common resources</name>
<description>Common resources</description>
Modified: tags/3.3.1.BETA4/docs/faq/en/pom.xml
===================================================================
--- trunk/docs/faq/en/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/faq/en/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
@@ -52,4 +52,4 @@
-->
</plugins>
</build>
-</project>
+</project>
Modified: tags/3.3.1.BETA4/docs/faq/pom.xml
===================================================================
--- trunk/docs/faq/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/faq/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<repositories>
Modified: tags/3.3.1.BETA4/docs/highlight/pom.xml
===================================================================
--- trunk/docs/highlight/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/highlight/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.3.1.BETA4/docs/migrationguide/en/pom.xml
===================================================================
--- trunk/docs/migrationguide/en/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/migrationguide/en/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: tags/3.3.1.BETA4/docs/migrationguide/pom.xml
===================================================================
--- trunk/docs/migrationguide/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/migrationguide/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA4/docs/pom.xml
===================================================================
--- trunk/docs/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.3.1.BETA4/docs/realworld_app_guide/en/pom.xml
===================================================================
--- trunk/docs/realworld_app_guide/en/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/realworld_app_guide/en/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>realworld</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.realworld</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<packaging>jar</packaging>
<name>RichFaces Realworld application Guide (${translation})</name>
Modified: tags/3.3.1.BETA4/docs/realworld_app_guide/pom.xml
===================================================================
--- trunk/docs/realworld_app_guide/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/realworld_app_guide/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,16 +1,14 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>realworld</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>RichFaces Realworld application Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA4/docs/userguide/en/pom.xml
===================================================================
--- trunk/docs/userguide/en/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/userguide/en/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.3.1.BETA4/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3248,7 +3248,7 @@
<listitem>
<para>
<code>-DarchetypeVersion</code> indicates the RichFaces version. For example,
- <code>"3.3.1-SNAPSHOT"</code>
+ <code>"3.3.1.BETA4"</code>
</para>
</listitem>
<listitem>
@@ -3494,7 +3494,7 @@
mvn archetype:create
-DarchetypeGroupId=org.richfaces.cdk
-DarchetypeArtifactId=maven-archetype-plug-n-skin
--DarchetypeVersion=3.3.1-SNAPSHOT
+-DarchetypeVersion=3.3.1.BETA4
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: tags/3.3.1.BETA4/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/docs/userguide/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.3.1.BETA4/extensions/gwt/pom.xml
===================================================================
--- trunk/extensions/gwt/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/extensions/gwt/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -99,7 +99,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.3.1.BETA4/extensions/pom.xml
===================================================================
--- trunk/extensions/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/extensions/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.3.1.BETA4/extensions/seam/pom.xml
===================================================================
--- trunk/extensions/seam/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/extensions/seam/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.3.1.BETA4/extensions/trinidad/pom.xml
===================================================================
--- trunk/extensions/trinidad/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/extensions/trinidad/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.3.1.BETA4/framework/api/pom.xml
===================================================================
--- trunk/framework/api/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/framework/api/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
<name>Java Server Faces AJAX framework API</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: tags/3.3.1.BETA4/framework/impl/pom.xml
===================================================================
--- trunk/framework/impl/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/framework/impl/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,15 +1,14 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
<name>Java Server Faces AJAX framework implementation</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<resources>
<resource>
@@ -161,7 +160,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/framework/jsf-test/pom.xml
===================================================================
--- trunk/framework/jsf-test/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/framework/jsf-test/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,135 +1,134 @@
-<?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>framework</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>jsf-test</artifactId>
- <name>jsf-test</name>
- <version>3.3.1-SNAPSHOT</version>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.5</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.htmlunit</groupId>
- <artifactId>htmlunit</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_12</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.htmlunit</groupId>
- <artifactId>htmlunit-core-js</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.cssparser</groupId>
- <artifactId>cssparser</artifactId>
- <version>0.9.5</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.4</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.1</version>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>1.9.11</version>
- <exclusions>
- <exclusion>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis</artifactId>
- </exclusion>
- <!--
- <exclusion> <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId> </exclusion>
- -->
- </exclusions>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- </dependency>
- <dependency>
- <groupId>jstl</groupId>
- <artifactId>jstl</artifactId>
- <version>1.2</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.annotation</groupId>
- <artifactId>jsr250-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>xalan</groupId>
- <artifactId>xalan</artifactId>
- <version>2.7.1</version>
- <exclusions>
- <exclusion>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>de.berlios.jsunit</groupId>
- <artifactId>jsunit</artifactId>
- <version>1.3</version>
- <exclusions>
- <exclusion>
- <groupId>rhino</groupId>
- <artifactId>js</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
+<?xml version="1.0"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>framework</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>jsf-test</artifactId>
+ <name>jsf-test</name>
+ <version>3.3.1.BETA4</version>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.5</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.htmlunit</groupId>
+ <artifactId>htmlunit</artifactId>
+ <version>2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_12</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ <version>3.1</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.htmlunit</groupId>
+ <artifactId>htmlunit-core-js</artifactId>
+ <version>2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.cssparser</groupId>
+ <artifactId>cssparser</artifactId>
+ <version>0.9.5</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>2.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>1.9.11</version>
+ <exclusions>
+ <exclusion>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ </exclusion>
+ <!--
+ <exclusion> <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId> </exclusion>
+ -->
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ </dependency>
+ <dependency>
+ <groupId>jstl</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.2</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.annotation</groupId>
+ <artifactId>jsr250-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>xalan</groupId>
+ <artifactId>xalan</artifactId>
+ <version>2.7.1</version>
+ <exclusions>
+ <exclusion>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>de.berlios.jsunit</groupId>
+ <artifactId>jsunit</artifactId>
+ <version>1.3</version>
+ <exclusions>
+ <exclusion>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/framework/pom.xml
===================================================================
--- trunk/framework/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/framework/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: tags/3.3.1.BETA4/framework/test/pom.xml
===================================================================
--- trunk/framework/test/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/framework/test/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>Ajax4Jsf test framework</name>
<url>https://ajax4jsf.dev.java.net</url>
<dependencies>
@@ -42,7 +42,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA4/pom.xml
===================================================================
--- trunk/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
@@ -217,9 +217,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk</developerConnection>
- <url>https://svn.jboss.org/repos/richfaces/trunk</url>
+ <connection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/3.3.1.BETA4</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.3.1.BETA4</developerConnection>
+ <url>https://svn.jboss.org/repos/richfaces/branches/3.3.1.BETA4</url>
</scm>
<profiles>
<profile>
@@ -242,9 +242,9 @@
.settings/org.eclipse.jdt.ui.prefs
</name>
<content>
- <![CDATA[
- eclipse.preferences.version=1
- org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
+ <![CDATA[
+ eclipse.preferences.version=1
+ org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates><template autoinsert\="false" context\="typecomment_context" deleted\="false" description\="Comment for created types" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.typecomment" name\="typecomment">/**\r\n * $${tags}\r\n * <br /><br />\r\n * \r\n * Created $${date}\r\n * @author $${user}\r\n * @since ${project.artifact.selectedVersion.majorVersion}.${project.artifact.selectedVersion.minorVersion}\r\n */\r\n</template><template autoinsert\="false" context\="filecomment_context" deleted\="false" description\="Comment for created Java files" enabled\="true" id\="org.eclipse.jdt.ui.text.codetemplates.filecomment" name\="filecomment">/**\r\n * License Agreement.\r\n *\r\n * JBoss RichFaces - Ajax4jsf Component Library\r\n *\r\n * Copyright (C) 2007 Exadel, Inc.\r\n *\r\n * This library is free software; you can redistribute it and/o!
r\r\n * modify it under the terms of the GNU Lesser General Public\r\n * License version 2.1 as published by the Free Software Foundation.\r\n *\r\n * This library is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r\n * Lesser General Public License for more details.\r\n *\r\n * You should have received a copy of the GNU Lesser General Public\r\n * License along with this library; if not, write to the Free Software\r\n * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\r\n */\r\n</template></templates>
]]>
</content>
</file>
Modified: tags/3.3.1.BETA4/samples/beanValidatorSample/pom.xml
===================================================================
--- trunk/samples/beanValidatorSample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/beanValidatorSample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>beanValidatorSample</artifactId>
<packaging>war</packaging>
<name>beanValidatorSample Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<finalName>richfaces-validator</finalName>
<plugins>
@@ -52,7 +52,7 @@
<!--
<dependency> <groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.3.1-SNAPSHOT</version> </dependency>
+ <version>3.3.1.BETA4</version> </dependency>
-->
<dependency>
<groupId>org.hibernate</groupId>
@@ -75,7 +75,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.1.BETA4/samples/calendar-sample/pom.xml
===================================================================
--- trunk/samples/calendar-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/calendar-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/colorPickerDemo/pom.xml
===================================================================
--- trunk/samples/colorPickerDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/colorPickerDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -35,7 +35,7 @@
<groupId>org.richfaces.framework
</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples
@@ -46,17 +46,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>colorPicker</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.3.1.BETA4/samples/columnsDemo/pom.xml
===================================================================
--- trunk/samples/columnsDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/columnsDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/combobox-sample/pom.xml
===================================================================
--- trunk/samples/combobox-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/combobox-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/contextMenuDemo/pom.xml
===================================================================
--- trunk/samples/contextMenuDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/contextMenuDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/createProject.sh
===================================================================
--- trunk/samples/createProject.sh 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/createProject.sh 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,3 +1,3 @@
#!/bin/sh
mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsfwebapp \
- -DarchetypeVersion=3.3.1-SNAPSHOT -Dversion=3.3.1-SNAPSHOT -DgroupId=org.richfaces.samples -DartifactId=$1
+ -DarchetypeVersion=3.3.1.BETA4 -Dversion=3.3.1.BETA4 -DgroupId=org.richfaces.samples -DartifactId=$1
Modified: tags/3.3.1.BETA4/samples/darkX/pom.xml
===================================================================
--- trunk/samples/darkX/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/darkX/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,48 +1,48 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>darkX</artifactId>
- <name>darkX</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>darkX</artifactId>
+ <name>darkX</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA4</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- trunk/samples/dataFilterSliderDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/dataFilterSliderDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/dataTableDemo/pom.xml
===================================================================
--- trunk/samples/dataTableDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/dataTableDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/datascroller-sample/pom.xml
===================================================================
--- trunk/samples/datascroller-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/datascroller-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/dragDropDemo/pom.xml
===================================================================
--- trunk/samples/dragDropDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/dragDropDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/dropdownmenu-sample/pom.xml
===================================================================
--- trunk/samples/dropdownmenu-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/dropdownmenu-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/editor-sample/pom.xml
===================================================================
--- trunk/samples/editor-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/editor-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA4/samples/editorSeam-sample/pom.xml
===================================================================
--- trunk/samples/editorSeam-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/editorSeam-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA4/samples/effect-sample/pom.xml
===================================================================
--- trunk/samples/effect-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/effect-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/extendedDataTable-sample/pom.xml
===================================================================
--- trunk/samples/extendedDataTable-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/extendedDataTable-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA4/samples/fileUploadDemo/pom.xml
===================================================================
--- trunk/samples/fileUploadDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/fileUploadDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/functions-demo/pom.xml
===================================================================
--- trunk/samples/functions-demo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/functions-demo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/glassX/pom.xml
===================================================================
--- trunk/samples/glassX/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/glassX/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,49 +1,49 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>glassX</artifactId>
- <name>glassX</name>
- <version>3.3.1-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>glassX</artifactId>
+ <name>glassX</name>
+ <version>3.3.1.BETA4</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA4</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/samples/gmap-sample/pom.xml
===================================================================
--- trunk/samples/gmap-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/gmap-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/hotKey-sample/pom.xml
===================================================================
--- trunk/samples/hotKey-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/hotKey-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA4/samples/inplaceInput-sample/pom.xml
===================================================================
--- trunk/samples/inplaceInput-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/inplaceInput-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/inplaceSelect-sample/pom.xml
===================================================================
--- trunk/samples/inplaceSelect-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/inplaceSelect-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- trunk/samples/inputNumberSliderDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/inputNumberSliderDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- trunk/samples/inputNumberSpinnerDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/inputNumberSpinnerDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/jQuery-sample/pom.xml
===================================================================
--- trunk/samples/jQuery-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/jQuery-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/jira-data/pom.xml
===================================================================
--- trunk/samples/jira-data/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/jira-data/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/laguna/pom.xml
===================================================================
--- trunk/samples/laguna/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/laguna/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.3.1.BETA4/samples/layout-sample/pom.xml
===================================================================
--- trunk/samples/layout-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/layout-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -4,14 +4,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
<artifactId>layout-sample</artifactId>
<packaging>war</packaging>
<name>layout Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<finalName>layout-sample</finalName>
<plugins>
@@ -34,22 +34,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>themes</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<exclusions>
<exclusion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.BETA4/samples/listShuttleDemo/pom.xml
===================================================================
--- trunk/samples/listShuttleDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/listShuttleDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/local-value-demo/pom.xml
===================================================================
--- trunk/samples/local-value-demo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/local-value-demo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/modalpanel-sample/pom.xml
===================================================================
--- trunk/samples/modalpanel-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/modalpanel-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/orderingListDemo/pom.xml
===================================================================
--- trunk/samples/orderingListDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/orderingListDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/panel-sample/pom.xml
===================================================================
--- trunk/samples/panel-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/panel-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/panelbar-sample/pom.xml
===================================================================
--- trunk/samples/panelbar-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/panelbar-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/panelmenu-sample/pom.xml
===================================================================
--- trunk/samples/panelmenu-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/panelmenu-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/pickList-sample/pom.xml
===================================================================
--- trunk/samples/pickList-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/pickList-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/pom.xml
===================================================================
--- trunk/samples/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,502 +1,502 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>root</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces</groupId>
- <artifactId>samples</artifactId>
- <packaging>pom</packaging>
- <name>RichFaces Components Examples</name>
- <url>http://labs.jboss.com/jbossrichfaces/samples</url>
- <properties>
- <!-- -->
- </properties>
- <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <!--
- -->
- <version>6.1.5</version>
- <configuration>
- <scanIntervalSeconds>10</scanIntervalSeconds>
- <connectors>
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
- <port>8080</port>
- <maxIdleTime>60000</maxIdleTime>
- </connector>
- </connectors>
- </configuration>
-
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <skip>true</skip>
- </configuration>
- <executions>
- <execution>
- <id>surefire-it</id>
- <phase>integration-test</phase>
- <goals>
- <goal>test</goal>
- </goals>
- <configuration>
- <skip>false</skip>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.sun.facelets</groupId>
- <artifactId>jsf-facelets</artifactId>
- <version>1.1.14</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>0.9.5</version>
- <scope>runtime</scope>
- <exclusions>
- <exclusion>
- <artifactId>xerces</artifactId>
- <groupId>xerces</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>jsf1_1</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.1</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.0</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jsf1_2</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <property>
- <name>jsfVersion</name>
- <value>1.2</value>
- </property>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_12</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat5</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_12</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tomcat6</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_12</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>el-impl</groupId>
- <artifactId>el-impl</artifactId>
- <version>1.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jboss42</id>
- <build>
- <defaultGoal>jetty:run</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.0</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_12</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_12</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>myfaces</id>
- <properties>
- <myfaces>1.2.5</myfaces>
- <tomahawk>1.1.7</tomahawk>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- <exclusions>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- </exclusion>
- <exclusion>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-api</artifactId>
- <version>${myfaces}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.myfaces.core</groupId>
- <artifactId>myfaces-impl</artifactId>
- <version>${myfaces}</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>seam</id>
- <modules>
- <module>seamEAR</module>
- <module>seamIntegration</module>
- </modules>
- </profile>
- <profile>
- <id>clover</id>
- <build>
- <plugins>
- <plugin>
- <groupId>com.atlassian.maven.plugins</groupId>
- <artifactId>maven-clover2-plugin</artifactId>
- <configuration>
- <includesAllSourceRoots>
- false
- </includesAllSourceRoots>
- <includesTestSourceRoots>
- false
- </includesTestSourceRoots>
- <jdk>1.5</jdk>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.0</version>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>allSamples</id>
- <modules>
- <module>separator-sample</module>
- <module>panel-sample</module>
- <module>gmap-sample</module>
- <module>togglePanel-sample</module>
- <module>tabPanelDemo</module>
- <module>simpleTogglePanel-sample</module>
- <module>inputNumberSpinnerDemo</module>
- <module>inputNumberSliderDemo</module>
- <module>panelbar-sample</module>
- <module>toolBarDemo</module>
- <module>tree-demo</module>
- <module>dataFilterSliderDemo</module>
- <module>suggestionbox-sample</module>
- <module>dragDropDemo</module>
- <module>dataTableDemo</module>
- <module>modalpanel-sample</module>
- <module>datascroller-sample</module>
- <module>effect-sample</module>
- <module>dropdownmenu-sample</module>
- <module>tooltip-sample</module>
- <module>calendar-sample</module>
- <module>treeModelDemo</module>
- <module>local-value-demo</module>
- <module>panelmenu-sample</module>
- <module>rich-message-demo</module>
- <module>scrollableDataTableDemo</module>
- <module>richfaces-ear-demo</module>
- <module>contextMenuDemo</module>
- <module>orderingListDemo</module>
- <module>listShuttleDemo</module>
- <module>columnsDemo</module>
- <module>combobox-sample</module>
- <module>pickList-sample</module>
- <module>progressBarDemo</module>
- <module>jira-data</module>
- <module>stdcomponents-sample</module>
- <module>fileUploadDemo</module>
- <module>sortingFilteringDemo</module>
- <module>inplaceInput-sample</module>
- <module>inplaceSelect-sample</module>
- <module>functions-demo</module>
- <module>hotKey-sample</module>
- <module>beanValidatorSample</module>
- <module>state-sample</module>
- <module>extendedDataTable-sample</module>
- <module>queue-sample</module>
- <module>editor-sample</module>
- <module>editorSeam-sample</module>
- <module>colorPickerDemo</module>
- <module>layout-sample</module>
- </modules>
- </profile>
- </profiles>
- <modules>
- <module>skins</module>
- <module>laguna</module>
- <module>glassX</module>
- <module>darkX</module>
- <module>richfaces-demo</module>
- <module>themes</module>
- </modules>
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>root</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>samples</artifactId>
+ <packaging>pom</packaging>
+ <name>RichFaces Components Examples</name>
+ <url>http://labs.jboss.com/jbossrichfaces/samples</url>
+ <properties>
+ <!-- -->
+ </properties>
+ <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <!--
+ -->
+ <version>6.1.5</version>
+ <configuration>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
+ <connectors>
+ <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>8080</port>
+ <maxIdleTime>60000</maxIdleTime>
+ </connector>
+ </connectors>
+ </configuration>
+
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ <executions>
+ <execution>
+ <id>surefire-it</id>
+ <phase>integration-test</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <skip>false</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.facelets</groupId>
+ <artifactId>jsf-facelets</artifactId>
+ <version>1.1.14</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>0.9.5</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <exclusion>
+ <artifactId>xerces</artifactId>
+ <groupId>xerces</groupId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+ <profiles>
+ <profile>
+ <id>jsf1_1</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.1</value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jsf1_2</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>jsfVersion</name>
+ <value>1.2</value>
+ </property>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_12</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat5</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_12</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>tomcat6</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.5</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_12</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>el-impl</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jboss42</id>
+ <build>
+ <defaultGoal>jetty:run</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <version>2.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_12</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_12</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>myfaces</id>
+ <properties>
+ <myfaces>1.2.5</myfaces>
+ <tomahawk>1.1.7</tomahawk>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-api</artifactId>
+ <version>${myfaces}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.myfaces.core</groupId>
+ <artifactId>myfaces-impl</artifactId>
+ <version>${myfaces}</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>seam</id>
+ <modules>
+ <module>seamEAR</module>
+ <module>seamIntegration</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>clover</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.atlassian.maven.plugins</groupId>
+ <artifactId>maven-clover2-plugin</artifactId>
+ <configuration>
+ <includesAllSourceRoots>
+ false
+ </includesAllSourceRoots>
+ <includesTestSourceRoots>
+ false
+ </includesTestSourceRoots>
+ <jdk>1.5</jdk>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0</version>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>allSamples</id>
+ <modules>
+ <module>separator-sample</module>
+ <module>panel-sample</module>
+ <module>gmap-sample</module>
+ <module>togglePanel-sample</module>
+ <module>tabPanelDemo</module>
+ <module>simpleTogglePanel-sample</module>
+ <module>inputNumberSpinnerDemo</module>
+ <module>inputNumberSliderDemo</module>
+ <module>panelbar-sample</module>
+ <module>toolBarDemo</module>
+ <module>tree-demo</module>
+ <module>dataFilterSliderDemo</module>
+ <module>suggestionbox-sample</module>
+ <module>dragDropDemo</module>
+ <module>dataTableDemo</module>
+ <module>modalpanel-sample</module>
+ <module>datascroller-sample</module>
+ <module>effect-sample</module>
+ <module>dropdownmenu-sample</module>
+ <module>tooltip-sample</module>
+ <module>calendar-sample</module>
+ <module>treeModelDemo</module>
+ <module>local-value-demo</module>
+ <module>panelmenu-sample</module>
+ <module>rich-message-demo</module>
+ <module>scrollableDataTableDemo</module>
+ <module>richfaces-ear-demo</module>
+ <module>contextMenuDemo</module>
+ <module>orderingListDemo</module>
+ <module>listShuttleDemo</module>
+ <module>columnsDemo</module>
+ <module>combobox-sample</module>
+ <module>pickList-sample</module>
+ <module>progressBarDemo</module>
+ <module>jira-data</module>
+ <module>stdcomponents-sample</module>
+ <module>fileUploadDemo</module>
+ <module>sortingFilteringDemo</module>
+ <module>inplaceInput-sample</module>
+ <module>inplaceSelect-sample</module>
+ <module>functions-demo</module>
+ <module>hotKey-sample</module>
+ <module>beanValidatorSample</module>
+ <module>state-sample</module>
+ <module>extendedDataTable-sample</module>
+ <module>queue-sample</module>
+ <module>editor-sample</module>
+ <module>editorSeam-sample</module>
+ <module>colorPickerDemo</module>
+ <module>layout-sample</module>
+ </modules>
+ </profile>
+ </profiles>
+ <modules>
+ <module>skins</module>
+ <module>laguna</module>
+ <module>glassX</module>
+ <module>darkX</module>
+ <module>richfaces-demo</module>
+ <module>themes</module>
+ </modules>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/samples/progressBarDemo/pom.xml
===================================================================
--- trunk/samples/progressBarDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/progressBarDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/queue-sample/pom.xml
===================================================================
--- trunk/samples/queue-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/queue-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>queue-sample</artifactId>
<packaging>war</packaging>
<name>queue-sample Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<finalName>queue-sample</finalName>
<plugins>
Modified: tags/3.3.1.BETA4/samples/rich-message-demo/pom.xml
===================================================================
--- trunk/samples/rich-message-demo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/rich-message-demo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/richfaces-art-datatable/pom.xml
===================================================================
--- trunk/samples/richfaces-art-datatable/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/richfaces-art-datatable/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/richfaces-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-demo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/richfaces-demo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -209,22 +209,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.3.1.BETA4/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/ejb/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/richfaces-ear-demo/ejb/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.BETA4/samples/richfaces-ear-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/richfaces-ear-demo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.BETA4/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/webapp/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/richfaces-ear-demo/webapp/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.3.1.BETA4/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- trunk/samples/scrollableDataTableDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/scrollableDataTableDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.3.1.BETA4/samples/seamEAR/ear/pom.xml
===================================================================
--- trunk/samples/seamEAR/ear/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/seamEAR/ear/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.BETA4/samples/seamEAR/ejbs/pom.xml
===================================================================
--- trunk/samples/seamEAR/ejbs/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/seamEAR/ejbs/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.BETA4/samples/seamEAR/pom.xml
===================================================================
--- trunk/samples/seamEAR/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/seamEAR/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/seamEAR/primary-source/pom.xml
===================================================================
--- trunk/samples/seamEAR/primary-source/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/seamEAR/primary-source/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.3.1.BETA4/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- trunk/samples/seamEAR/projects/logging/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/seamEAR/projects/logging/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
</project>
Modified: tags/3.3.1.BETA4/samples/seamEAR/projects/pom.xml
===================================================================
--- trunk/samples/seamEAR/projects/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/seamEAR/projects/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.3.1.BETA4/samples/seamEAR/wars/pom.xml
===================================================================
--- trunk/samples/seamEAR/wars/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/seamEAR/wars/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.3.1.BETA4/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- trunk/samples/seamEAR/wars/seamWebapp/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/seamEAR/wars/seamWebapp/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.BETA4/samples/seamIntegration/pom.xml
===================================================================
--- trunk/samples/seamIntegration/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/seamIntegration/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/separator-sample/pom.xml
===================================================================
--- trunk/samples/separator-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/separator-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- trunk/samples/simpleTogglePanel-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/simpleTogglePanel-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/skins/pom.xml
===================================================================
--- trunk/samples/skins/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/skins/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/sortingFilteringDemo/pom.xml
===================================================================
--- trunk/samples/sortingFilteringDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/sortingFilteringDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<!--dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>sortableHeader</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency-->
<dependency>
Modified: tags/3.3.1.BETA4/samples/state-sample/pom.xml
===================================================================
--- trunk/samples/state-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/state-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -16,17 +16,17 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>state</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/samples/stdcomponents-sample/pom.xml
===================================================================
--- trunk/samples/stdcomponents-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/stdcomponents-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/suggestionbox-sample/pom.xml
===================================================================
--- trunk/samples/suggestionbox-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/suggestionbox-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/tabPanelDemo/pom.xml
===================================================================
--- trunk/samples/tabPanelDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/tabPanelDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/themes/pom.xml
===================================================================
--- trunk/samples/themes/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/themes/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,44 +1,44 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>themes</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <name>themes</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <id>generate-sources</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>layout</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>samples</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>themes</artifactId>
+ <version>3.3.1.BETA4</version>
+ <name>themes</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA4</version>
+ <executions>
+ <execution>
+ <id>generate-sources</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>layout</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/samples/togglePanel-sample/pom.xml
===================================================================
--- trunk/samples/togglePanel-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/togglePanel-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/tomahawkCompability/pom.xml
===================================================================
--- trunk/samples/tomahawkCompability/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/tomahawkCompability/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/toolBarDemo/pom.xml
===================================================================
--- trunk/samples/toolBarDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/toolBarDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/tooltip-sample/pom.xml
===================================================================
--- trunk/samples/tooltip-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/tooltip-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/tree-demo/pom.xml
===================================================================
--- trunk/samples/tree-demo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/tree-demo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/treeModelDemo/pom.xml
===================================================================
--- trunk/samples/treeModelDemo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/treeModelDemo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/samples/virtualEarth-sample/pom.xml
===================================================================
--- trunk/samples/virtualEarth-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/samples/virtualEarth-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.3.1.BETA4/sandbox/api/pom.xml
===================================================================
--- trunk/sandbox/api/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/api/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA4/sandbox/cdk/pom.xml
===================================================================
--- trunk/sandbox/cdk/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/cdk/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>cdk</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.3.1.BETA4/sandbox/impl/pom.xml
===================================================================
--- trunk/sandbox/impl/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/impl/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA4/sandbox/pom.xml
===================================================================
--- trunk/sandbox/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA4/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/dialog-window-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/samples/dialog-window-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA4/sandbox/samples/editorOld-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/editorOld-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/samples/editorOld-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA4/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- trunk/sandbox/samples/fileUploadPOC/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/samples/fileUploadPOC/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA4/sandbox/samples/maven-rd-plugin-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/maven-rd-plugin-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/samples/maven-rd-plugin-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,14 +2,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk.sandbox</groupId>
<artifactId>maven-rd-plugin-sample</artifactId>
<packaging>war</packaging>
<name>maven-rd-plugin-sample Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<finalName>maven-rd-plugin-sample</finalName>
<plugins>
@@ -23,7 +23,7 @@
<plugin>
<artifactId>maven-resource-dependency-plugin</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<configuration>
<webSourceDirectory>${basedir}/src/main/webapp</webSourceDirectory>
@@ -72,7 +72,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/panel2-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/samples/panel2-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA4/sandbox/samples/pom.xml
===================================================================
--- trunk/sandbox/samples/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/samples/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA4/sandbox/samples/rex-demo/pom.xml
===================================================================
--- trunk/sandbox/samples/rex-demo/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/samples/rex-demo/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
@@ -178,7 +178,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
Modified: tags/3.3.1.BETA4/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.3.1.BETA4/sandbox/ui/create.bat
===================================================================
--- trunk/sandbox/ui/create.bat 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/create.bat 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.BETA4 -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.1.BETA4/sandbox/ui/create.sh
===================================================================
--- trunk/sandbox/ui/create.sh 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/create.sh 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,2 +1,2 @@
#!/bin/sh
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1-SNAPSHOT -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.BETA4 -DgroupId=org.richfaces.ui -DartifactId=${1}
\ No newline at end of file
Modified: tags/3.3.1.BETA4/sandbox/ui/dialog-window/pom.xml
===================================================================
--- trunk/sandbox/ui/dialog-window/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/dialog-window/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA4/sandbox/ui/editorOld/pom.xml
===================================================================
--- trunk/sandbox/ui/editorOld/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/editorOld/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/sandbox/ui/panel2/pom.xml
===================================================================
--- trunk/sandbox/ui/panel2/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/panel2/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/sandbox/ui/pom.xml
===================================================================
--- trunk/sandbox/ui/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.3.1.BETA4/sandbox/ui/rex-button/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-button/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/rex-button/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-messageBox/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/rex-messageBox/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-resizable/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/rex-resizable/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- trunk/sandbox/ui/simpleTogglePanel2/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/simpleTogglePanel2/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- trunk/sandbox/ui/sortableHeader/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/sortableHeader/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/sandbox/ui/treeTable/pom.xml
===================================================================
--- trunk/sandbox/ui/treeTable/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/sandbox/ui/treeTable/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/test-applications/ajaxTest/pom.xml
===================================================================
--- trunk/test-applications/ajaxTest/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/ajaxTest/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -55,7 +55,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>jsf-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -66,7 +66,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
Modified: tags/3.3.1.BETA4/test-applications/automator/pom.xml
===================================================================
--- trunk/test-applications/automator/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/automator/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA4/test-applications/facelets/pom.xml
===================================================================
--- trunk/test-applications/facelets/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/facelets/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA4/test-applications/jsp/pom.xml
===================================================================
--- trunk/test-applications/jsp/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/jsp/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.3.1.BETA4/test-applications/pom.xml
===================================================================
--- trunk/test-applications/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.3.1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.BETA4</rfVersion>
</properties>
<modules>
Modified: tags/3.3.1.BETA4/test-applications/realworld2/pom.xml
===================================================================
--- trunk/test-applications/realworld2/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/realworld2/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -14,7 +14,7 @@
<properties>
<projectName>realworld</projectName>
- <richfacesVersion>3.3.1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.BETA4</richfacesVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<faceletsVersion>1.1.14</faceletsVersion>
<jbosshome>${project.basedir}/target/installs/jboss-4.2.3.GA/jboss-4.2.3.GA</jbosshome>
Modified: tags/3.3.1.BETA4/test-applications/regressionArea/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/regressionArea/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -4,12 +4,12 @@
<!--parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent-->
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
<packaging>pom</packaging>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>Regresion Area:Seam Application</name>
<repositories>
<repository>
@@ -60,7 +60,7 @@
<properties>
<contextroot>regressionArea</contextroot>
<earname>regressionArea-ear</earname>
- <richversion>3.3.1-SNAPSHOT</richversion>
+ <richversion>3.3.1.BETA4</richversion>
<seamversion>2.1.1.GA</seamversion>
<jsfversion>1.2_11</jsfversion>
<jbosshome>C:/tmp/jboss-4.2.3.GA</jbosshome>
Modified: tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-ear/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-ear/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-ear/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ear</artifactId>
<name>Regression Area Ear Module</name>
Modified: tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-ejb/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-ejb/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-ejb/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-ejb</artifactId>
Modified: tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-tests/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-tests/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-tests/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>regressionArea</artifactId>
<groupId>org.richfaces.test-applications</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
Modified: tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-web/pom.xml
===================================================================
--- trunk/test-applications/regressionArea/regressionArea-web/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/regressionArea/regressionArea-web/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.test-applications</groupId>
<artifactId>regressionArea</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<groupId>org.richfaces.test-applications.regressionArea</groupId>
<artifactId>regressionArea-web</artifactId>
Modified: tags/3.3.1.BETA4/test-applications/richfaces-docs/pom.xml
===================================================================
--- trunk/test-applications/richfaces-docs/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/richfaces-docs/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -8,7 +8,7 @@
<name>richfaces-docs</name>
<properties>
<projectName>richfaces-docs</projectName>
- <richfacesVersion>3.3.1-SNAPSHOT</richfacesVersion>
+ <richfacesVersion>3.3.1.BETA4</richfacesVersion>
<seamVersion>2.0.1.GA</seamVersion>
<droolsVersion>4.0.0</droolsVersion>
Modified: tags/3.3.1.BETA4/test-applications/richfaces-docs/web/pom.xml
===================================================================
--- trunk/test-applications/richfaces-docs/web/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/richfaces-docs/web/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -47,7 +47,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<scope>provided</scope>
</dependency>
Modified: tags/3.3.1.BETA4/test-applications/seamApp/pom.xml
===================================================================
--- trunk/test-applications/seamApp/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/seamApp/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -8,7 +8,7 @@
<name>sample application</name>
<properties>
<projectName>seamApp</projectName>
- <rfVersion>3.3.1-SNAPSHOT</rfVersion>
+ <rfVersion>3.3.1.BETA4</rfVersion>
<seamVersion>2.1.0.SP1</seamVersion>
<jbossDownloadURL>http://downloads.sourceforge.net/jboss/jboss-4.2.2.GA.zip</jbossDownloadURL>
<jbossDeployDir>jboss-4.2.2.GA/jboss-4.2.2.GA/server/default/</jbossDeployDir>
Modified: tags/3.3.1.BETA4/test-applications/seleniumTest/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/seleniumTest/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>pom</packaging>
<name>SeleniumTest</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -227,7 +227,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.3.1.BETA4/test-applications/seleniumTest/richfaces/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/richfaces/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/seleniumTest/richfaces/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -5,14 +5,14 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>richfaces</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<finalName>richfaces</finalName>
</build>
Modified: tags/3.3.1.BETA4/test-applications/seleniumTest/samples/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/samples/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/test-applications/seleniumTest/samples/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -5,13 +5,13 @@
<parent>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>samples</artifactId>
<name>Samples</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<finalName>seleniumTest</finalName>
<plugins>
Modified: tags/3.3.1.BETA4/ui/assembly/pom.xml
===================================================================
--- trunk/ui/assembly/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/assembly/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -15,7 +15,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.3.1.BETA4/ui/beanValidator/pom.xml
===================================================================
--- trunk/ui/beanValidator/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/beanValidator/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,75 +1,75 @@
-<?xml version="1.0"?>
-<project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>beanValidator</artifactId>
- <name>beanValidator</name>
- <version>3.3.1-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>beanValidator</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>message</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-validator</artifactId>
- <version>3.1.0.GA</version>
- <exclusions>
- <!--
- <exclusion> <artifactId>hibernate-core</artifactId>
- <groupId>org.hibernate</groupId> </exclusion> <exclusion>
- <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
- </exclusion>
- -->
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.4.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<?xml version="1.0"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>beanValidator</artifactId>
+ <name>beanValidator</name>
+ <version>3.3.1.BETA4</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA4</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>beanValidator</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>message</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ <version>3.1.0.GA</version>
+ <exclusions>
+ <!--
+ <exclusion> <artifactId>hibernate-core</artifactId>
+ <groupId>org.hibernate</groupId> </exclusion> <exclusion>
+ <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId>
+ </exclusion>
+ -->
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ <version>1.4.2</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/calendar/pom.xml
===================================================================
--- trunk/ui/calendar/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/calendar/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/colorPicker/pom.xml
===================================================================
--- trunk/ui/colorPicker/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/colorPicker/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,55 +1,55 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>colorPicker</artifactId>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>colorPicker</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
-</project>
+<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>colorPicker</artifactId>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA4</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>colorPicker</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+</project>
Modified: tags/3.3.1.BETA4/ui/columns/pom.xml
===================================================================
--- trunk/ui/columns/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/columns/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.BETA4/ui/combobox/pom.xml
===================================================================
--- trunk/ui/combobox/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/combobox/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA4/ui/componentControl/pom.xml
===================================================================
--- trunk/ui/componentControl/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/componentControl/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/contextMenu/pom.xml
===================================================================
--- trunk/ui/contextMenu/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/contextMenu/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/core/pom.xml
===================================================================
--- trunk/ui/core/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/core/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/create.bat
===================================================================
--- trunk/ui/create.bat 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/create.bat 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1-SNAPSHOT -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
+mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.3.1.BETA4 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/dataFilterSlider/pom.xml
===================================================================
--- trunk/ui/dataFilterSlider/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/dataFilterSlider/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -14,7 +14,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/dataTable/pom.xml
===================================================================
--- trunk/ui/dataTable/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/dataTable/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.BETA4/ui/datascroller/pom.xml
===================================================================
--- trunk/ui/datascroller/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/datascroller/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/drag-drop/pom.xml
===================================================================
--- trunk/ui/drag-drop/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/drag-drop/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
-->
</dependencies>
Modified: tags/3.3.1.BETA4/ui/dropdown-menu/pom.xml
===================================================================
--- trunk/ui/dropdown-menu/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/dropdown-menu/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/editor/pom.xml
===================================================================
--- trunk/ui/editor/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/editor/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -62,7 +62,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
Modified: tags/3.3.1.BETA4/ui/effect/pom.xml
===================================================================
--- trunk/ui/effect/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/effect/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/extendedDataTable/pom.xml
===================================================================
--- trunk/ui/extendedDataTable/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/extendedDataTable/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,35 +1,35 @@
-<?xml version="1.0"?><project>
+<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>extendedDataTable</artifactId>
- <name>extendedDataTable</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>extendedDataTable</shortName>
- </taglib>
- </library>
- </configuration>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>extendedDataTable</artifactId>
+ <name>extendedDataTable</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA4</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>extendedDataTable</shortName>
+ </taglib>
+ </library>
+ </configuration>
</plugin>
<plugin>
@@ -57,52 +57,52 @@
</execution>
</executions>
</plugin>
-
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>drag-drop</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA4</version>
</dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>menu-components</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>contextMenu</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>jQuery</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>componentControl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>scrollableDataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>drag-drop</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>dataTable</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>menu-components</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>contextMenu</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>jQuery</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>componentControl</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>scrollableDataTable</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/fileUpload/pom.xml
===================================================================
--- trunk/ui/fileUpload/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/fileUpload/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/functions/pom.xml
===================================================================
--- trunk/ui/functions/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/functions/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/gmap/pom.xml
===================================================================
--- trunk/ui/gmap/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/gmap/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/hotKey/pom.xml
===================================================================
--- trunk/ui/hotKey/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/hotKey/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,56 +1,56 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>hotKey</artifactId>
- <name>hotKey</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <shortName>hotKey</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>hotKey</artifactId>
+ <name>hotKey</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA4</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <shortName>hotKey</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/inplaceInput/pom.xml
===================================================================
--- trunk/ui/inplaceInput/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/inplaceInput/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/inplaceSelect/pom.xml
===================================================================
--- trunk/ui/inplaceSelect/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/inplaceSelect/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA4/ui/inputnumber-slider/pom.xml
===================================================================
--- trunk/ui/inputnumber-slider/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/inputnumber-slider/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/inputnumber-spinner/pom.xml
===================================================================
--- trunk/ui/inputnumber-spinner/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/inputnumber-spinner/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.BETA4/ui/insert/pom.xml
===================================================================
--- trunk/ui/insert/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/insert/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/jQuery/pom.xml
===================================================================
--- trunk/ui/jQuery/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/jQuery/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/layout/pom.xml
===================================================================
--- trunk/ui/layout/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/layout/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,54 +1,54 @@
-<?xml version="1.0"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>layout</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <name>layout</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <id>generate-sources</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- <execution>
- <id>generate-test-sources</id>
- <phase>generate-test-sources</phase>
- <goals>
- <goal>generate-tests</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces</prefix>
- <taglib>
- <uri>http://richfaces.org/layout</uri>
- <shortName>layout</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
-</project>
+<?xml version="1.0"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>layout</artifactId>
+ <version>3.3.1.BETA4</version>
+ <name>layout</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA4</version>
+ <executions>
+ <execution>
+ <id>generate-sources</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-tests</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces</prefix>
+ <taglib>
+ <uri>http://richfaces.org/layout</uri>
+ <shortName>layout</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ </dependencies>
+</project>
Modified: tags/3.3.1.BETA4/ui/listShuttle/pom.xml
===================================================================
--- trunk/ui/listShuttle/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/listShuttle/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.3.1.BETA4/ui/menu-components/pom.xml
===================================================================
--- trunk/ui/menu-components/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/menu-components/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/message/pom.xml
===================================================================
--- trunk/ui/message/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/message/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/modal-panel/pom.xml
===================================================================
--- trunk/ui/modal-panel/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/modal-panel/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/orderingList/pom.xml
===================================================================
--- trunk/ui/orderingList/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/orderingList/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/paint2D/pom.xml
===================================================================
--- trunk/ui/paint2D/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/paint2D/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/panel/pom.xml
===================================================================
--- trunk/ui/panel/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/panel/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/panelbar/pom.xml
===================================================================
--- trunk/ui/panelbar/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/panelbar/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/panelmenu/pom.xml
===================================================================
--- trunk/ui/panelmenu/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/panelmenu/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/pickList/pom.xml
===================================================================
--- trunk/ui/pickList/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/pickList/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
Modified: tags/3.3.1.BETA4/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -138,12 +138,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.3.1.BETA4/ui/progressBAR/pom.xml
===================================================================
--- trunk/ui/progressBAR/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/progressBAR/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/scrollableDataTable/pom.xml
===================================================================
--- trunk/ui/scrollableDataTable/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/scrollableDataTable/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/separator/pom.xml
===================================================================
--- trunk/ui/separator/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/separator/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.3.1.BETA4/ui/simpleTogglePanel/pom.xml
===================================================================
--- trunk/ui/simpleTogglePanel/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/simpleTogglePanel/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/spacer/pom.xml
===================================================================
--- trunk/ui/spacer/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/spacer/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/state/pom.xml
===================================================================
--- trunk/ui/state/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/state/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -1,43 +1,43 @@
-<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>state</artifactId>
- <name>state</name>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <library>
- <prefix>org.richfaces.ui</prefix>
- <taglib>
- <shortName>state</shortName>
- </taglib>
- </library>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.richfaces.framework</groupId>
- <artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<?xml version="1.0"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <parent>
+ <artifactId>ui</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>3.3.1.BETA4</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>state</artifactId>
+ <name>state</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.3.1.BETA4</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <library>
+ <prefix>org.richfaces.ui</prefix>
+ <taglib>
+ <shortName>state</shortName>
+ </taglib>
+ </library>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.3.1.BETA4</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/suggestionbox/pom.xml
===================================================================
--- trunk/ui/suggestionbox/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/suggestionbox/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/tabPanel/pom.xml
===================================================================
--- trunk/ui/tabPanel/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/tabPanel/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/togglePanel/pom.xml
===================================================================
--- trunk/ui/togglePanel/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/togglePanel/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/toolBar/pom.xml
===================================================================
--- trunk/ui/toolBar/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/toolBar/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/tooltip/pom.xml
===================================================================
--- trunk/ui/tooltip/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/tooltip/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/tree/pom.xml
===================================================================
--- trunk/ui/tree/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/tree/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/treeModel/pom.xml
===================================================================
--- trunk/ui/treeModel/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/treeModel/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.3.1.BETA4/ui/treeTable/pom.xml
===================================================================
--- trunk/ui/treeTable/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/treeTable/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.3.1.BETA4/ui/virtualEarth/pom.xml
===================================================================
--- trunk/ui/virtualEarth/pom.xml 2009-04-10 00:14:07 UTC (rev 13482)
+++ tags/3.3.1.BETA4/ui/virtualEarth/pom.xml 2009-04-10 14:03:11 UTC (rev 13494)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
@@ -13,7 +13,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.3.1-SNAPSHOT</version>
+ <version>3.3.1.BETA4</version>
<executions>
<execution>
<phase>generate-sources</phase>
15 years, 9 months
JBoss Rich Faces SVN: r13493 - trunk/docs.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2009-04-10 09:51:24 -0400 (Fri, 10 Apr 2009)
New Revision: 13493
Modified:
trunk/docs/release.sh
Log:
https://jira.jboss.org/jira/browse/RF-6698 - Shell script was improved. Necessary info was added to the Wiki
Modified: trunk/docs/release.sh
===================================================================
--- trunk/docs/release.sh 2009-04-10 13:37:47 UTC (rev 13492)
+++ trunk/docs/release.sh 2009-04-10 13:51:24 UTC (rev 13493)
@@ -1,30 +1,35 @@
#!/bin/bash
-# This script is used for the release build
-# Author Gleb Galkin
+# This script is used for the documentation release build
+# Author: Gleb Galkin <ggalkin(a)exadel.com>
#REQUIREMENTS:
# If you use cygwin, please, check whether 'cpio' package is installed
-#Here you should define necessary variables:
-# 1. define the absolute path to the 'trunk' directory in the TRUNK variable
-# 2. define the absolute path to the 'freezone/doc' directory in the FREEZONE variable
-#3. define path and name of the log file in the LOG variable
-#4. define user name for commit in the USER variable
-#5. define password for commit in the PASS variable
-#6. define message for commit in the MESSAGE variable
+#NOTE:
+# If some docs were added you should add the pathes to the DOCS array:
+# 1. proceed to the $TRUNK/ui/assembly directory
+# 2. open pom.xml file in your favorite text editor
+# 3. find release profile with maven-dependency-plugin inside
+# 4. add necessary artifactItem, e.g.
+# <artifactItem>
+# <groupId>org.richfaces.docs.userguide</groupId>
+# <artifactId>en</artifactId>
+# <version>${project.version}</version>
+# <type>jar</type>
+# <outputDirectory>${project.build.directory}/docs/userguide/en</outputDirectory>
+# </artifactItem>
+# 5. finally you should add necessary docs formats to the DOCS array as follows:
+# [n]="SRC=$TRUNK/ui/assembly/target/docs/userguide/en/html TARGET=$FREEZONE/devguide/en/html"
+# where'n' is the next array index
-# If you run this script for the first time you could check all the pathes in the DOC array if it is really needed. In order to check them take the following steps:
+
+# If you run this script for the first time or some docs were already added you could check all the pathes in the DOCS array. In order to check them take the following steps:
# 1. run the following command from the trunk root: mvn clean install -P release,docs,release_docs -Dmaven.test.skip=true
-# 2. proceed to the $TRUNK/ui/assembly/target directory and check all pathes that have been defined in the DOC array, SRC field. If some of them have been changed rewrite them manually
-# 3. finnally proceed to the $FREEZONE directory and and check all pathes that have been defined in the DOC array, TARGET field. If some of them have been changed rewrite them manually
+# 2. proceed to the $TRUNK/ui/assembly/target directory and check all pathes that have been defined in the DOCS array, SRC field. If some of them have been changed rewrite them manually
+# 3. finnally proceed to the $FREEZONE directory and check all pathes that have been defined in the DOCS array, TARGET field. If some of them have been changed rewrite them manually
-TRUNK="D:/workspaceRF/trunk"
-FREEZONE="D:/workspaceRF/online/freezone/docs"
-LOG="log_release.txt"
-USER="smukhina"
-PASS=""
-MESSAGE=""
-
+## Array of DOCs
+##############################################################################################################
DOCS=(
[0]="SRC=$TRUNK/ui/assembly/target/apidocs TARGET=$FREEZONE/apidoc"
[1]="SRC=$TRUNK/ui/assembly/target/tlddoc TARGET=$FREEZONE/tlddoc"
@@ -37,6 +42,9 @@
[8]="SRC=$TRUNK/ui/assembly/target/docs/userguide/en/pdf TARGET=$FREEZONE/devguide/en/pdf"
)
+##############################################################################################################
+
+
function die(){
printLog "$@"
exit 1
@@ -68,8 +76,9 @@
printLog "Try to delete unnecessary files..."
svn status | grep '^\!' | grep -o -P [^\!^" ""\n\r?"]+ | while read -r;do svn rm $REPLY >> $LOG 2>&1; done || die "Something wrong with svn remove. See the log file"
+ #Try to commit files
printLog "Try to commit files..."
- #svn commit --username $USER --password $PASS --message $MESSAGE >> $LOG 2>&1 || die "Something wrong with svn commit. See the log file"
+ svn commit --username $USER --password $PASS --message $MESSAGE >> $LOG 2>&1 || die "Something wrong with svn commit. See the log file"
done
}
@@ -83,12 +92,50 @@
echo >> $LOG
}
-if [ $TRUNK="" -o $FREEZONE="" -o $LOG="" -o $USER="" -o $PASS="" -o $MESSAGE="" ]
-then
- echo "Please, specify necessary variables. See the header of this script"
- exit 1
-fi
+function validateInput () {
+ if [ -d $@ ]
+ then
+ echo ""
+ else
+ die $@ ": No such directory"
+ fi
+}
+echo -e "\n\r Attention!
+\r If you use cygwin, please, check whether 'cpio' package is installed!
+\r If you run this script for the first time or some new docs were added to the build \r
+\r you should check all the pathes in the DOCS array!
+\r In order to check them, please, open this shell script in your favorite text editor and read NOTE section at the beginnig of the file."
+while true
+do
+ echo -n "Are you sure to begin build process? [Y or N] :"
+ read CONFIRM
+ case $CONFIRM in
+ y|Y|YES|yes|Yes) break ;;
+ n|N|no|NO|No)
+ echo "Thank you for you patience"
+ exit
+ ;;
+ *) echo Please enter only y or n
+ esac
+done
+
+
+echo -n "Define the ABSOLUTE path to the 'trunk' directory:"
+read -e TRUNK
+validateInput $TRUNK
+echo -n "Define the ABSOLUTE path to the 'freezone/doc':"
+read -e FREEZONE
+validateInput $FREEZONE
+echo -n "Define the ABSOLUTE path to the log file (e.g. /home/user/RFDocRelease.txt:"
+read -e LOG
+echo -n "Specify your user name for commit:"
+read -e USER
+read -s -p "Specify your password for commit: " PASS
+echo ""
+echo -n "Enter a message for commit:"
+read -e MESSAGE
+
#Remove old log
if [ -e $LOG ]
then
15 years, 9 months
JBoss Rich Faces SVN: r13492 - in trunk/test-applications/realworld2/web/src/main: java/org/richfaces/realworld/ui and 8 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2009-04-10 09:37:47 -0400 (Fri, 10 Apr 2009)
New Revision: 13492
Added:
trunk/test-applications/realworld2/web/src/main/webapp/includes/userImages.xhtml
Removed:
trunk/test-applications/realworld2/web/src/main/webapp/includes/images.xhtml
Modified:
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileUploadManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/UserManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageLoader.java
trunk/test-applications/realworld2/web/src/main/webapp/includes/album/albumEditInfo.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/albumEdit.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/contextMenu/CMForAlbum.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageEditInfo.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageInfo.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageScroller.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/index/login.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/index/menu.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/index/workArea.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/shelf/shelfEditInfo.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/userAlbums.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/userPrefs/avatar.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/layout/template.xhtml
Log:
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java 2009-04-10 13:37:27 UTC (rev 13491)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Authenticator.java 2009-04-10 13:37:47 UTC (rev 13492)
@@ -118,6 +118,7 @@
return Constants.INDEX_OUTCOME;
}
+ @End
public String goToIndex(){
return Constants.INDEX_OUTCOME;
}
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java 2009-04-10 13:37:27 UTC (rev 13491)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java 2009-04-10 13:37:47 UTC (rev 13492)
@@ -70,8 +70,8 @@
model.resetModel(NavigationEnum.SHELF_EDIT, shelf.getOwner(), shelf, null, null, null);
}
- public void cancelEditShelf(Shelf shelf){
- model.resetModel(NavigationEnum.SHELF_EDIT, shelf.getOwner(), shelf, null, null, null);
+ public void cancelEditShelf(){
+ model.resetModel(NavigationEnum.SHELF_PREVIEW, model.getSelectedShelf().getOwner(), model.getSelectedShelf(), null, null, null);
}
public void showAlbum(Album album){
@@ -82,6 +82,7 @@
FileManager fileManager = (FileManager)Contexts.getApplicationContext().get(Constants.FILE_MANAGER_COMPONENT);
if(!fileManager.isDirectoryPresent(album.getPath())){
pushEvent(Constants.ADD_ERROR_EVENT, Constants.ALBUM_RECENTLY_DELETED_ERROR);
+ model.resetModel(NavigationEnum.SHELF_PREVIEW, album.getOwner(), album.getShelf(), null, null, null);
return;
}
model.resetModel(NavigationEnum.ALBUM_PREVIEW, album.getOwner(), album.getShelf(), album, null, album.getImages());
@@ -95,24 +96,13 @@
FileManager fileManager = (FileManager)Contexts.getApplicationContext().get(Constants.FILE_MANAGER_COMPONENT);
if(!fileManager.isFilePresent(image.getFullPath())){
pushEvent(Constants.ADD_ERROR_EVENT, Constants.IMAGE_RECENTLY_DELETED_ERROR);
+ model.resetModel(NavigationEnum.ALBUM_PREVIEW, image.getAlbum().getOwner(), image.getAlbum().getShelf(), image.getAlbum(), null, image.getAlbum().getImages());
return;
}
model.resetModel(NavigationEnum.ALBUM_IMAGE_PREVIEW, image.getAlbum().getOwner(), image.getAlbum().getShelf(), image.getAlbum(), image, image.getAlbum().getImages());
image.getAlbum().visitImage(image, true);
}
- public void scroll(DataScrollerEvent e){
- Integer index = e.getPage();
- Image image = model.getSelectedAlbum().getImages().get(index - 1);
- FileManager fileManager = (FileManager)Contexts.getApplicationContext().get(Constants.FILE_MANAGER_COMPONENT);
- if(!fileManager.isFilePresent(image.getFullPath())){
- pushEvent(Constants.ADD_ERROR_EVENT, Constants.IMAGE_RECENTLY_DELETED_ERROR);
- return;
- }
- model.resetModel(NavigationEnum.ALBUM_IMAGE_PREVIEW, image.getAlbum().getOwner(), image.getAlbum().getShelf(), image.getAlbum(), image, image.getAlbum().getImages());
- image.getAlbum().visitImage(image, true);
- }
-
@Restrict("#{s:hasRole('admin')}")
public void startEditImage(Image image){
if(!canViewImage(image)){
@@ -133,14 +123,15 @@
model.resetModel(NavigationEnum.ALL_SHELFS, user, model.getSelectedShelf(), model.getSelectedAlbum(), model.getSelectedImage(), model.getImages());
}
- public void cancelEditImage(Image image){
- model.resetModel(NavigationEnum.ALBUM_IMAGE_PREVIEW, image.getAlbum().getShelf().getOwner(), image.getAlbum().getShelf(), image.getAlbum(), image, image.getAlbum().getImages() );
+ public void cancelEditImage(){
+ model.resetModel(NavigationEnum.ALBUM_IMAGE_PREVIEW, model.getSelectedImage().getAlbum().getShelf().getOwner(), model.getSelectedImage().getAlbum().getShelf(), model.getSelectedImage().getAlbum(), model.getSelectedImage(), model.getSelectedImage().getAlbum().getImages() );
}
public void showShelf(Shelf shelf){
FileManager fileManager = (FileManager)Contexts.getApplicationContext().get(Constants.FILE_MANAGER_COMPONENT);
if(!fileManager.isDirectoryPresent(shelf.getPath())){
pushEvent(Constants.ADD_ERROR_EVENT, Constants.SHELF_RECENTLY_DELETED_ERROR);
+ model.resetModel(NavigationEnum.ANONYM, shelf.getOwner(), null, null, null, null);
return;
}
model.resetModel(NavigationEnum.SHELF_PREVIEW, shelf.getOwner(), shelf, null, null, null);
@@ -155,8 +146,8 @@
model.resetModel(NavigationEnum.ALBUM_EDIT, album.getShelf().getOwner(), album.getShelf(), album, null, album.getImages());
}
- public void cancelEditAlbum(Album album){
- model.resetModel(NavigationEnum.ALBUM_PREVIEW, album.getShelf().getOwner(), album.getShelf(), album, null, album.getImages());
+ public void cancelEditAlbum(){
+ model.resetModel(NavigationEnum.ALBUM_PREVIEW, model.getSelectedAlbum().getShelf().getOwner(), model.getSelectedAlbum().getShelf(), model.getSelectedAlbum(), null, model.getSelectedAlbum().getImages());
}
@Observer(Constants.ALBUM_ADDED_EVENT)
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileUploadManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileUploadManager.java 2009-04-10 13:37:27 UTC (rev 13491)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileUploadManager.java 2009-04-10 13:37:47 UTC (rev 13492)
@@ -93,7 +93,7 @@
return;
}
fileWrapper.getFiles().add(image);
- Events.instance().raiseEvent(Constants.IMAGE_ADDED_EVENT);
+ Events.instance().raiseEvent(Constants.IMAGE_ADDED_EVENT, image);
item.getFile().delete();
}
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java 2009-04-10 13:37:27 UTC (rev 13491)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/NavigationEnum.java 2009-04-10 13:37:47 UTC (rev 13492)
@@ -31,7 +31,7 @@
ALL_SHELFS("/includes/userShelves.xhtml"),
TAGS("includes/tag.xhtml"),
ALL_ALBUMS("/includes/userAlbums.xhtml"),
- ALL_IMAGES("/includes/images.xhtml"),
+ ALL_IMAGES("/includes/userImages.xhtml"),
ALBUM_IMAGE_EDIT("/includes/imageEdit.xhtml"),
ALBUM_EDIT("/includes/albumEdit.xhtml"),
SHELF_EDIT("/includes/shelfEdit.xhtml"),
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java 2009-04-10 13:37:27 UTC (rev 13491)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java 2009-04-10 13:37:47 UTC (rev 13492)
@@ -78,6 +78,7 @@
if(!fileManager.isFilePresent(this.selectedImage.getFullPath())){
Events.instance().raiseEvent(Constants.ADD_ERROR_EVENT, Constants.IMAGE_RECENTLY_DELETED_ERROR);
active = false;
+ model.resetModel(NavigationEnum.ALBUM_IMAGE_PREVIEW, this.selectedImage.getAlbum().getOwner(), this.selectedImage.getAlbum().getShelf(), this.selectedImage.getAlbum(), null, this.selectedImage.getAlbum().getImages());
return;
}
}
@@ -96,6 +97,7 @@
if(!fileManager.isFilePresent(this.selectedImage.getFullPath())){
Events.instance().raiseEvent(Constants.ADD_ERROR_EVENT, Constants.IMAGE_RECENTLY_DELETED_ERROR);
active = false;
+ model.resetModel(NavigationEnum.ALBUM_IMAGE_PREVIEW, this.selectedImage.getAlbum().getOwner(), this.selectedImage.getAlbum().getShelf(), this.selectedImage.getAlbum(), null, this.selectedImage.getAlbum().getImages());
return;
}
}
@@ -137,6 +139,7 @@
if(!fileManager.isFilePresent(this.selectedImage.getFullPath())){
Events.instance().raiseEvent(Constants.ADD_ERROR_EVENT, Constants.IMAGE_RECENTLY_DELETED_ERROR);
active = false;
+ model.resetModel(NavigationEnum.ALBUM_IMAGE_PREVIEW, this.selectedImage.getAlbum().getOwner(), this.selectedImage.getAlbum().getShelf(), this.selectedImage.getAlbum(), null, this.selectedImage.getAlbum().getImages());
return;
}
}
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/UserManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/UserManager.java 2009-04-10 13:37:27 UTC (rev 13491)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/UserManager.java 2009-04-10 13:37:47 UTC (rev 13492)
@@ -53,13 +53,6 @@
@In(required=false, scope=ScopeType.CONVERSATION) @Out(required=false, scope=ScopeType.CONVERSATION) File avatarData;
@In IUserAction userAction;
-
- public Long countImages() {
- if(null == user.getCountImages() ){
- user.setCountImages(userAction.countImages());
- }
- return user.getCountImages();
- }
public Long countSharedImages(User u) {
return userAction.countSharedImages(u);
@@ -69,13 +62,6 @@
return userAction.countSharedAlbums(u);
}
- public Long countAlbums() {
- if(null == user.getCountAlbums() ){
- user.setCountAlbums(userAction.countAlbums());
- }
- return user.getCountAlbums();
- }
-
public List<Album> getSharedAlbums(User user){
return userAction.getSharedAlbums(user);
}
@@ -108,27 +94,22 @@
}
@Observer(Constants.IMAGE_ADDED_EVENT)
- public void onImageAdded() {
- user.updateStatistics();
+ public void onImageAdded(Image image) {
+ user.addImage(image);
}
@Observer(Constants.IMAGE_DELETED_EVENT)
public void onImageDeleted(Image image, String path){
- user.updateStatistics();
+ user.removeImage(image);
}
@Observer(Constants.ALBUM_DELETED_EVENT)
public void onAlbumDeleted(Album album, String path){
- user.updateStatistics();
+ user.removeAlbum(album);
}
@Observer(Constants.ALBUM_ADDED_EVENT)
public void onAlbumAdded(Album album){
- user.updateStatistics();
+ user.addAlbum(album);
}
-
- @Observer(Constants.SHELF_DELETED_EVENT)
- public void onShelfDeleted(Shelf shelf, String path){
- user.updateStatistics();
- }
}
\ No newline at end of file
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageLoader.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageLoader.java 2009-04-10 13:37:27 UTC (rev 13491)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageLoader.java 2009-04-10 13:37:47 UTC (rev 13492)
@@ -77,7 +77,7 @@
}else{
String prefix = excludeFilePrefix(imageResource.getPath());
- paintImage(out, fileManager.transformPath(Constants.DEFAULT_PICTURE, prefix));
+ paintImage(out, fileManager.transformPath(Constants.DEFAULT_ORIGINAL_PICTURE, prefix));
return;
}
}
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/album/albumEditInfo.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/albumEdit.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/contextMenu/CMForAlbum.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageEditInfo.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageInfo.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageScroller.xhtml
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageScroller.xhtml 2009-04-10 13:37:27 UTC (rev 13491)
+++ trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageScroller.xhtml 2009-04-10 13:37:47 UTC (rev 13492)
@@ -20,7 +20,6 @@
<a4j:mediaOutput element="img"
createContent="#{imageLoader.paintImage}"
value="#{fileManager.transformPath(img.fullPath, '_small80')}">
- <f:param value="#{imageSizeHelper.currentDimension.x}" name="x" />
</a4j:mediaOutput>
<br />
</h:panelGroup>
Deleted: trunk/test-applications/realworld2/web/src/main/webapp/includes/images.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/index/login.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/index/menu.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/index/workArea.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/shelf/shelfEditInfo.xhtml
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/includes/shelf/shelfEditInfo.xhtml 2009-04-10 13:37:27 UTC (rev 13491)
+++ trunk/test-applications/realworld2/web/src/main/webapp/includes/shelf/shelfEditInfo.xhtml 2009-04-10 13:37:47 UTC (rev 13492)
@@ -42,7 +42,7 @@
</td>
<td width="100%" valign="top" align="right" colspan="2" style="padding : 10px;">
- <richx:commandButton id="cancelButton" value="Cancel" style="float: left" immediate="true" actionListener="#{controller.cancelEditShelf(shelf)}" reRender="mainArea" />
+ <richx:commandButton id="cancelButton" value="Cancel" style="float: left" immediate="true" actionListener="#{controller.cancelEditShelf()}" reRender="mainArea" />
<richx:commandButton id="saveButton" value="Save" actionListener="#{shelfManager.editShelf(shelf)}" reRender="mainArea" />
</td>
</tr>
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/userAlbums.xhtml
===================================================================
(Binary files differ)
Copied: trunk/test-applications/realworld2/web/src/main/webapp/includes/userImages.xhtml (from rev 13477, trunk/test-applications/realworld2/web/src/main/webapp/includes/images.xhtml)
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/includes/userPrefs/avatar.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/layout/template.xhtml
===================================================================
(Binary files differ)
15 years, 9 months
JBoss Rich Faces SVN: r13491 - in trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld: service and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2009-04-10 09:37:27 -0400 (Fri, 10 Apr 2009)
New Revision: 13491
Modified:
trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/User.java
trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java
Log:
Modified: trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/User.java
===================================================================
--- trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/User.java 2009-04-10 12:12:17 UTC (rev 13490)
+++ trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/domain/User.java 2009-04-10 13:37:27 UTC (rev 13491)
@@ -163,6 +163,12 @@
@org.hibernate.annotations.LazyCollection(org.hibernate.annotations.LazyCollectionOption.EXTRA)
@org.hibernate.annotations.OrderBy(clause = "NAME asc")
private List<Shelf> shelfs = new ArrayList<Shelf>();
+
+ @Transient
+ private List<Image> images = null;
+
+ @Transient
+ private List<Album> albums = null;
//----------------Getters, Setters
public String getFirstName() {
@@ -288,6 +294,7 @@
if(!shelfs.contains(shelf)){
shelf.setOwner(this);
shelfs.add(shelf);
+ albums.addAll(shelf.getAlbums());
}
}
@@ -304,20 +311,21 @@
if(shelf.getOwner().getLogin().equals(this.getLogin())){
shelf.setOwner(null);
shelfs.remove(shelf);
+ albums.removeAll(shelf.getAlbums());
}else{
throw new IllegalArgumentException("Shelf not belongs to this user!");
}
}
- /**
+/* *//**
* This method set countAlbums and countImages to null.
* Used when user delete shelf, album or image and so on... to reset statistics.
* On next access to this properties, hit to database occur, to retrieve actual data.
- */
+ *//*
public void updateStatistics() {
countAlbums = null;
countImages = null;
- }
+ }*/
/**
* This method return count of shelves, belongs to user
@@ -334,9 +342,12 @@
* @return albums, belongs to user
*/
public List<Album> getAllAlbums(){
- List<Album> albums = new ArrayList<Album>();
- for(Shelf s:getShelfs()){
- albums.addAll(s.getAlbums());
+ if(this.albums == null){
+ List<Album> albums = new ArrayList<Album>();
+ for(Shelf s:getShelfs()){
+ albums.addAll(s.getAlbums());
+ }
+ this.albums = albums;
}
return albums;
}
@@ -347,15 +358,46 @@
* @return images, belongs to user
*/
public List<Image> getAllImages(){
+ if(this.images == null){
List<Image> images = new ArrayList<Image>();
for(Shelf s:getShelfs()){
for(Album a:s.getAlbums()){
images.addAll(a.getImages());
}
}
- return images;
+ this.images = images;
+ }
+ return this.images;
}
+ public void addAlbum(Album album){
+ if(albums == null){
+ albums = new ArrayList<Album>();
+ }
+ albums.add(album);
+ }
+
+ public void removeAlbum(Album album){
+ if(albums == null){
+ albums = new ArrayList<Album>();
+ }
+ albums.remove(album);
+ }
+
+ public void addImage(Image image){
+ if(images == null){
+ images = new ArrayList<Image>();
+ }
+ images.add(image);
+ }
+
+ public void removeImage(Image image){
+ if(images == null){
+ images = new ArrayList<Image>();
+ }
+ images.remove(image);
+ }
+
/**
* Return relative path of folder with user's images in file-system(relative to uploadRoot parameter)
*
@@ -366,4 +408,20 @@
}
return null;
}
+
+ public List<Image> getImages() {
+ return images;
+ }
+
+ public void setImages(List<Image> images) {
+ this.images = images;
+ }
+
+ public List<Album> getAlbums() {
+ return albums;
+ }
+
+ public void setAlbums(List<Album> albums) {
+ this.albums = albums;
+ }
}
\ No newline at end of file
Modified: trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java
===================================================================
--- trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java 2009-04-10 12:12:17 UTC (rev 13490)
+++ trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java 2009-04-10 13:37:27 UTC (rev 13491)
@@ -118,6 +118,7 @@
public static final int INITIAL_DELAY = 4000;
public static final int DELAY = 3000;
public static final String DEFAULT_PICTURE = "default/noimage_small200.jpg";
+ public static final String DEFAULT_ORIGINAL_PICTURE = "default/noimage.jpg";
public static final int DEFAULT_BUFFER_SIZE = 8192;
public static final String UPLOAD = "upload";
public static final String FEMALE = "Female";
15 years, 9 months
JBoss Rich Faces SVN: r13490 - trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2009-04-10 08:12:17 -0400 (Fri, 10 Apr 2009)
New Revision: 13490
Modified:
trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/FileUploadBean.java
Log:
unnesessary synchronized removed.
Modified: trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/FileUploadBean.java
===================================================================
--- trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/FileUploadBean.java 2009-04-10 11:21:01 UTC (rev 13489)
+++ trunk/samples/richfaces-demo/src/main/java/org/richfaces/demo/fileUpload/FileUploadBean.java 2009-04-10 12:12:17 UTC (rev 13490)
@@ -32,10 +32,10 @@
public FileUploadBean() {
}
- public synchronized void paint(OutputStream stream, Object object) throws IOException {
+ public void paint(OutputStream stream, Object object) throws IOException {
stream.write(getFiles().get((Integer)object).getData());
}
- public synchronized void listener(UploadEvent event) throws Exception{
+ public void listener(UploadEvent event) throws Exception{
UploadItem item = event.getUploadItem();
File file = new File();
file.setLength(item.getData().length);
@@ -43,8 +43,8 @@
file.setData(item.getData());
files.add(file);
uploadsAvailable--;
- }
-
+ }
+
public String clearUploadData() {
files.clear();
setUploadsAvailable(5);
15 years, 9 months
JBoss Rich Faces SVN: r13489 - trunk/test-applications/facelets/src/main/webapp/ProgressBar.
by richfaces-svn-commits@lists.jboss.org
Author: mvitenkov
Date: 2009-04-10 07:21:01 -0400 (Fri, 10 Apr 2009)
New Revision: 13489
Modified:
trunk/test-applications/facelets/src/main/webapp/ProgressBar/ProgressBar.xhtml
Log:
remove findComponent
Modified: trunk/test-applications/facelets/src/main/webapp/ProgressBar/ProgressBar.xhtml
===================================================================
--- trunk/test-applications/facelets/src/main/webapp/ProgressBar/ProgressBar.xhtml 2009-04-10 11:02:17 UTC (rev 13488)
+++ trunk/test-applications/facelets/src/main/webapp/ProgressBar/ProgressBar.xhtml 2009-04-10 11:21:01 UTC (rev 13489)
@@ -103,16 +103,5 @@
<h:outputText value="rendered:" />
<h:selectBooleanCheckbox value="#{progressBar.rendered}"
onchange="submit();" />
- </h:panelGrid>
- <br />
- <br />
- <div style="FONT-WEIGHT: bold;">rich:findComponent</div>
- <h:panelGrid columns="2">
- <rich:column>
- <a4j:commandLink value="getValue" reRender="findID"></a4j:commandLink>
- </rich:column>
- <rich:column>
- <h:outputText value="#{rich:findComponent('progressBarID').value}" id="findID"/>
- </rich:column>
- </h:panelGrid>
+ </h:panelGrid>
</f:subview>
\ No newline at end of file
15 years, 9 months
JBoss Rich Faces SVN: r13488 - in trunk/test-applications/realworld2/web/src/main: java/org/richfaces/realworld/manager and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2009-04-10 07:02:17 -0400 (Fri, 10 Apr 2009)
New Revision: 13488
Added:
trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_medium.jpg
trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small120.jpg
trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small160.jpg
trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small200.jpg
trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small80.jpg
Removed:
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/tags/
trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage.jpg
Modified:
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Model.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java
trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageLoader.java
Log:
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java 2009-04-10 11:02:05 UTC (rev 13487)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Controller.java 2009-04-10 11:02:17 UTC (rev 13488)
@@ -79,6 +79,11 @@
pushEvent(Constants.ADD_ERROR_EVENT, Constants.HAVENT_ACCESS);
return;
}
+ FileManager fileManager = (FileManager)Contexts.getApplicationContext().get(Constants.FILE_MANAGER_COMPONENT);
+ if(!fileManager.isDirectoryPresent(album.getPath())){
+ pushEvent(Constants.ADD_ERROR_EVENT, Constants.ALBUM_RECENTLY_DELETED_ERROR);
+ return;
+ }
model.resetModel(NavigationEnum.ALBUM_PREVIEW, album.getOwner(), album.getShelf(), album, null, album.getImages());
}
@@ -87,6 +92,11 @@
pushEvent(Constants.ADD_ERROR_EVENT, Constants.HAVENT_ACCESS);
return;
}
+ FileManager fileManager = (FileManager)Contexts.getApplicationContext().get(Constants.FILE_MANAGER_COMPONENT);
+ if(!fileManager.isFilePresent(image.getFullPath())){
+ pushEvent(Constants.ADD_ERROR_EVENT, Constants.IMAGE_RECENTLY_DELETED_ERROR);
+ return;
+ }
model.resetModel(NavigationEnum.ALBUM_IMAGE_PREVIEW, image.getAlbum().getOwner(), image.getAlbum().getShelf(), image.getAlbum(), image, image.getAlbum().getImages());
image.getAlbum().visitImage(image, true);
}
@@ -94,6 +104,11 @@
public void scroll(DataScrollerEvent e){
Integer index = e.getPage();
Image image = model.getSelectedAlbum().getImages().get(index - 1);
+ FileManager fileManager = (FileManager)Contexts.getApplicationContext().get(Constants.FILE_MANAGER_COMPONENT);
+ if(!fileManager.isFilePresent(image.getFullPath())){
+ pushEvent(Constants.ADD_ERROR_EVENT, Constants.IMAGE_RECENTLY_DELETED_ERROR);
+ return;
+ }
model.resetModel(NavigationEnum.ALBUM_IMAGE_PREVIEW, image.getAlbum().getOwner(), image.getAlbum().getShelf(), image.getAlbum(), image, image.getAlbum().getImages());
image.getAlbum().visitImage(image, true);
}
@@ -123,6 +138,11 @@
}
public void showShelf(Shelf shelf){
+ FileManager fileManager = (FileManager)Contexts.getApplicationContext().get(Constants.FILE_MANAGER_COMPONENT);
+ if(!fileManager.isDirectoryPresent(shelf.getPath())){
+ pushEvent(Constants.ADD_ERROR_EVENT, Constants.SHELF_RECENTLY_DELETED_ERROR);
+ return;
+ }
model.resetModel(NavigationEnum.SHELF_PREVIEW, shelf.getOwner(), shelf, null, null, null);
}
@@ -184,7 +204,12 @@
pushEvent(Constants.ADD_ERROR_EVENT, Constants.FILE_UPLOAD_SHOW_ERROR);
return;
}
- model.resetModel(NavigationEnum.FILE_UPLOAD, model.getSelectedUser(), model.getSelectedShelf(), model.getSelectedAlbum(), model.getSelectedImage(), model.getImages());
+ Album a = model.getSelectedAlbum();
+ if(model.getSelectedAlbum() == null){
+ if(model.getSelectedUser() != null && model.getSelectedUser().getShelfs().size() > 0 && model.getSelectedUser().getShelfs().get(0).getAlbums().size() > 0)
+ a = model.getSelectedUser().getShelfs().get(0).getAlbums().get(0);
+ }
+ model.resetModel(NavigationEnum.FILE_UPLOAD, a.getOwner(), a.getShelf(), a, model.getSelectedImage(), model.getImages());
}
public void showFileUpload(Album album){
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileManager.java 2009-04-10 11:02:05 UTC (rev 13487)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/FileManager.java 2009-04-10 11:02:17 UTC (rev 13488)
@@ -175,6 +175,16 @@
return new File(path);
}
+ public boolean isDirectoryPresent(String path){
+ final File file = getFileByPath(path);
+ return file.exists() && file.isDirectory();
+ }
+
+ public boolean isFilePresent(String path){
+ final File file = getFileByPath(path);
+ return file.exists();
+ }
+
private void deleteDirectory(String directory){
final File file = getFileByPath(directory);
FileUtils.deleteDirectory(file, false);
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Model.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Model.java 2009-04-10 11:02:05 UTC (rev 13487)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/Model.java 2009-04-10 11:02:17 UTC (rev 13488)
@@ -52,12 +52,6 @@
Events.instance().raiseEvent(Constants.CLEAR_FILE_UPLOAD_EVENT);
}
this.mainArea = mainArea;
- if(this.mainArea != null && this.mainArea.equals(NavigationEnum.FILE_UPLOAD)){
- if(getSelectedAlbum() == null){
- if(selectedUser != null && selectedUser.getShelfs().size() > 0 && selectedUser.getShelfs().get(0).getAlbums().size() > 0)
- setSelectedAlbum(selectedUser.getShelfs().get(0).getAlbums().get(0));
- }
- }
}
public NavigationEnum getMainArea() {
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java 2009-04-10 11:02:05 UTC (rev 13487)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/manager/SlideshowManager.java 2009-04-10 11:02:17 UTC (rev 13488)
@@ -27,6 +27,7 @@
import org.jboss.seam.annotations.Name;
import org.jboss.seam.annotations.Observer;
import org.jboss.seam.annotations.Scope;
+import org.jboss.seam.contexts.Contexts;
import org.jboss.seam.core.Events;
import org.richfaces.realworld.domain.Image;
import org.richfaces.realworld.service.Constants;
@@ -73,6 +74,12 @@
}
this.selectedImage = model.getImages().get(this.slideshowIndex);
this.selectedImage.getAlbum().visitImage(selectedImage, true);
+ FileManager fileManager = (FileManager)Contexts.getApplicationContext().get(Constants.FILE_MANAGER_COMPONENT);
+ if(!fileManager.isFilePresent(this.selectedImage.getFullPath())){
+ Events.instance().raiseEvent(Constants.ADD_ERROR_EVENT, Constants.IMAGE_RECENTLY_DELETED_ERROR);
+ active = false;
+ return;
+ }
}
public void startSlideshow(Image selectedImage){
@@ -85,6 +92,12 @@
this.slideshowIndex = model.getImages().indexOf(selectedImage);
this.selectedImage = selectedImage;
this.selectedImage.getAlbum().visitImage(selectedImage, true);
+ FileManager fileManager = (FileManager)Contexts.getApplicationContext().get(Constants.FILE_MANAGER_COMPONENT);
+ if(!fileManager.isFilePresent(this.selectedImage.getFullPath())){
+ Events.instance().raiseEvent(Constants.ADD_ERROR_EVENT, Constants.IMAGE_RECENTLY_DELETED_ERROR);
+ active = false;
+ return;
+ }
}
@Observer(Constants.STOP_SLIDESHOW_EVENT)
@@ -120,5 +133,11 @@
slideshowIndex++;
selectedImage = model.getImages().get(slideshowIndex);
this.selectedImage.getAlbum().visitImage(selectedImage, true);
+ FileManager fileManager = (FileManager)Contexts.getApplicationContext().get(Constants.FILE_MANAGER_COMPONENT);
+ if(!fileManager.isFilePresent(this.selectedImage.getFullPath())){
+ Events.instance().raiseEvent(Constants.ADD_ERROR_EVENT, Constants.IMAGE_RECENTLY_DELETED_ERROR);
+ active = false;
+ return;
+ }
}
}
\ No newline at end of file
Modified: trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageLoader.java
===================================================================
--- trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageLoader.java 2009-04-10 11:02:05 UTC (rev 13487)
+++ trunk/test-applications/realworld2/web/src/main/java/org/richfaces/realworld/ui/ImageLoader.java 2009-04-10 11:02:17 UTC (rev 13488)
@@ -59,7 +59,7 @@
paintImageToBrowser(out, imageResource);
}
- public void paintImageToBrowser(OutputStream out, File imageResource) throws IOException {
+ private void paintImageToBrowser(OutputStream out, File imageResource) throws IOException {
if (imageResource != null && imageResource.exists()) {
@@ -75,6 +75,16 @@
in.close();
}
+ }else{
+ String prefix = excludeFilePrefix(imageResource.getPath());
+ paintImage(out, fileManager.transformPath(Constants.DEFAULT_PICTURE, prefix));
+ return;
}
}
+
+ private String excludeFilePrefix(String path) {
+ final int begin = path.lastIndexOf("_");
+ final int end = path.lastIndexOf(Constants.DOT);
+ return path.substring(begin, end);
+ }
}
\ No newline at end of file
Deleted: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage.jpg
===================================================================
(Binary files differ)
Added: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_medium.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_medium.jpg
___________________________________________________________________
Name: svn:mime-type
+ image/jpeg
Added: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small120.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small120.jpg
___________________________________________________________________
Name: svn:mime-type
+ image/jpeg
Added: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small160.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small160.jpg
___________________________________________________________________
Name: svn:mime-type
+ image/jpeg
Added: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small200.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small200.jpg
___________________________________________________________________
Name: svn:mime-type
+ image/jpeg
Added: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small80.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/test-applications/realworld2/web/src/main/webapp/WEB-INF/Upload/default/noimage_small80.jpg
___________________________________________________________________
Name: svn:mime-type
+ image/jpeg
15 years, 9 months
JBoss Rich Faces SVN: r13487 - trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service.
by richfaces-svn-commits@lists.jboss.org
Author: amarkhel
Date: 2009-04-10 07:02:05 -0400 (Fri, 10 Apr 2009)
New Revision: 13487
Modified:
trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java
Log:
Modified: trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java
===================================================================
--- trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java 2009-04-10 10:58:54 UTC (rev 13486)
+++ trunk/test-applications/realworld2/ejb/src/main/java/org/richfaces/realworld/service/Constants.java 2009-04-10 11:02:05 UTC (rev 13487)
@@ -52,6 +52,10 @@
public static final String USER_DELETED_EVENT = "userDeletedEvent";
//Errors(Internationalization pending)
+ public static final String FILE_MANAGER_COMPONENT = "fileManager";
+ public static final String SHELF_RECENTLY_DELETED_ERROR = "This shelf was recently deleted. Refresh your browser to see actual data.";
+ public static final String IMAGE_RECENTLY_DELETED_ERROR = "This image was recently deleted. Refresh your browser to see actual data.";
+ public static final String ALBUM_RECENTLY_DELETED_ERROR = "This album was recently deleted. Refresh your browser to see actual data.";
public static final String UPDATE_USER_ERROR = "Error while saving preferences to database.";
public static final String SHELF_DELETING_ERROR = "Error while deleting shelf from database.";
public static final String SHELF_SAVING_ERROR = "Error while saving shelf to database.";
@@ -113,7 +117,7 @@
public static final String UPLOAD_ROOT_PATH_COMPONENT_NAME = "uploadRootPath";
public static final int INITIAL_DELAY = 4000;
public static final int DELAY = 3000;
- public static final String DEFAULT_PICTURE = "default/noimage.jpg";
+ public static final String DEFAULT_PICTURE = "default/noimage_small200.jpg";
public static final int DEFAULT_BUFFER_SIZE = 8192;
public static final String UPLOAD = "upload";
public static final String FEMALE = "Female";
15 years, 9 months