JBoss Rich Faces SVN: r10215 - trunk/framework/test/src/main/java/org/ajax4jsf/tests.
by richfaces-svn-commits@lists.jboss.org
Author: dmorozov
Date: 2008-08-28 05:55:02 -0400 (Thu, 28 Aug 2008)
New Revision: 10215
Modified:
trunk/framework/test/src/main/java/org/ajax4jsf/tests/AbstractAjax4JsfTestCase.java
Log:
Fix problem in unit tests with not rendered scripts and links due to this work is executed by A4J filter in real web application.
Modified: trunk/framework/test/src/main/java/org/ajax4jsf/tests/AbstractAjax4JsfTestCase.java
===================================================================
--- trunk/framework/test/src/main/java/org/ajax4jsf/tests/AbstractAjax4JsfTestCase.java 2008-08-28 00:39:59 UTC (rev 10214)
+++ trunk/framework/test/src/main/java/org/ajax4jsf/tests/AbstractAjax4JsfTestCase.java 2008-08-28 09:55:02 UTC (rev 10215)
@@ -48,10 +48,17 @@
import javax.faces.context.FacesContext;
import javax.faces.render.RenderKitFactory;
import javax.faces.render.Renderer;
+import javax.servlet.FilterChain;
+import javax.servlet.ServletException;
+import javax.servlet.ServletRequest;
+import javax.servlet.ServletResponse;
+import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.ajax4jsf.context.AjaxContext;
import org.ajax4jsf.context.AjaxContextImpl;
+import org.ajax4jsf.context.ViewResources;
+import org.ajax4jsf.io.parser.FastHtmlParser;
import org.ajax4jsf.renderkit.AjaxViewRootRenderer;
import org.ajax4jsf.renderkit.ChameleonRenderKitImpl;
import org.ajax4jsf.resource.InternetResource;
@@ -59,6 +66,8 @@
import org.ajax4jsf.resource.ResourceBuilderImpl;
import org.ajax4jsf.resource.image.ImageInfo;
import org.ajax4jsf.tests.org.apache.shale.test.config.ConfigParser;
+import org.ajax4jsf.webapp.BaseXMLFilter;
+import org.ajax4jsf.webapp.HtmlParser;
import org.ajax4jsf.webapp.WebXml;
import org.apache.shale.test.base.AbstractJsfTestCase;
import org.apache.shale.test.mock.MockApplication;
@@ -554,11 +563,80 @@
*/
protected HtmlPage renderView() throws Exception {
setupResponseWriter();
- renderChild(facesContext, facesContext.getViewRoot());
+
+ // Emulate A4J web filter chaining like in real web application.
+ TestXMLFilter filter = new TestXMLFilter();
+ try {
+ filter.processFilter(new FilterChain() {
+ public void doFilter(ServletRequest request, ServletResponse response) throws IOException, ServletException {
+ response.setContentType("text/html");
+ facesContext.setResponseWriter((MockResponseWriter) renderKit.createResponseWriter(response.getWriter(),"text/html",null));
+
+ ViewResources viewResources = new ViewResources();
+ viewResources.initialize(facesContext);
+ //viewResources.setStyleStrategy(InternetResourceBuilder.LOAD_ALL);
+ //viewResources.setScriptStrategy(InternetResourceBuilder.LOAD_ALL);
+ viewResources.setUseStdControlsSkinning(false);
+ viewResources.setUseStdControlsSkinningClasses(false);
+
+ renderChild(facesContext, facesContext.getViewRoot());
+
+ viewResources.processHeadResources(facesContext);
+ Object[] headEvents = (Object[]) viewResources.getHeadEvents();
+ request.setAttribute(AjaxContext.HEAD_EVENTS_PARAMETER, headEvents);
+
+ facesContext.setResponseWriter(writer);
+ }
+ }, request, response);
+ } catch (Exception e) {
+ throw e;
+ }
+
return processResponseWriter();
}
/**
+ * Implements default XML filter to emulate A4J filter that invoked while
+ * http request in web application.
+ *
+ * Needed to make sure that all processed (web page generation) like in real
+ * web application. Additionally now all RF components styles and scripts generated
+ * by A4J filter only, so we need the same in out unit tests.
+ * Fast filter used now by default.
+ * TODO: we can make it configurable like org.ajax4jsf.webapp.ConfigurableXMLFilter
+ *
+ * @author dmorozov
+ */
+ private class TestXMLFilter extends BaseXMLFilter {
+ private HtmlParser parser = null;
+ public TestXMLFilter() {}
+
+ public void processFilter(FilterChain chain, HttpServletRequest request,
+ final HttpServletResponse response) throws IOException,
+ ServletException {
+ super.doXmlFilter(chain, request, response);
+ }
+
+ @Override
+ protected HtmlParser getParser(String mimetype, boolean isAjax, String viewId) {
+ HtmlParser parser = this.parser;
+ if (parser == null) {
+ parser = new FastHtmlParser();
+ }
+ return parser;
+ }
+
+ /**
+ * Peturn parser to pool
+ * @param parser
+ */
+ @Override
+ protected void reuseParser(HtmlParser parser) {
+ this.parser = parser;
+ }
+ }
+
+ /**
* Finish response processing by call {@link javax.faces.context.ResponseWriter#endDocument()} and parse
* result to htmlunit {@link HtmlPage}
* @return
16 years, 3 months
JBoss Rich Faces SVN: r10214 - trunk/ui.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-08-27 20:39:59 -0400 (Wed, 27 Aug 2008)
New Revision: 10214
Modified:
trunk/ui/pom.xml
Log:
Failing tests fail back the build
Modified: trunk/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
+++ trunk/ui/pom.xml 2008-08-28 00:39:59 UTC (rev 10214)
@@ -30,13 +30,6 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <testFailureIgnore>true</testFailureIgnore>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
16 years, 4 months
JBoss Rich Faces SVN: r10213 - in tags: 3.2.2.CR1 and 175 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-08-27 19:30:32 -0400 (Wed, 27 Aug 2008)
New Revision: 10213
Added:
tags/3.2.2.CR1/
Modified:
tags/3.2.2.CR1/cdk/generator/pom.xml
tags/3.2.2.CR1/cdk/maven-archetype-jsf-component/pom.xml
tags/3.2.2.CR1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml
tags/3.2.2.CR1/cdk/maven-archetype-jsfwebapp/pom.xml
tags/3.2.2.CR1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
tags/3.2.2.CR1/cdk/maven-archetype-plug-n-skin/pom.xml
tags/3.2.2.CR1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml
tags/3.2.2.CR1/cdk/maven-cdk-plugin/pom.xml
tags/3.2.2.CR1/cdk/maven-javascript-plugin/pom.xml
tags/3.2.2.CR1/cdk/pom.xml
tags/3.2.2.CR1/docs/cdkguide/en/pom.xml
tags/3.2.2.CR1/docs/cdkguide/pom.xml
tags/3.2.2.CR1/docs/faq/en/pom.xml
tags/3.2.2.CR1/docs/faq/pom.xml
tags/3.2.2.CR1/docs/highlight/pom.xml
tags/3.2.2.CR1/docs/migrationguide/en/pom.xml
tags/3.2.2.CR1/docs/migrationguide/pom.xml
tags/3.2.2.CR1/docs/pom.xml
tags/3.2.2.CR1/docs/userguide/en/pom.xml
tags/3.2.2.CR1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
tags/3.2.2.CR1/docs/userguide/pom.xml
tags/3.2.2.CR1/docs/xslt/en/pom.xml
tags/3.2.2.CR1/docs/xslt/pom.xml
tags/3.2.2.CR1/extensions/gwt/pom.xml
tags/3.2.2.CR1/extensions/pom.xml
tags/3.2.2.CR1/extensions/seam/pom.xml
tags/3.2.2.CR1/extensions/trinidad/pom.xml
tags/3.2.2.CR1/framework/api/pom.xml
tags/3.2.2.CR1/framework/impl/pom.xml
tags/3.2.2.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java
tags/3.2.2.CR1/framework/pom.xml
tags/3.2.2.CR1/framework/test/pom.xml
tags/3.2.2.CR1/pom.xml
tags/3.2.2.CR1/samples/beanValidatorSample/pom.xml
tags/3.2.2.CR1/samples/calendar-sample/pom.xml
tags/3.2.2.CR1/samples/columnsDemo/pom.xml
tags/3.2.2.CR1/samples/combobox-sample/pom.xml
tags/3.2.2.CR1/samples/contextMenuDemo/pom.xml
tags/3.2.2.CR1/samples/darkX/pom.xml
tags/3.2.2.CR1/samples/dataFilterSliderDemo/pom.xml
tags/3.2.2.CR1/samples/dataTableDemo/pom.xml
tags/3.2.2.CR1/samples/datascroller-sample/pom.xml
tags/3.2.2.CR1/samples/dragDropDemo/pom.xml
tags/3.2.2.CR1/samples/dropdownmenu-sample/pom.xml
tags/3.2.2.CR1/samples/effect-sample/pom.xml
tags/3.2.2.CR1/samples/extendedDataTable-sample/pom.xml
tags/3.2.2.CR1/samples/fileUploadDemo/pom.xml
tags/3.2.2.CR1/samples/functions-demo/pom.xml
tags/3.2.2.CR1/samples/glassX/pom.xml
tags/3.2.2.CR1/samples/gmap-sample/pom.xml
tags/3.2.2.CR1/samples/hotKey-sample/pom.xml
tags/3.2.2.CR1/samples/inplaceInput-sample/pom.xml
tags/3.2.2.CR1/samples/inplaceSelect-sample/pom.xml
tags/3.2.2.CR1/samples/inputNumberSliderDemo/pom.xml
tags/3.2.2.CR1/samples/inputNumberSpinnerDemo/pom.xml
tags/3.2.2.CR1/samples/jQuery-sample/pom.xml
tags/3.2.2.CR1/samples/jira-data/pom.xml
tags/3.2.2.CR1/samples/laguna/pom.xml
tags/3.2.2.CR1/samples/listShuttleDemo/pom.xml
tags/3.2.2.CR1/samples/local-value-demo/pom.xml
tags/3.2.2.CR1/samples/modalpanel-sample/pom.xml
tags/3.2.2.CR1/samples/orderingListDemo/pom.xml
tags/3.2.2.CR1/samples/panel-sample/pom.xml
tags/3.2.2.CR1/samples/panelbar-sample/pom.xml
tags/3.2.2.CR1/samples/panelmenu-sample/pom.xml
tags/3.2.2.CR1/samples/pickList-sample/pom.xml
tags/3.2.2.CR1/samples/pom.xml
tags/3.2.2.CR1/samples/progressBarDemo/pom.xml
tags/3.2.2.CR1/samples/rich-message-demo/pom.xml
tags/3.2.2.CR1/samples/richfaces-art-datatable/pom.xml
tags/3.2.2.CR1/samples/richfaces-demo/pom.xml
tags/3.2.2.CR1/samples/richfaces-ear-demo/ejb/pom.xml
tags/3.2.2.CR1/samples/richfaces-ear-demo/pom.xml
tags/3.2.2.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
tags/3.2.2.CR1/samples/richfaces-ear-demo/webapp/pom.xml
tags/3.2.2.CR1/samples/scrollableDataTableDemo/pom.xml
tags/3.2.2.CR1/samples/seamEAR/ear/pom.xml
tags/3.2.2.CR1/samples/seamEAR/ejbs/pom.xml
tags/3.2.2.CR1/samples/seamEAR/pom.xml
tags/3.2.2.CR1/samples/seamEAR/primary-source/pom.xml
tags/3.2.2.CR1/samples/seamEAR/projects/logging/pom.xml
tags/3.2.2.CR1/samples/seamEAR/projects/pom.xml
tags/3.2.2.CR1/samples/seamEAR/wars/pom.xml
tags/3.2.2.CR1/samples/seamEAR/wars/seamWebapp/pom.xml
tags/3.2.2.CR1/samples/seamIntegration/pom.xml
tags/3.2.2.CR1/samples/separator-sample/pom.xml
tags/3.2.2.CR1/samples/simpleTogglePanel-sample/pom.xml
tags/3.2.2.CR1/samples/skins/pom.xml
tags/3.2.2.CR1/samples/sortingFilteringDemo/pom.xml
tags/3.2.2.CR1/samples/state-sample/pom.xml
tags/3.2.2.CR1/samples/stdcomponents-sample/pom.xml
tags/3.2.2.CR1/samples/suggestionbox-sample/pom.xml
tags/3.2.2.CR1/samples/tabPanelDemo/pom.xml
tags/3.2.2.CR1/samples/togglePanel-sample/pom.xml
tags/3.2.2.CR1/samples/tomahawkCompability/pom.xml
tags/3.2.2.CR1/samples/toolBarDemo/pom.xml
tags/3.2.2.CR1/samples/tooltip-sample/pom.xml
tags/3.2.2.CR1/samples/tree-demo/pom.xml
tags/3.2.2.CR1/samples/treeModelDemo/pom.xml
tags/3.2.2.CR1/samples/virtualEarth-sample/pom.xml
tags/3.2.2.CR1/sandbox/api/pom.xml
tags/3.2.2.CR1/sandbox/impl/pom.xml
tags/3.2.2.CR1/sandbox/pom.xml
tags/3.2.2.CR1/sandbox/samples/dialog-window-sample/pom.xml
tags/3.2.2.CR1/sandbox/samples/editor-sample/pom.xml
tags/3.2.2.CR1/sandbox/samples/fileUploadPOC/pom.xml
tags/3.2.2.CR1/sandbox/samples/panel2-sample/pom.xml
tags/3.2.2.CR1/sandbox/samples/pom.xml
tags/3.2.2.CR1/sandbox/samples/rex-demo/pom.xml
tags/3.2.2.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
tags/3.2.2.CR1/sandbox/ui/create.bat
tags/3.2.2.CR1/sandbox/ui/dialog-window/pom.xml
tags/3.2.2.CR1/sandbox/ui/editor/pom.xml
tags/3.2.2.CR1/sandbox/ui/panel2/pom.xml
tags/3.2.2.CR1/sandbox/ui/pom.xml
tags/3.2.2.CR1/sandbox/ui/rex-button/pom.xml
tags/3.2.2.CR1/sandbox/ui/rex-messageBox/pom.xml
tags/3.2.2.CR1/sandbox/ui/rex-resizable/pom.xml
tags/3.2.2.CR1/sandbox/ui/simpleTogglePanel2/pom.xml
tags/3.2.2.CR1/sandbox/ui/sortableHeader/pom.xml
tags/3.2.2.CR1/sandbox/ui/treeTable/pom.xml
tags/3.2.2.CR1/test-applications/facelets/pom.xml
tags/3.2.2.CR1/test-applications/jsp/pom.xml
tags/3.2.2.CR1/test-applications/pom.xml
tags/3.2.2.CR1/test-applications/seam/pom.xml
tags/3.2.2.CR1/test-applications/seleniumTest/pom.xml
tags/3.2.2.CR1/ui/assembly/pom.xml
tags/3.2.2.CR1/ui/beanValidator/pom.xml
tags/3.2.2.CR1/ui/calendar/pom.xml
tags/3.2.2.CR1/ui/columns/pom.xml
tags/3.2.2.CR1/ui/combobox/pom.xml
tags/3.2.2.CR1/ui/componentControl/pom.xml
tags/3.2.2.CR1/ui/contextMenu/pom.xml
tags/3.2.2.CR1/ui/core/pom.xml
tags/3.2.2.CR1/ui/create.bat
tags/3.2.2.CR1/ui/dataFilterSlider/pom.xml
tags/3.2.2.CR1/ui/dataTable/pom.xml
tags/3.2.2.CR1/ui/datascroller/pom.xml
tags/3.2.2.CR1/ui/drag-drop/pom.xml
tags/3.2.2.CR1/ui/dropdown-menu/pom.xml
tags/3.2.2.CR1/ui/effect/pom.xml
tags/3.2.2.CR1/ui/extendedDataTable/pom.xml
tags/3.2.2.CR1/ui/fileUpload/pom.xml
tags/3.2.2.CR1/ui/functions/pom.xml
tags/3.2.2.CR1/ui/gmap/pom.xml
tags/3.2.2.CR1/ui/hotKey/pom.xml
tags/3.2.2.CR1/ui/inplaceInput/pom.xml
tags/3.2.2.CR1/ui/inplaceSelect/pom.xml
tags/3.2.2.CR1/ui/inputnumber-slider/pom.xml
tags/3.2.2.CR1/ui/inputnumber-spinner/pom.xml
tags/3.2.2.CR1/ui/insert/pom.xml
tags/3.2.2.CR1/ui/jQuery/pom.xml
tags/3.2.2.CR1/ui/listShuttle/pom.xml
tags/3.2.2.CR1/ui/menu-components/pom.xml
tags/3.2.2.CR1/ui/message/pom.xml
tags/3.2.2.CR1/ui/modal-panel/pom.xml
tags/3.2.2.CR1/ui/orderingList/pom.xml
tags/3.2.2.CR1/ui/paint2D/pom.xml
tags/3.2.2.CR1/ui/panel/pom.xml
tags/3.2.2.CR1/ui/panelbar/pom.xml
tags/3.2.2.CR1/ui/panelmenu/pom.xml
tags/3.2.2.CR1/ui/pickList/pom.xml
tags/3.2.2.CR1/ui/pom.xml
tags/3.2.2.CR1/ui/progressBAR/pom.xml
tags/3.2.2.CR1/ui/scrollableDataTable/pom.xml
tags/3.2.2.CR1/ui/separator/pom.xml
tags/3.2.2.CR1/ui/simpleTogglePanel/pom.xml
tags/3.2.2.CR1/ui/spacer/pom.xml
tags/3.2.2.CR1/ui/state/pom.xml
tags/3.2.2.CR1/ui/suggestionbox/pom.xml
tags/3.2.2.CR1/ui/tabPanel/pom.xml
tags/3.2.2.CR1/ui/togglePanel/pom.xml
tags/3.2.2.CR1/ui/toolBar/pom.xml
tags/3.2.2.CR1/ui/tooltip/pom.xml
tags/3.2.2.CR1/ui/tree/pom.xml
tags/3.2.2.CR1/ui/treeModel/pom.xml
tags/3.2.2.CR1/ui/treeTable/pom.xml
tags/3.2.2.CR1/ui/virtualEarth/pom.xml
Log:
create tag for a release 3.2.2.CR1
Copied: tags/3.2.2.CR1 (from rev 10212, trunk)
Modified: tags/3.2.2.CR1/cdk/generator/pom.xml
===================================================================
--- trunk/cdk/generator/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/cdk/generator/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -1,93 +1,92 @@
-<?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.2.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>generator</artifactId>
- <version>3.2.2-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_03</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 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.2.2.CR1</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>generator</artifactId>
+ <version>3.2.2.CR1</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_03</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.2.2.CR1/cdk/maven-archetype-jsf-component/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsf-component/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/cdk/maven-archetype-jsf-component/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsf-component</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>Archetype - maven-archetype-jsf-component</name>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/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 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/cdk/maven-archetype-jsf-component/src/main/resources/archetype-resources/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -11,7 +11,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<configuration>
<library>
<prefix>${groupId}</prefix>
@@ -41,7 +41,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.2.2.CR1/cdk/maven-archetype-jsfwebapp/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsfwebapp/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/cdk/maven-archetype-jsfwebapp/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,11 +2,11 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-jsfwebapp</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>Archetype for jsf webapp project</name>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/cdk/maven-archetype-jsfwebapp/src/main/resources/archetype-resources/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -30,7 +30,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
Modified: tags/3.2.2.CR1/cdk/maven-archetype-plug-n-skin/pom.xml
===================================================================
--- trunk/cdk/maven-archetype-plug-n-skin/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/cdk/maven-archetype-plug-n-skin/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-archetype-plug-n-skin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>Archetype - maven-archetype-plug-n-skin</name>
Modified: tags/3.2.2.CR1/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 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/cdk/maven-archetype-plug-n-skin/src/main/resources/archetype-resources/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -10,7 +10,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -34,7 +34,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Modified: tags/3.2.2.CR1/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-cdk-plugin/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/cdk/maven-cdk-plugin/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,12 +2,12 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.2.2.CR1/cdk/maven-javascript-plugin/pom.xml
===================================================================
--- trunk/cdk/maven-javascript-plugin/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/cdk/maven-javascript-plugin/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -4,7 +4,7 @@
<parent>
<artifactId>cdk</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-javascript-plugin</artifactId>
Modified: tags/3.2.2.CR1/cdk/pom.xml
===================================================================
--- trunk/cdk/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/cdk/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>cdk</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<packaging>pom</packaging>
<name>JSF Components Development kit</name>
<dependencies />
Modified: tags/3.2.2.CR1/docs/cdkguide/en/pom.xml
===================================================================
--- trunk/docs/cdkguide/en/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/cdkguide/en/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.cdkguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<packaging>jar</packaging>
<name>Richfaces CDK Developer Guide (${translation})</name>
Modified: tags/3.2.2.CR1/docs/cdkguide/pom.xml
===================================================================
--- trunk/docs/cdkguide/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/cdkguide/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>cdkguide</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>cdkguide</name>
<description>Richfaces CDK Developer Guide</description>
<pluginRepositories>
Modified: tags/3.2.2.CR1/docs/faq/en/pom.xml
===================================================================
--- trunk/docs/faq/en/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/faq/en/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.faq</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.2.2.CR1/docs/faq/pom.xml
===================================================================
--- trunk/docs/faq/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/faq/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>faq</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>FAQ</name>
<description>Frequently asked questions</description>
<pluginRepositories>
Modified: tags/3.2.2.CR1/docs/highlight/pom.xml
===================================================================
--- trunk/docs/highlight/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/highlight/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>RichFaces Code Highlighting</name>
<dependencyManagement>
Modified: tags/3.2.2.CR1/docs/migrationguide/en/pom.xml
===================================================================
--- trunk/docs/migrationguide/en/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/migrationguide/en/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.migration</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<packaging>jar</packaging>
<name>RichFaces Migration Guide (${translation})</name>
Modified: tags/3.2.2.CR1/docs/migrationguide/pom.xml
===================================================================
--- trunk/docs/migrationguide/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/migrationguide/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>migration</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>Migration Guide</name>
<description>RichFaces Migration Guide from 3.1.* to 3.2.0 version</description>
<pluginRepositories>
Modified: tags/3.2.2.CR1/docs/pom.xml
===================================================================
--- trunk/docs/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>docs</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>Project documentation</name>
<packaging>pom</packaging>
<!-- setup repositories, to build documentation separate from Java projects -->
Modified: tags/3.2.2.CR1/docs/userguide/en/pom.xml
===================================================================
--- trunk/docs/userguide/en/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/userguide/en/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -5,12 +5,12 @@
<parent>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.richfaces.docs.userguide</groupId>
<artifactId>${translation}</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<packaging>jar</packaging>
<name>Richfaces Manual (${translation})</name>
Modified: tags/3.2.2.CR1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/userguide/en/src/main/docbook/modules/RFCarchitectover.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3990,7 +3990,7 @@
<para>
<code>DarchetypeVersion</code>
indicates the RichFaces version. For example,
- <code>"3.2.2-SNAPSHOT"</code>
+ <code>"3.2.2.CR1"</code>
</para>
</listitem>
<listitem>
@@ -4359,7 +4359,7 @@
mvn archetype:create
-DarchetypeGroupId=org.richfaces.cdk
-DarchetypeArtifactId=maven-archetype-plug-n-skin
--DarchetypeVersion=3.2.2-SNAPSHOT
+-DarchetypeVersion=3.2.2.CR1
-DartifactId=P-n-S
-DgroupId=GROUPID
-Dversion=1.0.-SNAPSHOT
Modified: tags/3.2.2.CR1/docs/userguide/pom.xml
===================================================================
--- trunk/docs/userguide/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/userguide/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,13 +2,13 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>userguide</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>User guide</name>
<description>RichFaces user guide</description>
<pluginRepositories>
Modified: tags/3.2.2.CR1/docs/xslt/en/pom.xml
===================================================================
--- trunk/docs/xslt/en/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/xslt/en/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,12 +2,12 @@
<parent>
<artifactId>xslt</artifactId>
<groupId>org.richfaces.docs</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs.xslt</groupId>
<artifactId>en</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<packaging>jar</packaging>
<name>Documentation stylesheets (English translation)</name>
<description>
@@ -17,7 +17,7 @@
<dependency>
<groupId>org.richfaces.docs</groupId>
<artifactId>highlight</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
<build>
Modified: tags/3.2.2.CR1/docs/xslt/pom.xml
===================================================================
--- trunk/docs/xslt/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/docs/xslt/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,12 +2,12 @@
<parent>
<artifactId>docs</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.docs</groupId>
<artifactId>xslt</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<packaging>pom</packaging>
<name>Documentation stylesheets</name>
<description>Docbook documentation stylesheets</description>
Modified: tags/3.2.2.CR1/extensions/gwt/pom.xml
===================================================================
--- trunk/extensions/gwt/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/extensions/gwt/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3,7 +3,7 @@
<parent>
<artifactId>extensions</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>com.sun.facelets</groupId>
Modified: tags/3.2.2.CR1/extensions/pom.xml
===================================================================
--- trunk/extensions/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/extensions/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>extensions</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>Richfaces extensions for a different environments</name>
<packaging>pom</packaging>
<modules>
Modified: tags/3.2.2.CR1/extensions/seam/pom.xml
===================================================================
--- trunk/extensions/seam/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/extensions/seam/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
Modified: tags/3.2.2.CR1/extensions/trinidad/pom.xml
===================================================================
--- trunk/extensions/trinidad/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/extensions/trinidad/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -35,7 +35,7 @@
<dependency>
<groupId>org.richfaces</groupId>
<artifactId>ajax4jsf</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.trinidad</groupId>
Modified: tags/3.2.2.CR1/framework/api/pom.xml
===================================================================
--- trunk/framework/api/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/framework/api/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,13 +2,13 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<dependencies>
<dependency>
<groupId>commons-collections</groupId>
Modified: tags/3.2.2.CR1/framework/impl/pom.xml
===================================================================
--- trunk/framework/impl/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/framework/impl/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<resources>
<resource>
@@ -160,7 +159,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java
===================================================================
--- trunk/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/framework/impl/src/main/java/org/richfaces/VersionBean.java 2008-08-27 23:30:32 UTC (rev 10213)
@@ -37,7 +37,7 @@
* Revision version, must be auto modified by CVS
*/
- public static final String REVISION = "2-SNAPSHOT" ;
+ public static final String REVISION = "2.CR1" ;
public static final String SCM_REVISION = " SVN $Revision$ $Date$";//$Revision$ $Date$";
public static final Version _version = new Version();
Modified: tags/3.2.2.CR1/framework/pom.xml
===================================================================
--- trunk/framework/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/framework/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,12 +2,12 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>framework</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<packaging>pom</packaging>
<name>Java Server Faces AJAX framework</name>
<build>
Modified: tags/3.2.2.CR1/framework/test/pom.xml
===================================================================
--- trunk/framework/test/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/framework/test/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,12 +2,12 @@
<parent>
<artifactId>framework</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.CR1/pom.xml
===================================================================
--- trunk/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -4,7 +4,7 @@
<artifactId>root</artifactId>
<packaging>pom</packaging>
<name>Jboss RichFaces project</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<url>http://labs.jboss.com/jbossrichfaces</url>
<properties>
<snapshotRepository>
@@ -199,9 +199,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.2.2.CR1</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/3.2.2.CR1</developerConnection>
+ <url>https://svn.jboss.org/repos/richfaces/branches/3.2.2.CR1</url>
</scm>
<profiles>
<profile>
@@ -224,9 +224,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>
@@ -394,4 +394,4 @@
</distributionManagement>
</profile>
</profiles>
-</project>
+</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/samples/beanValidatorSample/pom.xml
===================================================================
--- trunk/samples/beanValidatorSample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/beanValidatorSample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3,14 +3,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<finalName>beanValidatorSample</finalName>
<plugins>
@@ -33,7 +33,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>beanValidator</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/samples/calendar-sample/pom.xml
===================================================================
--- trunk/samples/calendar-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/calendar-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/columnsDemo/pom.xml
===================================================================
--- trunk/samples/columnsDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/columnsDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/combobox-sample/pom.xml
===================================================================
--- trunk/samples/combobox-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/combobox-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/contextMenuDemo/pom.xml
===================================================================
--- trunk/samples/contextMenuDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/contextMenuDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/darkX/pom.xml
===================================================================
--- trunk/samples/darkX/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/darkX/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -1,48 +1,48 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.2.2-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.2.2-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.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<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.2.2.CR1</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.2.2.CR1</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.2.2.CR1</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.2.2.CR1/samples/dataFilterSliderDemo/pom.xml
===================================================================
--- trunk/samples/dataFilterSliderDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/dataFilterSliderDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/dataTableDemo/pom.xml
===================================================================
--- trunk/samples/dataTableDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/dataTableDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/datascroller-sample/pom.xml
===================================================================
--- trunk/samples/datascroller-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/datascroller-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/dragDropDemo/pom.xml
===================================================================
--- trunk/samples/dragDropDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/dragDropDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/dropdownmenu-sample/pom.xml
===================================================================
--- trunk/samples/dropdownmenu-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/dropdownmenu-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/effect-sample/pom.xml
===================================================================
--- trunk/samples/effect-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/effect-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/extendedDataTable-sample/pom.xml
===================================================================
--- trunk/samples/extendedDataTable-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/extendedDataTable-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.CR1/samples/fileUploadDemo/pom.xml
===================================================================
--- trunk/samples/fileUploadDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/fileUploadDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/functions-demo/pom.xml
===================================================================
--- trunk/samples/functions-demo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/functions-demo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/glassX/pom.xml
===================================================================
--- trunk/samples/glassX/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/glassX/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -1,49 +1,49 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>samples</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.samples</groupId>
- <artifactId>glassX</artifactId>
- <name>glassX</name>
- <version>3.2.2-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-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.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
+<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.2.2.CR1</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.samples</groupId>
+ <artifactId>glassX</artifactId>
+ <name>glassX</name>
+ <version>3.2.2.CR1</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.2.2.CR1</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.2.2.CR1</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.2.2.CR1/samples/gmap-sample/pom.xml
===================================================================
--- trunk/samples/gmap-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/gmap-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/hotKey-sample/pom.xml
===================================================================
--- trunk/samples/hotKey-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/hotKey-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.CR1/samples/inplaceInput-sample/pom.xml
===================================================================
--- trunk/samples/inplaceInput-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/inplaceInput-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/inplaceSelect-sample/pom.xml
===================================================================
--- trunk/samples/inplaceSelect-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/inplaceSelect-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/inputNumberSliderDemo/pom.xml
===================================================================
--- trunk/samples/inputNumberSliderDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/inputNumberSliderDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/inputNumberSpinnerDemo/pom.xml
===================================================================
--- trunk/samples/inputNumberSpinnerDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/inputNumberSpinnerDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/jQuery-sample/pom.xml
===================================================================
--- trunk/samples/jQuery-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/jQuery-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/jira-data/pom.xml
===================================================================
--- trunk/samples/jira-data/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/jira-data/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/laguna/pom.xml
===================================================================
--- trunk/samples/laguna/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/laguna/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<groupId>org.richfaces.samples</groupId>
@@ -16,7 +16,7 @@
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<configuration>
<name>org.richfaces.laguna</name>
</configuration>
Modified: tags/3.2.2.CR1/samples/listShuttleDemo/pom.xml
===================================================================
--- trunk/samples/listShuttleDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/listShuttleDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/local-value-demo/pom.xml
===================================================================
--- trunk/samples/local-value-demo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/local-value-demo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/modalpanel-sample/pom.xml
===================================================================
--- trunk/samples/modalpanel-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/modalpanel-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/orderingListDemo/pom.xml
===================================================================
--- trunk/samples/orderingListDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/orderingListDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/panel-sample/pom.xml
===================================================================
--- trunk/samples/panel-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/panel-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/panelbar-sample/pom.xml
===================================================================
--- trunk/samples/panelbar-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/panelbar-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/panelmenu-sample/pom.xml
===================================================================
--- trunk/samples/panelmenu-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/panelmenu-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/pickList-sample/pom.xml
===================================================================
--- trunk/samples/pickList-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/pickList-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/pom.xml
===================================================================
--- trunk/samples/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -1,496 +1,495 @@
-<?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.2.2-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_09</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_09</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_09</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_09</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_09</version>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <version>1.2_09</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_09</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <version>1.2_09</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>myfaces</id>
- <properties>
- <myfaces>1.2.2</myfaces>
- <tomahawk>1.1.6</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>
- </modules>
- </profile>
- </profiles>
- <modules>
- <module>skins</module>
- <module>laguna</module>
- <module>glassX</module>
- <module>darkX</module>
- <module>richfaces-demo</module>
- </modules>
+<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.2.2.CR1</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_09</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_09</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_09</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_09</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_09</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <version>1.2_09</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_09</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <version>1.2_09</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>myfaces</id>
+ <properties>
+ <myfaces>1.2.2</myfaces>
+ <tomahawk>1.1.6</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>
+ </modules>
+ </profile>
+ </profiles>
+ <modules>
+ <module>skins</module>
+ <module>laguna</module>
+ <module>glassX</module>
+ <module>darkX</module>
+ <module>richfaces-demo</module>
+ </modules>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/samples/progressBarDemo/pom.xml
===================================================================
--- trunk/samples/progressBarDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/progressBarDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/rich-message-demo/pom.xml
===================================================================
--- trunk/samples/rich-message-demo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/rich-message-demo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/richfaces-art-datatable/pom.xml
===================================================================
--- trunk/samples/richfaces-art-datatable/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/richfaces-art-datatable/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/richfaces-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-demo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/richfaces-demo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -207,22 +207,22 @@
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>laguna</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>glassX</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>darkX</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
Modified: tags/3.2.2.CR1/samples/richfaces-ear-demo/ejb/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/ejb/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/richfaces-ear-demo/ejb/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.2.2.CR1/samples/richfaces-ear-demo/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/richfaces-ear-demo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/richfaces-ear-demo/richfacesEAR/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.2.2.CR1/samples/richfaces-ear-demo/webapp/pom.xml
===================================================================
--- trunk/samples/richfaces-ear-demo/webapp/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/richfaces-ear-demo/webapp/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>richfaces-ear-demo</artifactId>
<groupId>org.richfaces.samples</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples.richfaces-ear-demo</groupId>
Modified: tags/3.2.2.CR1/samples/scrollableDataTableDemo/pom.xml
===================================================================
--- trunk/samples/scrollableDataTableDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/scrollableDataTableDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>scrollableDataTableDemo</artifactId>
Modified: tags/3.2.2.CR1/samples/seamEAR/ear/pom.xml
===================================================================
--- trunk/samples/seamEAR/ear/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/seamEAR/ear/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.2.2.CR1/samples/seamEAR/ejbs/pom.xml
===================================================================
--- trunk/samples/seamEAR/ejbs/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/seamEAR/ejbs/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.2.2.CR1/samples/seamEAR/pom.xml
===================================================================
--- trunk/samples/seamEAR/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/seamEAR/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/seamEAR/primary-source/pom.xml
===================================================================
--- trunk/samples/seamEAR/primary-source/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/seamEAR/primary-source/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<dependencies>
<dependency>
Modified: tags/3.2.2.CR1/samples/seamEAR/projects/logging/pom.xml
===================================================================
--- trunk/samples/seamEAR/projects/logging/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/seamEAR/projects/logging/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -7,6 +7,6 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>projects</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
</project>
Modified: tags/3.2.2.CR1/samples/seamEAR/projects/pom.xml
===================================================================
--- trunk/samples/seamEAR/projects/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/seamEAR/projects/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modules>
<module>logging</module>
Modified: tags/3.2.2.CR1/samples/seamEAR/wars/pom.xml
===================================================================
--- trunk/samples/seamEAR/wars/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/seamEAR/wars/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples</groupId>
<artifactId>seamEAR</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modules>
<module>seamWebapp</module>
Modified: tags/3.2.2.CR1/samples/seamEAR/wars/seamWebapp/pom.xml
===================================================================
--- trunk/samples/seamEAR/wars/seamWebapp/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/seamEAR/wars/seamWebapp/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -7,7 +7,7 @@
<parent>
<groupId>org.richfaces.samples.seamEAR</groupId>
<artifactId>wars</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<build>
<finalName>seamWebapp</finalName>
@@ -22,17 +22,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<scope>provided</scope>
</dependency>
<dependency>
Modified: tags/3.2.2.CR1/samples/seamIntegration/pom.xml
===================================================================
--- trunk/samples/seamIntegration/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/seamIntegration/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -5,7 +5,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/separator-sample/pom.xml
===================================================================
--- trunk/samples/separator-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/separator-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/simpleTogglePanel-sample/pom.xml
===================================================================
--- trunk/samples/simpleTogglePanel-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/simpleTogglePanel-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/skins/pom.xml
===================================================================
--- trunk/samples/skins/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/skins/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/sortingFilteringDemo/pom.xml
===================================================================
--- trunk/samples/sortingFilteringDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/sortingFilteringDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency-->
<dependency>
Modified: tags/3.2.2.CR1/samples/state-sample/pom.xml
===================================================================
--- trunk/samples/state-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/state-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.samples</groupId>
<artifactId>skins</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/samples/stdcomponents-sample/pom.xml
===================================================================
--- trunk/samples/stdcomponents-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/stdcomponents-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/suggestionbox-sample/pom.xml
===================================================================
--- trunk/samples/suggestionbox-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/suggestionbox-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/tabPanelDemo/pom.xml
===================================================================
--- trunk/samples/tabPanelDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/tabPanelDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/togglePanel-sample/pom.xml
===================================================================
--- trunk/samples/togglePanel-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/togglePanel-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/tomahawkCompability/pom.xml
===================================================================
--- trunk/samples/tomahawkCompability/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/tomahawkCompability/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/toolBarDemo/pom.xml
===================================================================
--- trunk/samples/toolBarDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/toolBarDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/tooltip-sample/pom.xml
===================================================================
--- trunk/samples/tooltip-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/tooltip-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3,7 +3,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/tree-demo/pom.xml
===================================================================
--- trunk/samples/tree-demo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/tree-demo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/treeModelDemo/pom.xml
===================================================================
--- trunk/samples/treeModelDemo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/treeModelDemo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/samples/virtualEarth-sample/pom.xml
===================================================================
--- trunk/samples/virtualEarth-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/samples/virtualEarth-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -4,7 +4,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.samples</groupId>
Modified: tags/3.2.2.CR1/sandbox/api/pom.xml
===================================================================
--- trunk/sandbox/api/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/api/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,13 +2,13 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
<name>Richfaces Sandbox API</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<plugins>
<plugin>
@@ -25,12 +25,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.CR1/sandbox/impl/pom.xml
===================================================================
--- trunk/sandbox/impl/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/impl/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,28 +2,28 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
<name>Richfaces Sandbox Implementation</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<dependencies>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.CR1/sandbox/pom.xml
===================================================================
--- trunk/sandbox/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.CR1/sandbox/samples/dialog-window-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/dialog-window-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/samples/dialog-window-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR1/sandbox/samples/editor-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/editor-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/samples/editor-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR1/sandbox/samples/fileUploadPOC/pom.xml
===================================================================
--- trunk/sandbox/samples/fileUploadPOC/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/samples/fileUploadPOC/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.CR1/sandbox/samples/panel2-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/panel2-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/samples/panel2-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR1/sandbox/samples/pom.xml
===================================================================
--- trunk/sandbox/samples/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/samples/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>samples</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR1/sandbox/samples/rex-demo/pom.xml
===================================================================
--- trunk/sandbox/samples/rex-demo/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/samples/rex-demo/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>com.uwyn</groupId>
@@ -193,28 +193,28 @@
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-resizable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-button</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>rex-messageBox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>componentControl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>richfaces-sandbox-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
Modified: tags/3.2.2.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml
===================================================================
--- trunk/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/samples/simpleTogglePanel2-sample/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
Modified: tags/3.2.2.CR1/sandbox/ui/create.bat
===================================================================
--- trunk/sandbox/ui/create.bat 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/ui/create.bat 2008-08-27 23:30:32 UTC (rev 10213)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.2.2-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.2.2.CR1 -DgroupId=org.richfaces.ui -DartifactId=%1
\ No newline at end of file
Modified: tags/3.2.2.CR1/sandbox/ui/dialog-window/pom.xml
===================================================================
--- trunk/sandbox/ui/dialog-window/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/ui/dialog-window/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -39,12 +39,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<scope>provided</scope>
</dependency>
</dependencies>
Modified: tags/3.2.2.CR1/sandbox/ui/editor/pom.xml
===================================================================
--- trunk/sandbox/ui/editor/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/ui/editor/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/sandbox/ui/panel2/pom.xml
===================================================================
--- trunk/sandbox/ui/panel2/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/ui/panel2/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/sandbox/ui/pom.xml
===================================================================
--- trunk/sandbox/ui/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/ui/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -3,7 +3,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
Modified: tags/3.2.2.CR1/sandbox/ui/rex-button/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-button/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/ui/rex-button/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/sandbox/ui/rex-messageBox/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-messageBox/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/ui/rex-messageBox/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -43,7 +43,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/sandbox/ui/rex-resizable/pom.xml
===================================================================
--- trunk/sandbox/ui/rex-resizable/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/ui/rex-resizable/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/sandbox/ui/simpleTogglePanel2/pom.xml
===================================================================
--- trunk/sandbox/ui/simpleTogglePanel2/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/ui/simpleTogglePanel2/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/sandbox/ui/sortableHeader/pom.xml
===================================================================
--- trunk/sandbox/ui/sortableHeader/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/ui/sortableHeader/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces.sandbox</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox.ui</groupId>
<artifactId>sortableHeader</artifactId>
<name>sortableHeader</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -52,17 +52,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/sandbox/ui/treeTable/pom.xml
===================================================================
--- trunk/sandbox/ui/treeTable/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/sandbox/ui/treeTable/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.sandbox</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/test-applications/facelets/pom.xml
===================================================================
--- trunk/test-applications/facelets/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/test-applications/facelets/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR1/test-applications/jsp/pom.xml
===================================================================
--- trunk/test-applications/jsp/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/test-applications/jsp/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: tags/3.2.2.CR1/test-applications/pom.xml
===================================================================
--- trunk/test-applications/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/test-applications/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<relativePath>../samples</relativePath>
</parent>
@@ -50,11 +50,11 @@
<groupId>org.richfaces</groupId>
<artifactId>test-applications</artifactId>
<packaging>pom</packaging>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>RichFaces Test Applications</name>
<properties>
- <rfVersion>3.2.2-SNAPSHOT</rfVersion>
+ <rfVersion>3.2.2.CR1</rfVersion>
</properties>
<modules>
Modified: tags/3.2.2.CR1/test-applications/seam/pom.xml
===================================================================
--- trunk/test-applications/seam/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/test-applications/seam/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -5,7 +5,7 @@
<parent>
<artifactId>test-applications</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.test-applications</groupId>
Modified: tags/3.2.2.CR1/test-applications/seleniumTest/pom.xml
===================================================================
--- trunk/test-applications/seleniumTest/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/test-applications/seleniumTest/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -5,14 +5,14 @@
<parent>
<artifactId>samples</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>seleniumTest</groupId>
<artifactId>seleniumTest</artifactId>
<packaging>war</packaging>
<name>seleniumTest Maven Webapp</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<url>http://maven.apache.org</url>
<properties>
<http.port>8085</http.port>
@@ -278,7 +278,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>javax.faces</groupId>
Modified: tags/3.2.2.CR1/ui/assembly/pom.xml
===================================================================
--- trunk/ui/assembly/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/assembly/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<configuration>
<library>
<prefix>org.richfaces</prefix>
Modified: tags/3.2.2.CR1/ui/beanValidator/pom.xml
===================================================================
--- trunk/ui/beanValidator/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/beanValidator/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -1,70 +1,69 @@
-<?xml version="1.0"?>
-<project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>beanValidator</artifactId>
- <name>beanValidator</name>
- <version>3.2.2-SNAPSHOT</version>
- <build>
- <plugins>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-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.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-validator</artifactId>
- <version>3.1.0.CR1</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 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.2.2.CR1</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>beanValidator</artifactId>
+ <name>beanValidator</name>
+ <version>3.2.2.CR1</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-cdk-plugin</artifactId>
+ <version>3.2.2.CR1</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.2.2.CR1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-validator</artifactId>
+ <version>3.1.0.CR1</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.2.2.CR1/ui/calendar/pom.xml
===================================================================
--- trunk/ui/calendar/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/calendar/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,13 +45,13 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inputnumber-spinner</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/columns/pom.xml
===================================================================
--- trunk/ui/columns/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/columns/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.2.2.CR1/ui/combobox/pom.xml
===================================================================
--- trunk/ui/combobox/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/combobox/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
<name>combobox</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>suggestionbox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.2.2.CR1/ui/componentControl/pom.xml
===================================================================
--- trunk/ui/componentControl/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/componentControl/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/contextMenu/pom.xml
===================================================================
--- trunk/ui/contextMenu/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/contextMenu/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>contextMenu</artifactId>
<name>contextMenu</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/core/pom.xml
===================================================================
--- trunk/ui/core/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/core/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/create.bat
===================================================================
--- trunk/ui/create.bat 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/create.bat 2008-08-27 23:30:32 UTC (rev 10213)
@@ -1 +1 @@
-mvn archetype:create -DarchetypeGroupId=org.richfaces.cdk -DarchetypeArtifactId=maven-archetype-jsf-component -DarchetypeVersion=3.2.2-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.2.2.CR1 -DgroupId=org.richfaces -DartifactId=%1
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/dataFilterSlider/pom.xml
===================================================================
--- trunk/ui/dataFilterSlider/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/dataFilterSlider/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/dataTable/pom.xml
===================================================================
--- trunk/ui/dataTable/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/dataTable/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.2.2.CR1/ui/datascroller/pom.xml
===================================================================
--- trunk/ui/datascroller/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/datascroller/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/drag-drop/pom.xml
===================================================================
--- trunk/ui/drag-drop/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/drag-drop/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
-->
</dependencies>
Modified: tags/3.2.2.CR1/ui/dropdown-menu/pom.xml
===================================================================
--- trunk/ui/dropdown-menu/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/dropdown-menu/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,12 +44,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>menu-components</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/effect/pom.xml
===================================================================
--- trunk/ui/effect/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/effect/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/extendedDataTable/pom.xml
===================================================================
--- trunk/ui/extendedDataTable/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/extendedDataTable/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -1,35 +1,35 @@
-<?xml version="1.0"?><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>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-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.2.2-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.2.2.CR1</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.2.2.CR1</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.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>drag-drop</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>dataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>richfaces-impl</artifactId>
+ <version>3.2.2.CR1</version>
</dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>menu-components</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>contextMenu</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>jQuery</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>componentControl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
-
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>scrollableDataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
- </dependency>
- </dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>drag-drop</artifactId>
+ <version>3.2.2.CR1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>dataTable</artifactId>
+ <version>3.2.2.CR1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>menu-components</artifactId>
+ <version>3.2.2.CR1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>contextMenu</artifactId>
+ <version>3.2.2.CR1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>jQuery</artifactId>
+ <version>3.2.2.CR1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>componentControl</artifactId>
+ <version>3.2.2.CR1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>scrollableDataTable</artifactId>
+ <version>3.2.2.CR1</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/fileUpload/pom.xml
===================================================================
--- trunk/ui/fileUpload/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/fileUpload/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>fileUpload</artifactId>
<name>fileUpload</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,12 +51,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/functions/pom.xml
===================================================================
--- trunk/ui/functions/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/functions/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/gmap/pom.xml
===================================================================
--- trunk/ui/gmap/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/gmap/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/hotKey/pom.xml
===================================================================
--- trunk/ui/hotKey/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/hotKey/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -1,56 +1,56 @@
-<?xml version="1.0"?><project>
- <parent>
- <artifactId>ui</artifactId>
- <groupId>org.richfaces</groupId>
- <version>3.2.2-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.2.2-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.2.2-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<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.2.2.CR1</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.2.2.CR1</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.2.2.CR1</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/inplaceInput/pom.xml
===================================================================
--- trunk/ui/inplaceInput/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/inplaceInput/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
<name>inplaceInput</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,17 +51,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/inplaceSelect/pom.xml
===================================================================
--- trunk/ui/inplaceSelect/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/inplaceSelect/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceSelect</artifactId>
<name>inplaceSelect</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -51,22 +51,22 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>combobox</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>inplaceInput</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.2.2.CR1/ui/inputnumber-slider/pom.xml
===================================================================
--- trunk/ui/inputnumber-slider/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/inputnumber-slider/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/inputnumber-spinner/pom.xml
===================================================================
--- trunk/ui/inputnumber-spinner/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/inputnumber-spinner/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.2.2.CR1/ui/insert/pom.xml
===================================================================
--- trunk/ui/insert/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/insert/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/jQuery/pom.xml
===================================================================
--- trunk/ui/jQuery/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/jQuery/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/listShuttle/pom.xml
===================================================================
--- trunk/ui/listShuttle/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/listShuttle/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
Modified: tags/3.2.2.CR1/ui/menu-components/pom.xml
===================================================================
--- trunk/ui/menu-components/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/menu-components/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/message/pom.xml
===================================================================
--- trunk/ui/message/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/message/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>message</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<name>Message</name>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/modal-panel/pom.xml
===================================================================
--- trunk/ui/modal-panel/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/modal-panel/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/orderingList/pom.xml
===================================================================
--- trunk/ui/orderingList/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/orderingList/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/paint2D/pom.xml
===================================================================
--- trunk/ui/paint2D/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/paint2D/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/panel/pom.xml
===================================================================
--- trunk/ui/panel/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/panel/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/panelbar/pom.xml
===================================================================
--- trunk/ui/panelbar/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/panelbar/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/panelmenu/pom.xml
===================================================================
--- trunk/ui/panelmenu/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/panelmenu/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/pickList/pom.xml
===================================================================
--- trunk/ui/pickList/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/pickList/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>pickList</artifactId>
<name>pickList</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -53,26 +53,26 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-api</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>listShuttle</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>orderingList</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
Modified: tags/3.2.2.CR1/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>root</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
@@ -142,12 +142,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-test</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<scope>test</scope>
</dependency>
<dependency>
Modified: tags/3.2.2.CR1/ui/progressBAR/pom.xml
===================================================================
--- trunk/ui/progressBAR/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/progressBAR/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.ui</groupId>
<artifactId>progressBar</artifactId>
<name>progressBar</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/scrollableDataTable/pom.xml
===================================================================
--- trunk/ui/scrollableDataTable/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/scrollableDataTable/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -70,17 +70,17 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>dataTable</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>core</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/separator/pom.xml
===================================================================
--- trunk/ui/separator/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/separator/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
Modified: tags/3.2.2.CR1/ui/simpleTogglePanel/pom.xml
===================================================================
--- trunk/ui/simpleTogglePanel/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/simpleTogglePanel/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/spacer/pom.xml
===================================================================
--- trunk/ui/spacer/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/spacer/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/state/pom.xml
===================================================================
--- trunk/ui/state/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/state/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -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.2.2-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.2.2-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.2.2-SNAPSHOT</version>
- </dependency>
- </dependencies>
+<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.2.2.CR1</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.2.2.CR1</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.2.2.CR1</version>
+ </dependency>
+ </dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/suggestionbox/pom.xml
===================================================================
--- trunk/ui/suggestionbox/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/suggestionbox/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/tabPanel/pom.xml
===================================================================
--- trunk/ui/tabPanel/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/tabPanel/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/togglePanel/pom.xml
===================================================================
--- trunk/ui/togglePanel/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/togglePanel/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/toolBar/pom.xml
===================================================================
--- trunk/ui/toolBar/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/toolBar/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/tooltip/pom.xml
===================================================================
--- trunk/ui/tooltip/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/tooltip/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -44,7 +44,7 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/tree/pom.xml
===================================================================
--- trunk/ui/tree/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/tree/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>drag-drop</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/treeModel/pom.xml
===================================================================
--- trunk/ui/treeModel/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/treeModel/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<id>generate-sources</id>
@@ -45,12 +45,12 @@
<dependency>
<groupId>org.richfaces.framework</groupId>
<artifactId>richfaces-impl</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
<dependency>
<groupId>org.richfaces.ui</groupId>
<artifactId>tree</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
Modified: tags/3.2.2.CR1/ui/treeTable/pom.xml
===================================================================
--- trunk/ui/treeTable/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/treeTable/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,19 +2,19 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>treeTable</artifactId>
<name>treeTable</name>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<build>
<plugins>
<plugin>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
Modified: tags/3.2.2.CR1/ui/virtualEarth/pom.xml
===================================================================
--- trunk/ui/virtualEarth/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
+++ tags/3.2.2.CR1/ui/virtualEarth/pom.xml 2008-08-27 23:30:32 UTC (rev 10213)
@@ -2,7 +2,7 @@
<parent>
<artifactId>ui</artifactId>
<groupId>org.richfaces</groupId>
- <version>3.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</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.2.2-SNAPSHOT</version>
+ <version>3.2.2.CR1</version>
<executions>
<execution>
<phase>generate-sources</phase>
16 years, 4 months
JBoss Rich Faces SVN: r10212 - trunk/ui.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-08-27 17:51:09 -0400 (Wed, 27 Aug 2008)
New Revision: 10212
Modified:
trunk/ui/pom.xml
Log:
Temporary ignore test failures
Modified: trunk/ui/pom.xml
===================================================================
--- trunk/ui/pom.xml 2008-08-27 17:07:59 UTC (rev 10211)
+++ trunk/ui/pom.xml 2008-08-27 21:51:09 UTC (rev 10212)
@@ -30,6 +30,13 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <testFailureIgnore>true</testFailureIgnore>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
16 years, 4 months
JBoss Rich Faces SVN: r10211 - trunk/docs/userguide/en/src/main/docbook/included.
by richfaces-svn-commits@lists.jboss.org
Author: atsebro
Date: 2008-08-27 13:07:59 -0400 (Wed, 27 Aug 2008)
New Revision: 10211
Modified:
trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.desc.xml
trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.xml
Log:
RF-4131:extendedDataTable-Documenting
Modified: trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.desc.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.desc.xml 2008-08-27 16:51:11 UTC (rev 10210)
+++ trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.desc.xml 2008-08-27 17:07:59 UTC (rev 10211)
@@ -7,34 +7,63 @@
>
<section>
- <sectioninfo>
- <keywordset>
- <keyword>&extDataTable;</keyword>
- </keywordset>
- </sectioninfo>
- <section>
- <title>Description</title>
- <para>The component for tables extending standard component <emphasis role="bold">
- <property><rich:dataTable></property>
- </emphasis>.</para>
- <figure>
- <title><emphasis role="bold"><property><&extDataTable;></property></emphasis> component</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/extendedDataTable_init.png" width="75%"/>
- </imageobject>
- </mediaobject>
- </figure>
- </section>
- <section>
- <title>Key Features</title>
- <itemizedlist>
- <listitem><para>Possibility to scroll data</para></listitem>
- <listitem><para>Possibility to add an attribute to set the kind of selection (none, single line or multiple lines)</para></listitem>
- <listitem><para>Possibility to change the sequence of the displayed columns by dragging the column-header to another position</para></listitem>
- <listitem><para>Possibility to show or hide columns by selecting or deselecting them in a context menu</para></listitem>
- <listitem><para>Possibility to save the current settings (visible columns, column width, sequence of the columns) to be reused the next time the page will be shown</para></listitem>
- <listitem><para>Possibility to combine rows to groups</para></listitem>
- </itemizedlist>
- </section>
-</section>
\ No newline at end of file
+ <sectioninfo>
+ <keywordset>
+ <keyword>&extDataTable;</keyword>
+ </keywordset>
+ </sectioninfo>
+ <section>
+ <title>Description</title>
+ <note>
+ <title>Note:</title>
+ <para>The component is released with "Preview" marker</para>
+ </note>
+ <para>The component for tables extending standard component <emphasis
+ role="bold">
+ <property><rich:dataTable></property>
+ </emphasis>.</para>
+ <figure>
+ <title><emphasis role="bold">
+ <property><&extDataTable;></property>
+ </emphasis> component</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata
+ fileref="images/extendedDataTable_init.png"
+ width="75%"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+ <section>
+ <title>Key Features</title>
+ <itemizedlist>
+ <listitem>
+ <para>Possibility to scroll data</para>
+ </listitem>
+ <listitem>
+ <para>Possibility to add an attribute to set the kind of
+ selection (none, single line or multiple
+ lines)</para>
+ </listitem>
+ <listitem>
+ <para>Possibility to change the sequence of the displayed
+ columns by dragging the column-header to another
+ position</para>
+ </listitem>
+ <listitem>
+ <para>Possibility to show or hide columns by selecting or
+ deselecting them in a context menu</para>
+ </listitem>
+ <listitem>
+ <para>Possibility to save the current settings (visible
+ columns, column width, sequence of the columns) to
+ be reused the next time the page will be
+ shown</para>
+ </listitem>
+ <listitem>
+ <para>Possibility to combine rows to groups</para>
+ </listitem>
+ </itemizedlist>
+ </section>
+</section>
Modified: trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.xml
===================================================================
--- trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.xml 2008-08-27 16:51:11 UTC (rev 10210)
+++ trunk/docs/userguide/en/src/main/docbook/included/extendedDataTable.xml 2008-08-27 17:07:59 UTC (rev 10211)
@@ -6,56 +6,56 @@
>
<section>
- <sectioninfo>
- <keywordset>
- <keyword>table</keyword>
- <keyword>&extDataTable;</keyword>
- <keyword>HtmlDataTable</keyword>
- </keywordset>
- </sectioninfo>
+ <sectioninfo>
+ <keywordset>
+ <keyword>table</keyword>
+ <keyword>&extDataTable;</keyword>
+ <keyword>HtmlDataTable</keyword>
+ </keywordset>
+ </sectioninfo>
- <table>
- <title>Component identification parameters </title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Name</entry>
- <entry>Value</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>component-type</entry>
- <entry>org.richfaces.ExtendedDataTable</entry>
- </row>
- <row>
- <entry>component-class</entry>
- <entry>org.richfaces.component.html.HtmlExtendedDataTable</entry>
- </row>
- <row>
- <entry>component-family</entry>
- <entry>org.richfaces.ExtendedDataTable</entry>
- </row>
- <row>
- <entry>renderer-type</entry>
- <entry>org.richfaces.ExtendedDataTableRenderer</entry>
- </row>
- <row>
- <entry>tag-class</entry>
- <entry>org.richfaces.taglib.ExtendedDataTableTag</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
-
- <section>
- <title>Creating the Component with a Page Tag</title>
- <para>Here is a simple example as it could be used on a page:</para>
+ <table>
+ <title>Component identification parameters </title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Name</entry>
+ <entry>Value</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>component-type</entry>
+ <entry>org.richfaces.ExtendedDataTable</entry>
+ </row>
+ <row>
+ <entry>component-class</entry>
+ <entry>org.richfaces.component.html.HtmlExtendedDataTable</entry>
+ </row>
+ <row>
+ <entry>component-family</entry>
+ <entry>org.richfaces.ExtendedDataTable</entry>
+ </row>
+ <row>
+ <entry>renderer-type</entry>
+ <entry>org.richfaces.ExtendedDataTableRenderer</entry>
+ </row>
+ <row>
+ <entry>tag-class</entry>
+ <entry>org.richfaces.taglib.ExtendedDataTableTag</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
+ <section>
+ <title>Creating the Component with a Page Tag</title>
+ <para>Here is a simple example as it could be used on a page:</para>
+
+ <para>
+ <emphasis role="bold">Example:</emphasis>
+ </para>
+ <programlisting role="XML"><![CDATA[...
<rich:extendedDataTable value="#{extendedDT.dataModel}" var="edt">
<rich:column>
...
@@ -63,39 +63,42 @@
</rich:extendedDataTable>
...
]]></programlisting>
- </section>
- <section>
- <title>Creating the Component Dynamically from Java</title>
+ </section>
+ <section>
+ <title>Creating the Component Dynamically from Java</title>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="JAVA"><![CDATA[import org.richfaces.component.html.HtmlExtendedDataTable;
+ <para>
+ <emphasis role="bold">Example:</emphasis>
+ </para>
+ <programlisting role="JAVA"><![CDATA[import org.richfaces.component.html.HtmlExtendedDataTable;
...
HtmlExtendedDataTable myTable = new HtmlExtendedDataTable();
...
]]></programlisting>
- </section>
- <section>
- <title>Details of Usage</title>
- <para>The <emphasis role="bold">
- <property><&extDataTable;></property>
- </emphasis> component is similar to the <emphasis role="bold">
- <property><rich:dataTable></property>
- </emphasis>. The data in component is scrollable. You can also set the type of selection (<emphasis>
- <property>"none",</property>
- </emphasis> <emphasis>
- <property>"single"</property>
- </emphasis> or <emphasis>
- <property>"multi"</property>
- </emphasis> lines). Selection of multiple lines is possible using Shift and Ctrl keys.</para>
-
- <para>Here is an example:</para>
+ </section>
+ <section>
+ <title>Details of Usage</title>
+ <para>The <emphasis role="bold">
+ <property><&extDataTable;></property>
+ </emphasis> component is similar to the <emphasis role="bold">
+ <property><rich:dataTable></property>
+ </emphasis>. The data in component is scrollable. You can also set the
+ type of selection (<emphasis>
+ <property>"none",</property>
+ </emphasis>
+ <emphasis>
+ <property>"single"</property>
+ </emphasis> or <emphasis>
+ <property>"multi"</property>
+ </emphasis> lines). Selection of multiple lines is possible using
+ Shift and Ctrl keys.</para>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
+ <para>Here is an example:</para>
+
+ <para>
+ <emphasis role="bold">Example:</emphasis>
+ </para>
+ <programlisting role="XML"><![CDATA[...
<rich:extendedDataTable id="edt" value="#{extendedDT.dataModel}"
var="edt" width="500px" height="500px"
selectedClass="dataTableSelectedRow"
@@ -147,109 +150,116 @@
...
]]></programlisting>
- <figure>
- <title><emphasis role="bold">
- <property><&extDataTable;></property>
- </emphasis> component with selected multiple lines</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/extendedDataTable_multiselect.png" width="75%"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>Information about sorting and filtering can be found <link linkend="sort">here</link>.</para>
-
- <para> In the example <emphasis>
- <property>"selection"</property>
- </emphasis> attribute contains object with selected rows.
- </para>
-
- <note><title>Note:</title><para>
- Attribute<emphasis>
- <property>"height"</property>
- </emphasis>is mandatory. The default value is <emphasis>
- <property>"500px"</property>
- </emphasis>.
- </para></note>
-
- <para>
- Menu on the right side of the column header is used to perform action: sorting, grouping, hiding columns.
- </para>
-
- <para>This is an example:</para>
-
- <figure>
- <title>Column menu</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/extendedDataTable_actions.png" width="50%"/>
- </imageobject>
- </mediaobject>
- </figure>
-
- <para>
- After selecting a "Group by this column" option, you can see the data grouped. You can collapse and expand groups by clicking on a group header.
- </para>
-
- <para>This is an example:</para>
-
- <figure>
- <title><emphasis role="bold">
- <property><&extDataTable;></property>
- </emphasis> component with grouped data</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/extendedDataTable_grouped.png" width="75%"/>
- </imageobject>
- </mediaobject>
- </figure>
-
- <para>
- The <emphasis>
- <property>"label"</property>
- </emphasis> attribute in <emphasis role="bold">
- <property><rich:column></property>
- </emphasis> sets the name of the column, which is used when dragging columns (in drag window) and in context menu, in "Columns" submenu.
- </para>
-
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
- <programlisting role="XML"><![CDATA[...
+ <figure>
+ <title><emphasis role="bold">
+ <property><&extDataTable;></property>
+ </emphasis> component with selected multiple lines</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata
+ fileref="images/extendedDataTable_init2.png"
+ width="75%"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>Information about sorting and filtering can be found <link linkend="sort"
+ >here</link>.</para>
+
+ <para> In the example <emphasis>
+ <property>"selection"</property>
+ </emphasis> attribute contains object with selected rows. </para>
+
+ <note>
+ <title>Note:</title>
+ <para> Attribute<emphasis>
+ <property>"height"</property>
+ </emphasis>is mandatory. The default value is <emphasis>
+ <property>"500px"</property>
+ </emphasis>. </para>
+ </note>
+
+ <para> Menu on the right side of the column header is used to perform action:
+ sorting, grouping, hiding columns. </para>
+
+ <para>This is an example:</para>
+
+ <figure>
+ <title>Column menu</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata
+ fileref="images/extendedDataTable_init3.png"
+ width="50%"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para> After selecting a "Group by this column" option, you can see the data
+ grouped. You can collapse and expand groups by clicking on a group
+ header. </para>
+
+ <para>This is an example:</para>
+
+ <figure>
+ <title><emphasis role="bold">
+ <property><&extDataTable;></property>
+ </emphasis> component with grouped data</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata
+ fileref="images/extendedDataTable_4.png"
+ width="75%"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para> The <emphasis>
+ <property>"label"</property>
+ </emphasis> attribute in <emphasis role="bold">
+ <property><rich:column></property>
+ </emphasis> sets the name of the column, which is used when dragging
+ columns (in drag window) and in context menu, in "Columns" submenu. </para>
+
+ <para>
+ <emphasis role="bold">Example:</emphasis>
+ </para>
+ <programlisting role="XML"><![CDATA[...
<rich:column id="name"
label="#{msg['name']}"
...>
]]></programlisting>
-
- <figure>
- <title><emphasis role="bold">
- <property><&extDataTable;></property>
- </emphasis> component with Drag&Drop column 'Name'</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/extendedDataTable_DD.png" width="75%"/>
- </imageobject>
- </mediaobject>
- </figure>
-
- <para>
- In the component <emphasis role="bold">
- <property><&extDataTable;></property>
- </emphasis> columns can hidden:
- </para>
-
- <figure>
- <title><emphasis role="bold">
- <property><&extDataTable;></property>
- </emphasis> component with hidden column 'Id' and 'Group'</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/extendedDataTable_hideCol.png" width="75%"/>
- </imageobject>
- </mediaobject>
- </figure>
-
- <!-- <para>
+
+ <figure>
+ <title><emphasis role="bold">
+ <property><&extDataTable;></property>
+ </emphasis> component with Drag&Drop column 'Name'</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata
+ fileref="images/extendedDataTable_5.png"
+ width="75%"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para> In the component <emphasis role="bold">
+ <property><&extDataTable;></property>
+ </emphasis> columns can hidden: </para>
+
+ <figure>
+ <title><emphasis role="bold">
+ <property><&extDataTable;></property>
+ </emphasis> component with hidden column 'Id' and 'Group'</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata
+ fileref="images/extendedDataTable_6.png"
+ width="75%"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <!-- <para>
For each column can be set the filter.
</para>
@@ -272,303 +282,325 @@
</imageobject>
</mediaobject>
</figure>
- -->
- <para><emphasis>
- <property>"tableState"</property>
- </emphasis> attribute can be used to bind state of the table (column width, column position, visible, sequence, grouping...)
- to a backing-bean string property, for a later used. This state can be for example saved to a database, and it is different
- form standard JSF state saving mechanisms.</para>
+ -->
+ <para><emphasis>
+ <property>"tableState"</property>
+ </emphasis> attribute can be used to bind state of the table (column
+ width, column position, visible, sequence, grouping...) to a
+ backing-bean string property, for a later used. This state can be for
+ example saved to a database, and it is different form standard JSF
+ state saving mechanisms.</para>
- <para>
- <emphasis role="bold">Example:</emphasis>
- </para>
+ <para>
+ <emphasis role="bold">Example:</emphasis>
+ </para>
- <programlisting role="XML"><![CDATA[...
+ <programlisting role="XML"><![CDATA[...
tableState="#{extendedDT.tableState}"
...
]]></programlisting>
-
-
- </section>
- <section>
- <title>Look-and-Feel Customization</title>
- <para>For skinnability implementation, the components use a <emphasis>
- <property>style class redefinition method.</property>
- </emphasis> Default style classes are mapped on <emphasis>
- <property>skin parameters.</property>
- </emphasis></para>
- <para>There are two ways to redefine the appearance of all <emphasis role="bold">
- <property><&extDataTable;></property>
- </emphasis> components at once:</para>
+ </section>
+ <section>
+ <title>Look-and-Feel Customization</title>
- <itemizedlist>
- <listitem>
- <para>Redefine the corresponding skin parameters</para>
- </listitem>
+ <para>For skinnability implementation, the components use a <emphasis>
+ <property>style class redefinition method.</property>
+ </emphasis> Default style classes are mapped on <emphasis>
+ <property>skin parameters.</property>
+ </emphasis></para>
- <listitem>
- <para>Add to your style sheets <emphasis>
- <property>style classes</property>
- </emphasis> used by a <emphasis role="bold">
- <property><&extDataTable;></property>
- </emphasis> component</para>
- </listitem>
- </itemizedlist>
- </section>
+ <para>There are two ways to redefine the appearance of all <emphasis role="bold">
+ <property><&extDataTable;></property>
+ </emphasis> components at once:</para>
- <section id="ExtSPR">
- <title>Skin Parameters Redefinition</title>
+ <itemizedlist>
+ <listitem>
+ <para>Redefine the corresponding skin parameters</para>
+ </listitem>
- <table>
- <title>Skin parameters redefinition for a table</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Skin parameters</entry>
- <entry>CSS properties</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>tableBackgroundColor</entry>
- <entry>background-color</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
+ <listitem>
+ <para>Add to your style sheets <emphasis>
+ <property>style classes</property>
+ </emphasis> used by a <emphasis role="bold">
+ <property><&extDataTable;></property>
+ </emphasis> component</para>
+ </listitem>
+ </itemizedlist>
+ </section>
- <table>
- <title>Skin parameters redefinition for a header</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Skin parameters</entry>
- <entry>CSS properties</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>headerBackgroundColor</entry>
- <entry>background-color</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
+ <section id="ExtSPR">
+ <title>Skin Parameters Redefinition</title>
- <table>
- <title>Skin parameters redefinition for a footer</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Skin parameters</entry>
- <entry>CSS properties</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>tableFooterBackgroundColor</entry>
- <entry>background-color</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
+ <table>
+ <title>Skin parameters redefinition for a table</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>tableBackgroundColor</entry>
+ <entry>background-color</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
- <table>
- <title>Skin parameters redefinition for a column header</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Skin parameters</entry>
- <entry>CSS properties</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>additionalBackgroundColor</entry>
- <entry>background-color</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
+ <table>
+ <title>Skin parameters redefinition for a header</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>headerBackgroundColor</entry>
+ <entry>background-color</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
- <table>
- <title>Skin parameters redefinition for a column footer</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Skin parameters</entry>
- <entry>CSS properties</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>tableSubfooterBackgroundColor</entry>
- <entry>background-color</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
+ <table>
+ <title>Skin parameters redefinition for a footer</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>tableFooterBackgroundColor</entry>
+ <entry>background-color</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
- <table>
- <title>Skin parameters redefinition for cells</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Skin parameters</entry>
- <entry>CSS properties</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>generalSizeFont</entry>
- <entry>font-size</entry>
- </row>
- <row>
- <entry>generalTextColor</entry>
- <entry>color</entry>
- </row>
- <row>
- <entry>generalFamilyFont</entry>
- <entry>font-family</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
+ <table>
+ <title>Skin parameters redefinition for a column header</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>additionalBackgroundColor</entry>
+ <entry>background-color</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
- </section>
+ <table>
+ <title>Skin parameters redefinition for a column footer</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>tableSubfooterBackgroundColor</entry>
+ <entry>background-color</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
- <section id="ExtDofCCS">
- <title>Definition of Custom Style Classes</title>
+ <table>
+ <title>Skin parameters redefinition for cells</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Skin parameters</entry>
+ <entry>CSS properties</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>generalSizeFont</entry>
+ <entry>font-size</entry>
+ </row>
+ <row>
+ <entry>generalTextColor</entry>
+ <entry>color</entry>
+ </row>
+ <row>
+ <entry>generalFamilyFont</entry>
+ <entry>font-family</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
- <para>On the screenshot there are classes names that define styles for component elements.</para>
+ </section>
- <figure>
- <title><emphasis role="bold"><property><&extDataTable;></property></emphasis> class names</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/extendedDataTable_cn.png" width="100%"/>
- </imageobject>
- </mediaobject>
- </figure>
+ <section id="ExtDofCCS">
+ <title>Definition of Custom Style Classes</title>
- <table id="ExtdTC">
- <title>Classes names that define a whole component appearance</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Class name</entry>
- <entry>Description</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>rich-extdt</entry>
- <entry>Defines styles for all table</entry>
- </row>
- <row>
- <entry>rich-extdt-caption</entry>
- <entry>Defines styles for a "caption" facet element</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
+ <para>On the screenshot there are classes names that define styles for component
+ elements.</para>
- <table>
- <title>Classes names that define header and footer elements</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Class name</entry>
- <entry>Description</entry>
- </row>
- </thead>
- <tbody>
+ <figure>
+ <title><emphasis role="bold">
+ <property><&extDataTable;></property>
+ </emphasis> class names</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata
+ fileref="images/extendedDataTable_cn.png"
+ width="100%"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
- <row>
- <entry>rich-extdt-header</entry>
- <entry>Defines styles for a table header row</entry>
- </row>
+ <table id="ExtdTC">
+ <title>Classes names that define a whole component appearance</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Class name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>rich-extdt</entry>
+ <entry>Defines styles for all
+ table</entry>
+ </row>
+ <row>
+ <entry>rich-extdt-caption</entry>
+ <entry>Defines styles for a
+ "caption"
+ facet element</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
- <row>
- <entry>rich-extdt-header-continue</entry>
- <entry>Defines styles for all header lines after the first</entry>
- </row>
- <row>
- <entry>rich-extdt-subheader</entry>
- <entry>Defines styles for a column header</entry>
- </row>
+ <table>
+ <title>Classes names that define header and footer elements</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Class name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
- <row>
- <entry>rich-extdt-footer</entry>
- <entry>Defines styles for a footer row</entry>
- </row>
+ <row>
+ <entry>rich-extdt-header</entry>
+ <entry>Defines styles for a table header
+ row</entry>
+ </row>
- <row>
- <entry>rich-extdt-footer-continue</entry>
- <entry>Defines styles for all footer lines after the first</entry>
- </row>
- <row>
- <entry>rich-extdt-subfooter</entry>
- <entry>Defines styles for a column footer</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
+ <row>
+ <entry>rich-extdt-header-continue</entry>
+ <entry>Defines styles for all header
+ lines after the first</entry>
+ </row>
+ <row>
+ <entry>rich-extdt-subheader</entry>
+ <entry>Defines styles for a column
+ header</entry>
+ </row>
- <table>
- <title>Classes names that define rows and cells of a table</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Class name</entry>
- <entry>Description</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry>rich-extdt-headercell</entry>
- <entry>Defines styles for a header cell</entry>
- </row>
+ <row>
+ <entry>rich-extdt-footer</entry>
+ <entry>Defines styles for a footer
+ row</entry>
+ </row>
- <row>
- <entry>rich-extdt-subheadercell</entry>
- <entry>Defines styles for a column header cell</entry>
- </row>
- <row>
- <entry>rich-extdt-cell</entry>
- <entry>Defines styles for a table cell</entry>
- </row>
- <row>
- <entry>rich-extdt-row</entry>
- <entry>Defines styles for a table row</entry>
- </row>
- <row>
- <entry>rich-extdt-firstrow</entry>
- <entry>Defines styles for a table start row</entry>
- </row>
+ <row>
+ <entry>rich-extdt-footer-continue</entry>
+ <entry>Defines styles for all footer
+ lines after the first</entry>
+ </row>
+ <row>
+ <entry>rich-extdt-subfooter</entry>
+ <entry>Defines styles for a column
+ footer</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
- <row>
- <entry>rich-extdt-footercell</entry>
- <entry>Defines styles for a footer cell</entry>
- </row>
+ <table>
+ <title>Classes names that define rows and cells of a table</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Class name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry>rich-extdt-headercell</entry>
+ <entry>Defines styles for a header
+ cell</entry>
+ </row>
- <row>
- <entry>rich-extdt-subfootercell</entry>
- <entry>Defines styles for a column footer cell</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
+ <row>
+ <entry>rich-extdt-subheadercell</entry>
+ <entry>Defines styles for a column
+ header cell</entry>
+ </row>
+ <row>
+ <entry>rich-extdt-cell</entry>
+ <entry>Defines styles for a table
+ cell</entry>
+ </row>
+ <row>
+ <entry>rich-extdt-row</entry>
+ <entry>Defines styles for a table
+ row</entry>
+ </row>
+ <row>
+ <entry>rich-extdt-firstrow</entry>
+ <entry>Defines styles for a table start
+ row</entry>
+ </row>
- <para> An example of use the styles for component <emphasis role="bold">
- <property><&extDataTable;></property>
- </emphasis> is similar to
- <emphasis role="bold">
- <property><rich:dataTable></property>
- </emphasis>
- </para>
-
- </section>
+ <row>
+ <entry>rich-extdt-footercell</entry>
+ <entry>Defines styles for a footer
+ cell</entry>
+ </row>
+
+ <row>
+ <entry>rich-extdt-subfootercell</entry>
+ <entry>Defines styles for a column
+ footer cell</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <para> An example of use the styles for component <emphasis role="bold">
+ <property><&extDataTable;></property>
+ </emphasis> is similar to <emphasis role="bold">
+ <property><rich:dataTable></property>
+ </emphasis>
+ </para>
+
+ </section>
</section>
16 years, 4 months
JBoss Rich Faces SVN: r10209 - trunk/ui/tree/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2008-08-27 11:54:59 -0400 (Wed, 27 Aug 2008)
New Revision: 10209
Modified:
trunk/ui/tree/src/main/resources/org/richfaces/renderkit/html/scripts/tree-item.js
Log:
RF-4299
Modified: trunk/ui/tree/src/main/resources/org/richfaces/renderkit/html/scripts/tree-item.js
===================================================================
--- trunk/ui/tree/src/main/resources/org/richfaces/renderkit/html/scripts/tree-item.js 2008-08-27 14:31:10 UTC (rev 10208)
+++ trunk/ui/tree/src/main/resources/org/richfaces/renderkit/html/scripts/tree-item.js 2008-08-27 15:54:59 UTC (rev 10209)
@@ -257,9 +257,7 @@
if (handleElt) {
handleElt.onclick();
}
- }
-
- if (this.hasChilds() && !this.isCollapsed()) {
+ } else if (this.hasChilds() && !this.isCollapsed()) {
Element.hide(this.elements.childrenRow);
Element.hide(this.elements.handleImgExpanded);
Element.show(this.elements.handleImgCollapsed);
@@ -268,9 +266,8 @@
Element.removeClassName(eIcon, Tree.CLASS_ITEM_EXPANDED);
Element.addClassName(eIcon, Tree.CLASS_ITEM_COLLAPSED);
}
+ this.fireCollapsionEvent();
}
-
- this.fireCollapsionEvent();
},
expand: function() {
@@ -279,9 +276,7 @@
if (handleElt) {
handleElt.onclick();
}
- }
-
- if (this.hasChilds() && this.isCollapsed()) {
+ } else if (this.hasChilds() && this.isCollapsed()) {
Element.show(this.elements.childrenRow);
Element.show(this.elements.handleImgExpanded);
Element.hide(this.elements.handleImgCollapsed);
@@ -290,9 +285,8 @@
Element.removeClassName(eIcon, Tree.CLASS_ITEM_COLLAPSED);
Element.addClassName(eIcon, Tree.CLASS_ITEM_EXPANDED);
}
+ this.fireExpansionEvent();
}
-
- this.fireExpansionEvent();
},
isCollapsed: function() {
16 years, 4 months
JBoss Rich Faces SVN: r10208 - in trunk/samples/richfaces-demo/src/main/webapp/richfaces: hotKey and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: smukhina
Date: 2008-08-27 10:31:10 -0400 (Wed, 27 Aug 2008)
New Revision: 10208
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/ajaxAttributes/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/hotKey/usage.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml
Log:
https://jira.jboss.org/jira/browse/RF-398- text on demo site is corrected
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/ajaxAttributes/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/ajaxAttributes/usage.xhtml 2008-08-27 13:48:09 UTC (rev 10207)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/ajaxAttributes/usage.xhtml 2008-08-27 14:31:10 UTC (rev 10208)
@@ -152,10 +152,10 @@
</p>
<p>
<b>process</b> attribute allows you to define the components to be processed
- additionally with the component which is marked as ajaxSingle or wrapped to region.
+ additionally with the component which is marked as ajaxSingle or wrapped to a region.
Imagine you need to process only two fields in the different parts of view.
- If you wrap the first to region or make nested support component ajaxSingle -
- the second component will not be processed. And if you do not define the first component
+ If you wrap the first to a region or make nested support component ajaxSingle -
+ the second component will not be processed and if you do not define the first component
in this way - all the view will be processed. In this case the next simple constructions
should be used:
</p>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/hotKey/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/hotKey/usage.xhtml 2008-08-27 13:48:09 UTC (rev 10207)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/hotKey/usage.xhtml 2008-08-27 14:31:10 UTC (rev 10208)
@@ -15,17 +15,17 @@
<p>
Main component attributes are:
</p>
- <ul>
- <li><b>key</b> - hot key definition <i>("up", "ctrl+a", etc...)</i></li>
+ <ul>
+ <li><b>key</b> - hot key definition <i>("up", "ctrl+a", etc...)</i></li>
<li><b>handler</b> - defines callback function for this hotKey</li>
<li>
<b>selector</b> - JQuerry selector, defines elements which will process
defined hotKey(<i>html[0] by default</i>)
</li>
- </ul>
+ </ul>
<p>
First example shows you simple <b>hotKey </b>components usage. In order to enlarge
- or reduce image size - press <i>CTRL + Up/Down</i> combinations. And in order to
+ or reduce image size - press <i>CTRL + Up/Down</i> combinations. and in order to
browse between images - use <i>CTRL + left/right</i> keys.
</p>
<fieldset class="demo_fieldset">
@@ -38,8 +38,8 @@
</div>
</fieldset>
<p>
- In next example we've used <b>selector</b> atribute. So the keys will works
- only if listShuttle component focused.
+ In next example we've used <b>selector</b> attribute. Hence the keys will work
+ only if listShuttle component is focused.
</p>
<p>
Press <i>right</i> or <i>left</i> keys in order to move some selected items
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml 2008-08-27 13:48:09 UTC (rev 10207)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI/usage.xhtml 2008-08-27 14:31:10 UTC (rev 10208)
@@ -10,32 +10,32 @@
<style>
.rich-message-label{
color:red;
- }
+ }
</style>
<p>
- Rich Faces State API allows easily define some set of states for the pages and any
- properties sets for this states.
+ Rich Faces State API allows easily to define some set of states for the pages and any
+ properties sets for these states.
</p>
<p>
- Imagine one state as a set of named value bindings method bindings and some
- additional properties to be used after the state activated. So you could define
- inputs values, controls labels and actions, rendering conditions and etc
+ Imagine one state as a set of named value-bindings method-bindings and some
+ additional properties to be used after the state is activated. Hence you could define
+ inputs values, controls labels and actions, rendering conditions and etc.
using the same state variables which will have different values for every state.
</p>
<p>
- Next small example panel
- has two states: <b>login</b> and <b>register</b>. Lets list the changes between
+ The next small example panel
+ has two states: <b>login</b> and <b>register</b>. Let's list the changes between
login and register.
</p>
<ul>
<li>
- Confirmation field for password should appears in register state.
+ Confirmation field for password should appear in a register state
</li>
<li>
- Method bindings should differs for the action button in every state.
+ Method bindings should differ for the action button in every state
</li>
<li>
- Value bindings for the fields could be different between states.
+ Value bindings for the fields could be different between states
</li>
<li>
Some labels should be changed between states
@@ -97,20 +97,20 @@
</div>
</fieldset>
<p>
- Actually states is a map where the entry key is name of the state and value
- is state map. Concrete state map has entries with some names as keys and
- any objects as values. So any value or method bindings or just simple state
+ Actually states are a map where the entry key is a name of the state and value
+ is a state map. Particular state map has entries with some names as keys and
+ any objects as values. Thus any value or method bindings or just simple state
constants could be saved in State map.
</p>
<p>
- Rich Faces state API implements states change as standard JSF navigation.
- Action component should just return outcome and our extension for JSF
- navigation handler will check if this outcome registered as state change
- outcome. If such state change outcome found - corresponding state will be
- activated and in other case - it will call standard navigation handling
+ Rich Faces state API implements states change as a standard JSF navigation.
+ Action component should just return outcome, and our extension for JSF
+ navigation handler will check whether this outcome is registered as state change
+ outcome. If such state change outcome is found, the corresponding state will be
+ activated and in other case, it will call standard navigation handling
</p>
<p>
- There is step by step instructions how configure Rich Faces states
+ There is step by step instructions telling how to configure Rich Faces states
manager for existing JSF application in details tab.
</p>
</ui:define>
16 years, 4 months
JBoss Rich Faces SVN: r10207 - trunk/samples/richfaces-demo/src/main/webapp/richfaces/orderingList/example.
by richfaces-svn-commits@lists.jboss.org
Author: alevkovsky
Date: 2008-08-27 09:48:09 -0400 (Wed, 27 Aug 2008)
New Revision: 10207
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/orderingList/example/playlist.xhtml
Log:
Bug fixing(RF-3835)
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/orderingList/example/playlist.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/orderingList/example/playlist.xhtml 2008-08-27 13:28:21 UTC (rev 10206)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/orderingList/example/playlist.xhtml 2008-08-27 13:48:09 UTC (rev 10207)
@@ -8,19 +8,21 @@
.cent{
text-align:center;
}
-</style>
- <rich:orderingList value="#{library.libraryAsList}" var="lib" listHeight="300" listWidth="350">
- <rich:column width="180">
- <f:facet name="header">
- <h:outputText value="Song Name" />
- </f:facet>
- <h:outputText value="#{lib.title}"></h:outputText>
- </rich:column>
- <rich:column>
+</style>
+ <h:form>
+ <rich:orderingList value="#{library.libraryAsList}" var="lib" listHeight="300" listWidth="350">
+ <rich:column width="180">
<f:facet name="header">
- <h:outputText value="Artist Name" />
- </f:facet>
- <h:outputText value="#{lib.album.artist.name}"></h:outputText>
- </rich:column>
- </rich:orderingList>
+ <h:outputText value="Song Name" />
+ </f:facet>
+ <h:outputText value="#{lib.title}"></h:outputText>
+ </rich:column>
+ <rich:column>
+ <f:facet name="header">
+ <h:outputText value="Artist Name" />
+ </f:facet>
+ <h:outputText value="#{lib.album.artist.name}"></h:outputText>
+ </rich:column>
+ </rich:orderingList>
+ </h:form>
</ui:composition>
\ No newline at end of file
16 years, 4 months
JBoss Rich Faces SVN: r10206 - trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: vmolotkov
Date: 2008-08-27 09:28:21 -0400 (Wed, 27 Aug 2008)
New Revision: 10206
Modified:
trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
Log:
https://jira.jboss.org/jira/browse/RF-4198
Modified: trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js
===================================================================
--- trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-08-27 00:34:27 UTC (rev 10205)
+++ trunk/ui/inplaceInput/src/main/resources/org/richfaces/renderkit/html/scripts/inplaceinput.js 2008-08-27 13:28:21 UTC (rev 10206)
@@ -124,6 +124,11 @@
},
tmpValueBlurHandler : function() {
+ if (this.skipBlur) {
+ this.skipBlur = false;
+ return;
+ }
+
if (this.clickOnBar) {
this.clickOnBar = false;
return;
@@ -139,6 +144,7 @@
case Event.KEY_ESC :
this.cancel(e);
if (!this.attributes.showControls) {
+ this.skipBlur = true;
this.tempValueKeeper.blur();
}
Event.stop(e);
16 years, 4 months
JBoss Rich Faces SVN: r10205 - in trunk/framework/api/src: test/java/org and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-08-26 20:34:27 -0400 (Tue, 26 Aug 2008)
New Revision: 10205
Added:
trunk/framework/api/src/test/java/org/richfaces/
trunk/framework/api/src/test/java/org/richfaces/model/
trunk/framework/api/src/test/java/org/richfaces/model/ClassicTreeModelKeyConversionTest.java
trunk/framework/api/src/test/java/org/richfaces/model/SwingTreeModelKeyConversionTest.java
Modified:
trunk/framework/api/src/main/java/org/richfaces/model/ClassicTreeDataModel.java
trunk/framework/api/src/main/java/org/richfaces/model/SwingTreeDataModel.java
trunk/framework/api/src/main/java/org/richfaces/model/SwingTreeNodeImpl.java
Log:
https://jira.jboss.org/jira/browse/RF-2813
Modified: trunk/framework/api/src/main/java/org/richfaces/model/ClassicTreeDataModel.java
===================================================================
--- trunk/framework/api/src/main/java/org/richfaces/model/ClassicTreeDataModel.java 2008-08-26 23:38:52 UTC (rev 10204)
+++ trunk/framework/api/src/main/java/org/richfaces/model/ClassicTreeDataModel.java 2008-08-27 00:34:27 UTC (rev 10205)
@@ -57,7 +57,8 @@
@Override
public Object convertToKey(FacesContext context, String keyString, UIComponent component, Converter converter) {
- String[] strings = ListRowKey.fromString(keyString);
+ //TODO optimize search for empty string
+ String[] strings = ListRowKey.fromString(keyString);
List<Object> list = new ArrayList<Object>(strings.length);
TreeNode node = (TreeNode) getWrappedData();
Modified: trunk/framework/api/src/main/java/org/richfaces/model/SwingTreeDataModel.java
===================================================================
--- trunk/framework/api/src/main/java/org/richfaces/model/SwingTreeDataModel.java 2008-08-26 23:38:52 UTC (rev 10204)
+++ trunk/framework/api/src/main/java/org/richfaces/model/SwingTreeDataModel.java 2008-08-27 00:34:27 UTC (rev 10205)
@@ -57,22 +57,21 @@
public void setWrappedData(Object data) {
if (data != null) {
SwingTreeNodeImpl treeNodeImpl = new SwingTreeNodeImpl();
- int counter = 0;
if (data instanceof Collection<?>) {
Collection<?> collection = (Collection<?>) data;
for (Iterator<?> iterator = collection.iterator(); iterator
.hasNext();) {
- treeNodeImpl.addChild(Integer.valueOf(counter++), (TreeNode) iterator.next());
+ treeNodeImpl.addChild((TreeNode) iterator.next());
}
} else if (data.getClass().isArray()) {
Object[] nodes = (Object[]) data;
for (int i = 0; i < nodes.length; i++) {
- treeNodeImpl.addChild(Integer.valueOf(counter++), (TreeNode) nodes[i]);
+ treeNodeImpl.addChild((TreeNode) nodes[i]);
}
} else {
- treeNodeImpl.addChild(Integer.valueOf(counter++), (TreeNode) data);
+ treeNodeImpl.addChild((TreeNode) data);
}
this.treeNode = treeNodeImpl;
Modified: trunk/framework/api/src/main/java/org/richfaces/model/SwingTreeNodeImpl.java
===================================================================
--- trunk/framework/api/src/main/java/org/richfaces/model/SwingTreeNodeImpl.java 2008-08-26 23:38:52 UTC (rev 10204)
+++ trunk/framework/api/src/main/java/org/richfaces/model/SwingTreeNodeImpl.java 2008-08-27 00:34:27 UTC (rev 10205)
@@ -125,6 +125,10 @@
return children.isEmpty();
}
+ public void addChild(TreeNode node) {
+ children.add(node);
+ }
+
public void addChild(Object key, TreeNode node) {
if (Integer.valueOf(children.size()).equals(key)) {
children.add(node);
Added: trunk/framework/api/src/test/java/org/richfaces/model/ClassicTreeModelKeyConversionTest.java
===================================================================
--- trunk/framework/api/src/test/java/org/richfaces/model/ClassicTreeModelKeyConversionTest.java (rev 0)
+++ trunk/framework/api/src/test/java/org/richfaces/model/ClassicTreeModelKeyConversionTest.java 2008-08-27 00:34:27 UTC (rev 10205)
@@ -0,0 +1,142 @@
+/**
+ * License Agreement.
+ *
+ * JBoss RichFaces - Ajax4jsf Component Library
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+package org.richfaces.model;
+
+import java.util.Iterator;
+
+import junit.framework.TestCase;
+
+/**
+ * Created 26.08.2008
+ * @author Nick Belaevski
+ * @since 3.2.2
+ */
+
+public class ClassicTreeModelKeyConversionTest extends TestCase {
+
+ private ClassicTreeDataModel dataModel;
+
+ /* (non-Javadoc)
+ * @see junit.framework.TestCase#setUp()
+ */
+ protected void setUp() throws Exception {
+ super.setUp();
+
+ dataModel = new ClassicTreeDataModel();
+
+ TreeNodeImpl<String> rootNode = new TreeNodeImpl<String>();
+
+ TreeNodeImpl<String> node;
+
+ node = new TreeNodeImpl<String>();
+ node.addChild("0", new TreeNodeImpl<String>());
+ node.addChild("1", new TreeNodeImpl<String>());
+ for (int i = 2; i < 5; i++) {
+ node.addChild(Long.valueOf(i), new TreeNodeImpl<String>());
+ }
+ rootNode.addChild("6", node);
+
+ node = new TreeNodeImpl<String>();
+ for (int i = 0; i < 3; i++) {
+ node.addChild(Integer.valueOf(i), new TreeNodeImpl<String>());
+ }
+ rootNode.addChild("abc_cde:fgh", node);
+
+ dataModel.setWrappedData(rootNode);
+ }
+
+ /* (non-Javadoc)
+ * @see junit.framework.TestCase#tearDown()
+ */
+ protected void tearDown() throws Exception {
+ super.tearDown();
+
+ dataModel = null;
+ }
+
+ public void testEmptyString() throws Exception {
+ TreeRowKey<Object> key = (TreeRowKey<Object>) dataModel.convertToKey(null, "", null, null);
+ assertNull(key);
+ }
+
+ public void testStraightWayShort() throws Exception {
+ TreeRowKey<Object> key = (TreeRowKey<Object>) dataModel.convertToKey(null, "6", null, null);
+ assertNotNull(key);
+
+ Iterator<Object> iterator = key.iterator();
+ assertEquals("6", iterator.next());
+ assertFalse(iterator.hasNext());
+ }
+
+ public void testStraightWay() throws Exception {
+ TreeRowKey<Object> key = (TreeRowKey<Object>) dataModel.convertToKey(null, "6:1", null, null);
+ assertNotNull(key);
+
+ Iterator<Object> iterator = key.iterator();
+ assertEquals("6", iterator.next());
+ assertEquals("1", iterator.next());
+ assertFalse(iterator.hasNext());
+
+ key = (TreeRowKey<Object>) dataModel.convertToKey(null, "6:1", null, null);
+ assertNotNull(key);
+
+ iterator = key.iterator();
+ assertEquals("6", iterator.next());
+ assertEquals("1", iterator.next());
+ assertFalse(iterator.hasNext());
+ }
+
+ public void testSearch() throws Exception {
+ TreeRowKey<Object> key = (TreeRowKey<Object>) dataModel.convertToKey(null, "6:4", null, null);
+ assertNotNull(key);
+
+ Iterator<Object> iterator = key.iterator();
+ assertEquals("6", iterator.next());
+ assertEquals(Long.valueOf(4), iterator.next());
+ assertFalse(iterator.hasNext());
+
+ }
+
+ public void testSearchMissing() throws Exception {
+ assertNull(dataModel.convertToKey(null, "6:10", null, null));
+ assertNull(dataModel.convertToKey(null, "7", null, null));
+ }
+
+ public void testUnescape() throws Exception {
+ TreeRowKey<Object> key = (TreeRowKey<Object>) dataModel.convertToKey(null, "abc__cde_:fgh:1", null, null);
+ assertNotNull(key);
+
+ Iterator<Object> iterator = key.iterator();
+ assertEquals("abc_cde:fgh", iterator.next());
+ assertEquals(Integer.valueOf(1), iterator.next());
+ assertFalse(iterator.hasNext());
+ }
+
+ public void testUnescapeShort() throws Exception {
+ TreeRowKey<Object> key = (TreeRowKey<Object>) dataModel.convertToKey(null, "abc__cde_:fgh", null, null);
+ assertNotNull(key);
+
+ Iterator<Object> iterator = key.iterator();
+ assertEquals("abc_cde:fgh", iterator.next());
+ assertFalse(iterator.hasNext());
+ }
+}
Added: trunk/framework/api/src/test/java/org/richfaces/model/SwingTreeModelKeyConversionTest.java
===================================================================
--- trunk/framework/api/src/test/java/org/richfaces/model/SwingTreeModelKeyConversionTest.java (rev 0)
+++ trunk/framework/api/src/test/java/org/richfaces/model/SwingTreeModelKeyConversionTest.java 2008-08-27 00:34:27 UTC (rev 10205)
@@ -0,0 +1,109 @@
+/**
+ * License Agreement.
+ *
+ * JBoss RichFaces - Ajax4jsf Component Library
+ *
+ * Copyright (C) 2007 Exadel, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+package org.richfaces.model;
+
+import java.util.Iterator;
+
+import javax.swing.tree.TreeNode;
+
+import junit.framework.TestCase;
+
+/**
+ * Created 26.08.2008
+ * @author Nick Belaevski
+ * @since 3.2.2
+ */
+
+public class SwingTreeModelKeyConversionTest extends TestCase {
+
+ private SwingTreeDataModel dataModel;
+
+ /* (non-Javadoc)
+ * @see junit.framework.TestCase#setUp()
+ */
+ protected void setUp() throws Exception {
+ super.setUp();
+
+ dataModel = new SwingTreeDataModel();
+
+ //1
+ SwingTreeNodeImpl node = new SwingTreeNodeImpl();
+ //1:0
+ node.addChild(new SwingTreeNodeImpl());
+ //1:1
+ node.addChild(new SwingTreeNodeImpl());
+ //1:2
+ node.addChild(new SwingTreeNodeImpl());
+
+ dataModel.setWrappedData(new TreeNode[] {
+ new SwingTreeNodeImpl(), node
+ });
+ }
+
+ /* (non-Javadoc)
+ * @see junit.framework.TestCase#tearDown()
+ */
+ protected void tearDown() throws Exception {
+ super.tearDown();
+
+ dataModel = null;
+ }
+
+ public void testEmptyString() throws Exception {
+ //TODO make it work
+// Object key = dataModel.convertToKey(null, "", null, null);
+// assertNull(key);
+ }
+
+ public void testStraightWay() throws Exception {
+ TreeRowKey<Integer> key;
+ Iterator<Integer> iterator;
+
+ key = (TreeRowKey<Integer>) dataModel.convertToKey(null, "0", null, null);
+ iterator = key.iterator();
+ assertEquals(Integer.valueOf(0), iterator.next());
+ assertFalse(iterator.hasNext());
+
+ key = (TreeRowKey<Integer>) dataModel.convertToKey(null, "1", null, null);
+ iterator = key.iterator();
+ assertEquals(Integer.valueOf(1), iterator.next());
+ assertFalse(iterator.hasNext());
+
+ key = (TreeRowKey<Integer>) dataModel.convertToKey(null, "1:0", null, null);
+ iterator = key.iterator();
+ assertEquals(Integer.valueOf(1), iterator.next());
+ assertEquals(Integer.valueOf(0), iterator.next());
+ assertFalse(iterator.hasNext());
+
+ key = (TreeRowKey<Integer>) dataModel.convertToKey(null, "1:2", null, null);
+ iterator = key.iterator();
+ assertEquals(Integer.valueOf(1), iterator.next());
+ assertEquals(Integer.valueOf(2), iterator.next());
+ assertFalse(iterator.hasNext());
+ }
+
+ public void testMissingNodes() throws Exception {
+ assertNull(dataModel.convertToKey(null, "2", null, null));
+ assertNull(dataModel.convertToKey(null, "0:3", null, null));
+ }
+}
+
16 years, 4 months