JBoss Rich Faces SVN: r20717 - modules/tests/metamer/trunk/application.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-12-21 08:30:29 -0500 (Tue, 21 Dec 2010)
New Revision: 20717
Modified:
modules/tests/metamer/trunk/application/pom.xml
Log:
added mandatory dependency on validation-api
Modified: modules/tests/metamer/trunk/application/pom.xml
===================================================================
--- modules/tests/metamer/trunk/application/pom.xml 2010-12-21 12:45:48 UTC (rev 20716)
+++ modules/tests/metamer/trunk/application/pom.xml 2010-12-21 13:30:29 UTC (rev 20717)
@@ -67,6 +67,11 @@
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
</dependency>
+
+ <dependency>
+ <groupId>javax.validation</groupId>
+ <artifactId>validation-api</artifactId>
+ </dependency>
<dependency>
<groupId>javax.servlet</groupId>
@@ -299,7 +304,7 @@
<artifactId>maven-war-plugin</artifactId>
<configuration>
<classifier>jee6</classifier>
- <packagingExcludes>WEB-INF/lib/jsf-api-*,WEB-INF/lib/jsf-impl-*,WEB-INF/lib/myfaces-api-*,WEB-INF/lib/myfaces-impl-*</packagingExcludes>
+ <packagingExcludes>WEB-INF/lib/jsf-api-*,WEB-INF/lib/jsf-impl-*,WEB-INF/lib/myfaces-api-*,WEB-INF/lib/myfaces-impl-*,WEB-INF/lib/validation-api-*</packagingExcludes>
</configuration>
<executions>
<execution>
@@ -503,6 +508,11 @@
<artifactId>jsf-impl</artifactId>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>javax.validation</groupId>
+ <artifactId>validation-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
</dependencies>
</profile>
</profiles>
14 years
JBoss Rich Faces SVN: r20716 - in trunk/ui/dnd/ui/src/main/java/org/richfaces: javascript and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2010-12-21 07:45:48 -0500 (Tue, 21 Dec 2010)
New Revision: 20716
Modified:
trunk/ui/dnd/ui/src/main/java/org/richfaces/component/AbstractDragSource.java
trunk/ui/dnd/ui/src/main/java/org/richfaces/component/AbstractDropTarget.java
trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DnDScript.java
trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DragScript.java
trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DropScript.java
trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DnDRenderBase.java
trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DragSourceRenderer.java
trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DropTargetRenderer.java
Log:
change base class for the AbstractDropTarget.java, AbstractDragSource.java isn't implement AjaxComponent interface. Add license headers
Modified: trunk/ui/dnd/ui/src/main/java/org/richfaces/component/AbstractDragSource.java
===================================================================
--- trunk/ui/dnd/ui/src/main/java/org/richfaces/component/AbstractDragSource.java 2010-12-21 11:50:44 UTC (rev 20715)
+++ trunk/ui/dnd/ui/src/main/java/org/richfaces/component/AbstractDragSource.java 2010-12-21 12:45:48 UTC (rev 20716)
@@ -24,7 +24,6 @@
import javax.faces.component.UIComponentBase;
-import org.ajax4jsf.component.AjaxComponent;
import org.richfaces.cdk.annotations.Attribute;
import org.richfaces.cdk.annotations.JsfComponent;
import org.richfaces.cdk.annotations.JsfRenderer;
@@ -42,7 +41,7 @@
renderer = @JsfRenderer(type = "org.richfaces.DragSourceRenderer"),
tag = @Tag(name="dragSource")
)
-public abstract class AbstractDragSource extends UIComponentBase implements AjaxComponent {
+public abstract class AbstractDragSource extends UIComponentBase {
public static final String COMPONENT_TYPE = "org.richfaces.DragSource";
Modified: trunk/ui/dnd/ui/src/main/java/org/richfaces/component/AbstractDropTarget.java
===================================================================
--- trunk/ui/dnd/ui/src/main/java/org/richfaces/component/AbstractDropTarget.java 2010-12-21 11:50:44 UTC (rev 20715)
+++ trunk/ui/dnd/ui/src/main/java/org/richfaces/component/AbstractDropTarget.java 2010-12-21 12:45:48 UTC (rev 20716)
@@ -22,6 +22,7 @@
package org.richfaces.component;
+import javax.faces.component.UIComponentBase;
import javax.faces.event.FacesEvent;
import javax.faces.event.PhaseId;
@@ -45,7 +46,7 @@
renderer = @JsfRenderer(type = "org.richfaces.DropTargetRenderer"),
tag = @Tag(name="dropTarget" ,handler="org.richfaces.view.facelets.DropHandler", type = TagType.Facelets)
)
-public abstract class AbstractDropTarget extends AbstractActionComponent {
+public abstract class AbstractDropTarget extends UIComponentBase {
public static final String COMPONENT_TYPE = "org.richfaces.DropTarget";
Modified: trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DnDScript.java
===================================================================
--- trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DnDScript.java 2010-12-21 11:50:44 UTC (rev 20715)
+++ trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DnDScript.java 2010-12-21 12:45:48 UTC (rev 20716)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright ${year}, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
package org.richfaces.javascript;
import java.io.IOException;
@@ -7,6 +29,10 @@
import org.ajax4jsf.javascript.ScriptWithDependencies;
import org.richfaces.resource.ResourceKey;
+/**
+ * @author abelevich
+ *
+ */
public abstract class DnDScript implements ScriptWithDependencies {
private static final Set<ResourceKey> BASE_RESOURCES = new LinkedHashSet<ResourceKey>();
Modified: trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DragScript.java
===================================================================
--- trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DragScript.java 2010-12-21 11:50:44 UTC (rev 20715)
+++ trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DragScript.java 2010-12-21 12:45:48 UTC (rev 20716)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright ${year}, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
package org.richfaces.javascript;
import java.util.Collections;
@@ -6,6 +28,10 @@
import org.richfaces.resource.ResourceKey;
+/**
+ * @author abelevich
+ *
+ */
public final class DragScript extends DnDScript{
private static final Set<ResourceKey> DRAG_SCRIPT = Collections.singleton(new ResourceKey("dnd-draggable.js", "org.richfaces"));
Modified: trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DropScript.java
===================================================================
--- trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DropScript.java 2010-12-21 11:50:44 UTC (rev 20715)
+++ trunk/ui/dnd/ui/src/main/java/org/richfaces/javascript/DropScript.java 2010-12-21 12:45:48 UTC (rev 20716)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright ${year}, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
package org.richfaces.javascript;
import java.util.Collections;
@@ -6,6 +28,10 @@
import org.richfaces.resource.ResourceKey;
+/**
+ * @author abelevich
+ *
+ */
public final class DropScript extends DnDScript{
private static final Set<ResourceKey> DRAG_SCRIPT = Collections.singleton(new ResourceKey("dnd-droppable.js", "org.richfaces"));
Modified: trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DnDRenderBase.java
===================================================================
--- trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DnDRenderBase.java 2010-12-21 11:50:44 UTC (rev 20715)
+++ trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DnDRenderBase.java 2010-12-21 12:45:48 UTC (rev 20716)
@@ -1,3 +1,26 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright ${year}, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+
package org.richfaces.renderkit;
import java.io.IOException;
Modified: trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DragSourceRenderer.java
===================================================================
--- trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DragSourceRenderer.java 2010-12-21 11:50:44 UTC (rev 20715)
+++ trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DragSourceRenderer.java 2010-12-21 12:45:48 UTC (rev 20716)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright ${year}, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
package org.richfaces.renderkit;
import java.util.HashMap;
Modified: trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DropTargetRenderer.java
===================================================================
--- trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DropTargetRenderer.java 2010-12-21 11:50:44 UTC (rev 20715)
+++ trunk/ui/dnd/ui/src/main/java/org/richfaces/renderkit/DropTargetRenderer.java 2010-12-21 12:45:48 UTC (rev 20716)
@@ -1,3 +1,25 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright ${year}, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
package org.richfaces.renderkit;
import java.util.HashMap;
14 years
JBoss Rich Faces SVN: r20715 - in management/design-4x: accordion and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: Ochikvina
Date: 2010-12-21 06:50:44 -0500 (Tue, 21 Dec 2010)
New Revision: 20715
Added:
management/design-4x/accordion/
management/design-4x/accordion/accordion.html
management/design-4x/accordion/images/
management/design-4x/accordion/images/gradientA.png
management/design-4x/accordion/images/rf.png
Log:
Added markup for disabled items of the component.
Added: management/design-4x/accordion/accordion.html
===================================================================
--- management/design-4x/accordion/accordion.html (rev 0)
+++ management/design-4x/accordion/accordion.html 2010-12-21 11:50:44 UTC (rev 20715)
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+ <head>
+ <title>Accordion</title>
+ <style type="text/css">
+ body{
+ font:normal 11px Arial, Verdana, sans-serif;
+ }
+
+ /*--- RF Accordion styles ---*/
+ .rf-ac {
+ background:#FFFFFF;
+ border-color:#BED6F8;
+ border-style:solid solid none;
+ border-width:1px 1px 0;
+ width:500px;
+ }
+ .rf-ac-itm-hdr {
+ background-color:#BED6F8;
+ background-image:url("images/gradientA.png");
+ background-position:left top;
+ background-repeat:repeat-x;
+ border-bottom:1px solid #BED6F8;
+ color:#000000;
+ cursor:pointer;
+ font-family:Arial, Verdana, sans-serif;
+ font-size:11px;
+ font-weight:bold;
+ min-height:0;
+ padding:8px 10px 7px;
+ position:relative;
+ }
+ .rf-ac-itm-hdr-dis{
+ color:#8DB7F3;/*tabDisabledTextColor*/
+ cursor:default;
+ }
+ .rf-ac-itm-cnt {
+ border-bottom:1px solid #BED6F8;
+ overflow-x:hidden;
+ overflow-y:auto;
+ padding:10px;
+ position:relative;
+ }
+ </style>
+ </head>
+ <body>
+ <h1>Accordion</h1>
+
+ <div class="rf-ac">
+ <div class="rf-ac-itm">
+ <div class="rf-ac-itm-hdr">
+ <div class="rf-ac-itm-hdr-inact" style="display: none;">Overview:</div>
+ <div class="rf-ac-itm-hdr-act">Overview:</div>
+ <div class="rf-ac-itm-hdr-dis" style="display: none;">Overview:</div>
+ </div>
+ <div class="rf-ac-itm-cnt" style="height: 205px;">
+ <img style="float: right;" src="images/rf.png"/>
+ RichFaces is a component library for JSF and an advanced framework for
+ easily integrating AJAX capabilities into business applications.
+ <ul>
+ <li>100+ AJAX enabled components in two libraries</li>
+ <li>a4j: page centric AJAX controls</li>
+ <li>rich: self contained, ready to use components</li>
+ <li>Whole set of JSF benefits while working with AJAX</li>
+ <li>Skinnability mechanism</li>
+ <li>Component Development Kit (CDK)</li>
+ <li>Dynamic resources handling</li>
+ <li>Testing facilities for components, actions, listeners, and
+ pages</li>
+ <li>Broad cross-browser support</li>
+ <li>Large and active community</li>
+ </ul>
+ </div>
+ </div>
+ <div class="rf-ac-itm">
+ <div class="rf-ac-itm-hdr">
+ <div class="rf-ac-itm-hdr-inact" style="display: none;">JSF 2 and RichFaces 4:</div>
+ <div class="rf-ac-itm-hdr-act" style="display: none;">JSF 2 and RichFaces 4:</div>
+ <div class="rf-ac-itm-hdr-dis">JSF 2 and RichFaces 4:</div>
+ </div>
+ <div style="display: none;" class="rf-ac-itm-cnt">
+ <p>We are working hard on RichFaces 4.0 which will have full JSF
+ 2 integration. That is not all though, here is a summary of updates
+ and features:</p>
+ <ul>
+ <li>Redesigned modular repository and build system.</li>
+ <li>Simplified Component Development Kit with annotations,
+ faces-config extensions, advanced templates support and more..</li>
+ <li>Ajax framework improvements extending the JSF 2
+ specification.</li>
+ <li>Component review for consistency, usability, and redesign
+ following semantic HTML principles where possible.</li>
+ <li>Both server-side and client-side performance optimization.</li>
+ <li>Strict code clean-up and review.</li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ </body>
+</html>
\ No newline at end of file
Added: management/design-4x/accordion/images/gradientA.png
===================================================================
(Binary files differ)
Property changes on: management/design-4x/accordion/images/gradientA.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: management/design-4x/accordion/images/rf.png
===================================================================
(Binary files differ)
Property changes on: management/design-4x/accordion/images/rf.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
14 years
JBoss Rich Faces SVN: r20714 - in modules/docs/trunk/Component_Reference/src/main/docbook/en-US: skinning and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-12-21 01:30:57 -0500 (Tue, 21 Dec 2010)
New Revision: 20714
Modified:
modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Menus_and_toolbars.xml
modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Tables_and_grids.xml
modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml
Log:
Draft of dropDownMenu
Modified: modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Menus_and_toolbars.xml
===================================================================
--- modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Menus_and_toolbars.xml 2010-12-21 04:05:17 UTC (rev 20713)
+++ modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Menus_and_toolbars.xml 2010-12-21 06:30:57 UTC (rev 20714)
@@ -26,41 +26,122 @@
-->
<!--<rich:dropDownMenu>-->
- <!--
<section id="sect-Component_Reference-Menus_and_toolbars-richdropDownMenu">
<title><sgmltag><rich:dropDownMenu></sgmltag></title>
<para>
- Incomplete
+ The <sgmltag><rich:dropDownMenu></sgmltag> component is used for creating a drop-down, hierarchical menu. It can be used with the <sgmltag><rich:toolbar></sgmltag> component to create menus in an application's toolbar.
</para>
+
+ <section id="sect-Component_Reference-richdropDownMenu-Basic_usage">
+ <title>Basic usage</title>
+ <para>
+ The <sgmltag><rich:dropDownMenu></sgmltag> component only requires the <varname>value</varname> attribute for basic usage. Use the <varname>value</varname> attribute to define the text label that appears as the title of the menu. Clicking on the title drops the menu down.
+ </para>
+ <para>
+ Alternatively, use the <literal>label</literal> facet to define the menu title. If the <literal>label</literal> facet is used, the <varname>value</varname> attribute is not necessary.
+ </para>
+ </section>
+
+ <section id="sect-Component_Reference-richdropDownMenu-Menu_content">
+ <title>Menu content</title>
+ <para>
+ To set the content of the drop-down menu and any sub-menus, use the <sgmltag><rich:menuItem></sgmltag>, <sgmltag><rich:menuGroup></sgmltag>, and <sgmltag><rich:menuSeparator></sgmltag> components. These components are detailed in <xref linkend="sect-Component_Reference-Menus_and_toolbars-Menu_sub-components" />.
+ </para>
+ </section>
+
+ <!-- TODO not in M5 -->
+ <!--
+ <section id="sect-Component_Reference-richdropDownMenu-Appearance">
+ <title>Appearance</title>
+ <para>
+ To determine the direction and location of the menu when it appears, use the <varname>direction</varname> and <varname>jointPoint</varname> attributes.
+ </para>
+
+ </section>
+ -->
+
+ <section id="sect-Component_Reference-richdropDownMenu-Expanding_and_collapsing_the_menu">
+ <title>Expanding and collapsing the menu</title>
+ <para>
+ By default, the menu drops down when the title is clicked. To drop down with a different event, use the <varname>event</varname> attribute to define the event instead.
+ </para>
+ <para>
+ Use the <varname>submitMode</varname> attribute to determine how the menu requests are submitted:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <literal>server</literal>, the default setting, submits the form normally and completely refreshes the page.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <literal>ajax</literal> performs an Ajax form submission, and re-renders elements specified with the <varname>render</varname> attribute.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <literal>none</literal> causes the <varname>action</varname> and <varname>actionListener</varname> items to be ignored, and the behavior is fully defined by the nested components instead of responses from submissions.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
+
+ <section id="sect-Component_Reference-richdropDownMenu-Reference_data">
+ <title>Reference data</title>
+ <itemizedlist>
+ <listitem>
+ <para>
+ <parameter>component-type</parameter>: <classname>org.richfaces.DropDownMenu</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-class</parameter>: <classname>org.richfaces.component.html.HtmlDropDownMenu</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>component-family</parameter>: <classname>org.richfaces.DropDownMenu</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>renderer-type</parameter>: <classname>org.richfaces.DropDownMenuRenderer</classname>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <parameter>tag-class</parameter>: <classname>org.richfaces.taglib.DropDownMenuTag</classname>
+ </para>
+ </listitem>
+ </itemizedlist>
+ </section>
</section>
- -->
- <!--
<section id="sect-Component_Reference-Menus_and_toolbars-Menu_sub-components">
<title>Menu sub-components</title>
- -->
-
+ <para>
+ The <sgmltag><rich:menuGroup></sgmltag>, <sgmltag><rich:menuItem></sgmltag>, and <sgmltag><rich:menuSeparator></sgmltag> components are used to construct menus for the <sgmltag><rich:dropDownMenu></sgmltag> component. Refer to <xref linkend="sect-Component_Reference-Menus_and_toolbars-richdropDownMenu" /> for more details on the <sgmltag><rich:dropDownMenu></sgmltag> component.
+ </para>
+
<!--<rich:menuGroup>-->
- <!--
<section id="sect-Component_Reference-Menus_and_toolbars-richmenuGroup">
<title><sgmltag><rich:menuGroup></sgmltag></title>
<para>
Incomplete
</para>
</section>
- -->
<!--<rich:menuItem>-->
- <!--
<section id="sect-Component_Reference-Menus_and_toolbars-richmenuItem">
<title><sgmltag><rich:menuItem></sgmltag></title>
<para>
Incomplete
</para>
</section>
- -->
+
<!--<rich:menuSeparator>-->
- <!--
<section id="sect-Component_Reference-Menus_and_toolbars-richmenuSeparator">
<title><sgmltag><rich:menuSeparator></sgmltag></title>
<para>
@@ -69,7 +150,6 @@
</section>
</section>
- -->
<!-- TODO not in M5 -->
<!--<rich:panelMenu>-->
Modified: modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Tables_and_grids.xml
===================================================================
--- modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Tables_and_grids.xml 2010-12-21 04:05:17 UTC (rev 20713)
+++ modules/docs/trunk/Component_Reference/src/main/docbook/en-US/chap-Component_Reference-Tables_and_grids.xml 2010-12-21 06:30:57 UTC (rev 20714)
@@ -690,6 +690,8 @@
</listitem>
</itemizedlist>
</section>
+
+ <xi:include href="skinning/skin-richdataTable.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
</section>
<!--<rich:extendedDataTable>-->
Modified: modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml
===================================================================
--- modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml 2010-12-21 04:05:17 UTC (rev 20713)
+++ modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml 2010-12-21 06:30:57 UTC (rev 20714)
@@ -9,22 +9,41 @@
<thead>
<row>
<entry>Class (selector) name</entry>
- <entry>Description</entry>
<entry>Skin Parameters</entry>
<entry><acronym>CSS</acronym> properties mapped</entry>
</row>
</thead>
<tbody>
<row>
- <entry><classname>.rich-table</classname></entry>
- <entry>Defines the styles for a table</entry>
+ <entry>
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for a table.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>tableBackgroundColor</literal></entry>
<entry><literal>background-color</literal></entry>
</row>
<row>
- <entry morerows="2"><classname>.rich-table-cell</classname></entry>
- <entry morerows="2">Defines the styles for a table cell</entry>
+ <entry morerows="2">
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-cell</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for a table cell.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>generalSizeFont</literal></entry>
<entry><literal>font-size</literal></entry>
</row>
@@ -38,22 +57,52 @@
</row>
<row>
- <entry><classname>.rich-table-header</classname></entry>
- <entry>Defines the styles for a table header row</entry>
+ <entry>
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-header</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for a table header row.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>headerBackgroundColor</literal></entry>
<entry><literal>background-color</literal></entry>
</row>
<row>
- <entry><classname>.rich-table-header-continue</classname></entry>
- <entry>Defines the styles for all header lines after the first</entry>
+ <entry>
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-header-continue</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for all header lines after the first.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>headerBackgroundColor</literal></entry>
<entry><literal>background-color</literal></entry>
</row>
<row>
- <entry morerows="4"><classname>.rich-table-headercell</classname></entry>
- <entry morerows="4">Defines the styles for a header cell</entry>
+ <entry morerows="4">
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-headercell</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for a header cell.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>tableBorderWidth</literal>, <literal>tableBorderColor</literal></entry>
<entry><literal>border-right, border-bottom</literal></entry>
</row>
@@ -75,22 +124,52 @@
</row>
<row>
- <entry><classname>.rich-table-subheader</classname></entry>
- <entry>Defines the styles for a column header</entry>
+ <entry>
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-subheader</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for a column header.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>additionalBackgroundColor</literal></entry>
<entry><literal>background-color</literal></entry>
</row>
<row>
- <entry><classname>.rich-table-thead</classname></entry>
- <entry>Defines the styles for the separator between the header and the rest of the table</entry>
+ <entry>
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-thead</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for the separator between the header and the rest of the table.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>tableBorderWidth</literal>, <literal>tableBorderColor</literal></entry>
<entry><literal>border-bottom</literal></entry>
</row>
<row>
- <entry morerows="3"><classname>.rich-table-subheadercell</classname></entry>
- <entry morerows="3">Defines the styles for a column header cell</entry>
+ <entry morerows="3">
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-subheadercell</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for a column header cell.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>tableBorderWidth</literal>, <literal>tableBorderColor</literal></entry>
<entry><literal>border-right</literal></entry>
</row>
@@ -108,22 +187,52 @@
</row>
<row>
- <entry><classname>.rich-table-footer</classname></entry>
- <entry>Defines the styles for a footer row</entry>
+ <entry>
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-footer</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for a footer row.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>tableFooterBackgroundColor</literal></entry>
<entry><literal>background-color</literal></entry>
</row>
<row>
- <entry><classname>.rich-table-footer-continue</classname></entry>
- <entry>Defines the styles for all footer lines after the first</entry>
+ <entry>
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-footer-continue</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for all footer lines after the first.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>tableFooterBackgroundColor</literal></entry>
<entry><literal>background-color</literal></entry>
</row>
<row>
- <entry morerows="4"><classname>.rich-table-footercell</classname></entry>
- <entry morerows="4">Defines styles for a footer cell</entry>
+ <entry morerows="4">
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-footercell</classname></term>
+ <listitem>
+ <para>
+ This class defines styles for a footer cell.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>tableBorderWidth, tableBorderColor</literal></entry>
<entry><literal>border-right, border-bottom</literal></entry>
</row>
@@ -145,15 +254,35 @@
</row>
<row>
- <entry><classname>.rich-table-subfooter</classname></entry>
- <entry>Defines the styles for a column footer</entry>
+ <entry>
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-subfooter</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for a column footer.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>tableSubfooterBackgroundColor</literal></entry>
<entry><literal>background-color</literal></entry>
</row>
<row>
- <entry morerows="3"><classname>.rich-table-subfootercell</classname></entry>
- <entry morerows="3">Defines the styles for a column footer cell</entry>
+ <entry morerows="3">
+ <variablelist>
+ <varlistentry>
+ <term><classname>.rich-table-subfootercell</classname></term>
+ <listitem>
+ <para>
+ This class defines the styles for a column footer cell.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </entry>
<entry><literal>tableBorderWidth</literal>, <literal>tableBorderColor</literal></entry>
<entry><literal>border-right</literal>, <literal>border-bottom</literal></entry>
</row>
@@ -173,31 +302,31 @@
</tgroup>
</table>
- <table id="tabl-richdataTable-Style_classes_without_skin_parameters">
+ <variablelist>
<title>Style classes (selectors) without skin parameters</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Class name</entry>
- <entry>Description</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry><classname>.rich-table-caption</classname></entry>
- <entry>Defines styles for a "caption" facet element</entry>
- </row>
-
- <row>
- <entry><classname>.rich-table-row</classname></entry>
- <entry>Defines styles for a table row</entry>
- </row>
-
- <row>
- <entry><classname>.rich-table-firstrow</classname></entry>
- <entry>Defines styles for a table's first row</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
+ <varlistentry>
+ <term><classname>.rich-table-caption</classname></term>
+ <listitem>
+ <para>
+ This class defines styles for a "caption" facet element.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><classname>.rich-table-row</classname></term>
+ <listitem>
+ <para>
+ This class defines styles for a table row.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term><classname>.rich-table-firstrow</classname></term>
+ <listitem>
+ <para>
+ This class defines styles for a table's first row.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
</section>
14 years
JBoss Rich Faces SVN: r20713 - modules/docs/trunk/Developer_Guide/src/main/docbook/en-US.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-12-20 23:05:17 -0500 (Mon, 20 Dec 2010)
New Revision: 20713
Added:
modules/docs/trunk/Developer_Guide/src/main/docbook/en-US/appe-Developer_Guide-Style_classes_and_skin_parameters.xml
Modified:
modules/docs/trunk/Developer_Guide/src/main/docbook/en-US/Developer_Guide.xml
Log:
Added skin parameter appendix (deactivated for now)
Modified: modules/docs/trunk/Developer_Guide/src/main/docbook/en-US/Developer_Guide.xml
===================================================================
--- modules/docs/trunk/Developer_Guide/src/main/docbook/en-US/Developer_Guide.xml 2010-12-21 01:51:45 UTC (rev 20712)
+++ modules/docs/trunk/Developer_Guide/src/main/docbook/en-US/Developer_Guide.xml 2010-12-21 04:05:17 UTC (rev 20713)
@@ -3,13 +3,17 @@
]>
<book status="draft">
<xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <!-- <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include> -->
+ <!-- <xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include> -->
<xi:include href="chap-Developer_Guide-Introduction.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="chap-Developer_Guide-Getting_started_with_RichFaces.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="chap-Developer_Guide-RichFaces_overview.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="chap-Developer_Guide-Basic_concepts.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="chap-Developer_Guide-Advanced_features.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="chap-Developer_Guide-Skinning_and_theming.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+
+ <!-- Uncomment the following to include component skinning details. -->
+ <!-- <xi:include href="appe-Developer_Guide-Style_classes_and_skin_parameters.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
+
+ <!-- <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
</book>
Added: modules/docs/trunk/Developer_Guide/src/main/docbook/en-US/appe-Developer_Guide-Style_classes_and_skin_parameters.xml
===================================================================
--- modules/docs/trunk/Developer_Guide/src/main/docbook/en-US/appe-Developer_Guide-Style_classes_and_skin_parameters.xml (rev 0)
+++ modules/docs/trunk/Developer_Guide/src/main/docbook/en-US/appe-Developer_Guide-Style_classes_and_skin_parameters.xml 2010-12-21 04:05:17 UTC (rev 20713)
@@ -0,0 +1,11 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
+<appendix id="appe-Developer_Guide-Style_classes_and_skin_parameters">
+ <title>Style classes and skin parameters</title>
+ <para>
+ Each of the <productname>RichFaces</productname> components are listed below, along with their style classes and skin parameters. For further details on each component, refer to the relevant section in the <citetitle>RichFaces Component Reference</citetitle>.
+ </para>
+ <xi:include href="http://anonsvn.jboss.org/repos/richfaces/modules/docs/trunk/Component_Ref..." xmlns:xi="http://www.w3.org/2001/XInclude" />
+</appendix>
+
14 years
JBoss Rich Faces SVN: r20712 - in branches/4.0.0.M5: archetypes and 63 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-12-20 20:51:45 -0500 (Mon, 20 Dec 2010)
New Revision: 20712
Modified:
branches/4.0.0.M5/archetypes/pom.xml
branches/4.0.0.M5/archetypes/rf-gae-sample/pom.xml
branches/4.0.0.M5/archetypes/richfaces-archetype-simpleapp/pom.xml
branches/4.0.0.M5/archetypes/richfaces-component-short/pom.xml
branches/4.0.0.M5/archetypes/richfaces-component/pom.xml
branches/4.0.0.M5/archetypes/richfaces-components-aggregator/pom.xml
branches/4.0.0.M5/bom/pom.xml
branches/4.0.0.M5/cdk/annotations/pom.xml
branches/4.0.0.M5/cdk/attributes/pom.xml
branches/4.0.0.M5/cdk/commons/pom.xml
branches/4.0.0.M5/cdk/dist/pom.xml
branches/4.0.0.M5/cdk/generator/pom.xml
branches/4.0.0.M5/cdk/maven-cdk-plugin/pom.xml
branches/4.0.0.M5/cdk/maven-resources-plugin/pom.xml
branches/4.0.0.M5/cdk/parent/pom.xml
branches/4.0.0.M5/cdk/pom.xml
branches/4.0.0.M5/cdk/xinclude/pom.xml
branches/4.0.0.M5/core/api/pom.xml
branches/4.0.0.M5/core/impl/pom.xml
branches/4.0.0.M5/core/parent/pom.xml
branches/4.0.0.M5/core/pom.xml
branches/4.0.0.M5/dist/pom.xml
branches/4.0.0.M5/examples/core-demo/pom.xml
branches/4.0.0.M5/examples/dnd-demo/pom.xml
branches/4.0.0.M5/examples/input-demo/pom.xml
branches/4.0.0.M5/examples/iteration-demo/pom.xml
branches/4.0.0.M5/examples/misc-demo/pom.xml
branches/4.0.0.M5/examples/output-demo/pom.xml
branches/4.0.0.M5/examples/parent/pom.xml
branches/4.0.0.M5/examples/pom.xml
branches/4.0.0.M5/examples/push-demo/pom.xml
branches/4.0.0.M5/examples/repeater-demo/pom.xml
branches/4.0.0.M5/examples/richfaces-showcase/pom.xml
branches/4.0.0.M5/examples/template/pom.xml
branches/4.0.0.M5/examples/validator-demo/pom.xml
branches/4.0.0.M5/parent/pom.xml
branches/4.0.0.M5/pom.xml
branches/4.0.0.M5/ui/common/api/pom.xml
branches/4.0.0.M5/ui/common/pom.xml
branches/4.0.0.M5/ui/common/ui/pom.xml
branches/4.0.0.M5/ui/core/api/pom.xml
branches/4.0.0.M5/ui/core/pom.xml
branches/4.0.0.M5/ui/core/ui/pom.xml
branches/4.0.0.M5/ui/dist/pom.xml
branches/4.0.0.M5/ui/dist/richfaces-components-api/pom.xml
branches/4.0.0.M5/ui/dist/richfaces-components-ui/pom.xml
branches/4.0.0.M5/ui/dnd/api/pom.xml
branches/4.0.0.M5/ui/dnd/pom.xml
branches/4.0.0.M5/ui/dnd/ui/pom.xml
branches/4.0.0.M5/ui/input/api/pom.xml
branches/4.0.0.M5/ui/input/pom.xml
branches/4.0.0.M5/ui/input/ui/pom.xml
branches/4.0.0.M5/ui/iteration/api/pom.xml
branches/4.0.0.M5/ui/iteration/pom.xml
branches/4.0.0.M5/ui/iteration/ui/pom.xml
branches/4.0.0.M5/ui/misc/pom.xml
branches/4.0.0.M5/ui/misc/ui/pom.xml
branches/4.0.0.M5/ui/output/api/pom.xml
branches/4.0.0.M5/ui/output/pom.xml
branches/4.0.0.M5/ui/output/ui/pom.xml
branches/4.0.0.M5/ui/parent/pom.xml
branches/4.0.0.M5/ui/pom.xml
branches/4.0.0.M5/ui/validator/api/pom.xml
branches/4.0.0.M5/ui/validator/pom.xml
branches/4.0.0.M5/ui/validator/ui/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: branches/4.0.0.M5/archetypes/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/archetypes/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -30,7 +30,7 @@
<groupId>org.richfaces.archetypes</groupId>
<artifactId>archetypes-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Archetypes: Aggregator</name>
@@ -49,9 +49,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetypes</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetypes</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes</url>
</scm>
</project>
Modified: branches/4.0.0.M5/archetypes/rf-gae-sample/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/rf-gae-sample/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/archetypes/rf-gae-sample/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-gae</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: GAE Application</name>
@@ -93,9 +93,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/archetypes/richfaces-archetype-simpleapp/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/richfaces-archetype-simpleapp/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/archetypes/richfaces-archetype-simpleapp/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-simpleapp</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Simple Application</name>
@@ -92,9 +92,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/archetypes/richfaces-component/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/richfaces-component/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/archetypes/richfaces-component/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Component</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/archetypes/richfaces-component-short/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/richfaces-component-short/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/archetypes/richfaces-component-short/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component-short</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Component Short</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/archetypes/richfaces-components-aggregator/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/richfaces-components-aggregator/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/archetypes/richfaces-components-aggregator/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-components-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Components Aggregator</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/bom/pom.xml
===================================================================
--- branches/4.0.0.M5/bom/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/bom/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -18,7 +18,7 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces BOM</name>
<parent>
@@ -227,9 +227,9 @@
</dependencyManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/b...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/buil...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/build/bom</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/build/bom</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/build/bom</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/build/bom</url>
</scm>
</project>
Modified: branches/4.0.0.M5/cdk/annotations/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/annotations/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/cdk/annotations/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<description>That project contains annotations for JSF classes</description>
<name>annotations</name>
<dependencies>
Modified: branches/4.0.0.M5/cdk/attributes/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/attributes/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/cdk/attributes/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>attributes</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<description>That project contains JAXB bindings for model classes representing schema attributes data</description>
<name>attributes</name>
Modified: branches/4.0.0.M5/cdk/commons/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/commons/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/cdk/commons/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>commons</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>commons</name>
<build>
<plugins>
Modified: branches/4.0.0.M5/cdk/dist/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/dist/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/cdk/dist/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -4,20 +4,20 @@
<parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>dist</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>JSF Components Development Kit (CDK) distribution assembly</name>
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/cdk/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20101220-M5/cdk/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M5/cdk/dist</url>
</scm>
<build>
<finalName>cdk</finalName>
Modified: branches/4.0.0.M5/cdk/generator/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/generator/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/cdk/generator/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -3,13 +3,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Java Server Faces component generator</name>
Modified: branches/4.0.0.M5/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/maven-cdk-plugin/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/cdk/maven-cdk-plugin/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -2,13 +2,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
Modified: branches/4.0.0.M5/cdk/maven-resources-plugin/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/maven-resources-plugin/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/cdk/maven-resources-plugin/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -4,13 +4,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-resources-plugin</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>maven-resources-plugin</name>
<description>Maven plugin for packaging resources with web application</description>
Modified: branches/4.0.0.M5/cdk/parent/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/parent/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/cdk/parent/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -13,7 +13,7 @@
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JSF Components Development Kit (CDK)</name>
@@ -22,9 +22,9 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/cdk/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/tags/4.0.0.20101220-...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk/pa...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/branches/4.0.0.M5/cd...</url>
</scm>
<build>
Modified: branches/4.0.0.M5/cdk/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/cdk/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JSF Components Development Kit (CDK)</name>
<properties>
@@ -32,9 +32,9 @@
</modules>
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/cdk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/cdk</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20101220-M5/cdk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M5/cdk</url>
</scm>
<!-- Minimal build configuration -->
Modified: branches/4.0.0.M5/cdk/xinclude/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/xinclude/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/cdk/xinclude/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -22,13 +22,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>xinclude</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Cocoon 3: xinclude transformer</name>
<description>Cocoon 3 xinclude transformer with Xpointer scheme support.</description>
Modified: branches/4.0.0.M5/core/api/pom.xml
===================================================================
--- branches/4.0.0.M5/core/api/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/core/api/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -80,8 +80,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/core/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/api</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/api</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/core/api</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/core/impl/pom.xml
===================================================================
--- branches/4.0.0.M5/core/impl/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/core/impl/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -237,8 +237,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/core/impl</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/impl</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/impl</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/core/impl</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/core/parent/pom.xml
===================================================================
--- branches/4.0.0.M5/core/parent/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/core/parent/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -23,13 +23,13 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Core Parent</name>
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -46,8 +46,8 @@
</dependencyManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/core/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/p...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/core/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/core/pom.xml
===================================================================
--- branches/4.0.0.M5/core/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/core/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Core Aggregator</name>
@@ -43,9 +43,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/core</url>
</scm>
</project>
Modified: branches/4.0.0.M5/dist/pom.xml
===================================================================
--- branches/4.0.0.M5/dist/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/dist/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-distribution</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces Distribution Assembler</name>
@@ -187,8 +187,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/dist</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/examples/core-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/core-demo/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/core-demo/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>core-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Examples: Core</name>
<properties>
@@ -193,8 +193,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/exampl...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/examples/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/examples/core...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/examples/dnd-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/dnd-demo/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/dnd-demo/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>dnd-demo</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: DND</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M5/examples/input-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/input-demo/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/input-demo/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>input-demo</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Inputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M5/examples/iteration-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/iteration-demo/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/iteration-demo/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>iteration-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Examples: Iteration</name>
<properties>
Modified: branches/4.0.0.M5/examples/misc-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/misc-demo/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/misc-demo/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>misc-demo</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>RichFaces Examples: Miscellanous</name>
Modified: branches/4.0.0.M5/examples/output-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/output-demo/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/output-demo/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>output-demo</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Outputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M5/examples/parent/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/parent/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/parent/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Examples Parent</name>
@@ -229,8 +229,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/exampl...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/examples/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/examples/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/examples/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -34,7 +34,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>examples-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Examples: Aggregator</name>
@@ -54,9 +54,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/examples</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/examples</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/examples</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/examples</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/examples/push-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/push-demo/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/push-demo/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>push-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Examples: Push</name>
<properties>
@@ -196,8 +196,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/exampl...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/examples/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/examples/push...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/examples/repeater-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/repeater-demo/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/repeater-demo/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -25,14 +25,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>repeater-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Repeater</name>
<properties>
Modified: branches/4.0.0.M5/examples/richfaces-showcase/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/richfaces-showcase/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/richfaces-showcase/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -7,13 +7,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-showcase</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>Richfaces Examples: Richfaces Showcase Application</name>
@@ -429,8 +429,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples/richfaces...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples/richfaces-sh...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces</url>
</scm>
</project>
Modified: branches/4.0.0.M5/examples/template/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/template/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/template/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -3,14 +3,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.examples</groupId>
<artifactId>template</artifactId>
<packaging>war</packaging>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>examples template</name>
<dependencies>
</dependencies>
Modified: branches/4.0.0.M5/examples/validator-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/validator-demo/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/examples/validator-demo/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>validator-demo</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Validators</name>
<packaging>war</packaging>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.examples</groupId>
<artifactId>template</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
Modified: branches/4.0.0.M5/parent/pom.xml
===================================================================
--- branches/4.0.0.M5/parent/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/parent/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -23,13 +23,13 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Root Parent</name>
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../bom/pom.xml</relativePath>
</parent>
@@ -394,11 +394,11 @@
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/p...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/parent
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/parent
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/parent
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/parent</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/parent</url>
</scm>
</project>
Modified: branches/4.0.0.M5/pom.xml
===================================================================
--- branches/4.0.0.M5/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces Aggregator</name>
@@ -59,8 +59,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/common/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/common/api/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/common/api/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M5/ui/common/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/common/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/common/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.common</groupId>
<artifactId>richfaces-ui-common-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Common Aggregator</name>
Modified: branches/4.0.0.M5/ui/common/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/common/ui/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/common/ui/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M5/ui/core/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/core/api/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/core/api/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M5/ui/core/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/core/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/core/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Core Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/core</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/core/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/core/ui/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/core/ui/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -61,10 +61,10 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/cor...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/c...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/core/ui
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/core/ui</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/core/ui</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/dist/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dist/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/dist/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -22,13 +22,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-assembler</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Assembler</name>
@@ -63,9 +63,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/dist</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/dist/richfaces-components-api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dist/richfaces-components-api/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/dist/richfaces-components-api/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-api</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces UI Components API</name>
@@ -180,8 +180,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/d...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/dist/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dis...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dist/r...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/dist/richf...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/dist/richfaces-components-ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dist/richfaces-components-ui/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/dist/richfaces-components-ui/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces UI Components UI</name>
@@ -243,9 +243,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/d...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/dist/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dis...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dist/r...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/dist/richf...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/dnd/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dnd/api/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/dnd/api/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -64,9 +64,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/outpu...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/dnd/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dnd/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/dnd/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.dnd</groupId>
<artifactId>richfaces-ui-dnd-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Drag-n-Drop Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/dnd/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dnd/ui/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/dnd/ui/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -77,9 +77,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/outpu...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/input/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/input/api/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/input/api/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M5/ui/input/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/input/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/input/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.input</groupId>
<artifactId>richfaces-ui-input-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Input Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/input</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/input</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/input</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/input</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/input/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/input/ui/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/input/ui/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M5/ui/iteration/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/iteration/api/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/iteration/api/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -54,9 +54,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/ite...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/iterat...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/iteration/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/iteration/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/iteration/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/iteration/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.iteration</groupId>
<artifactId>richfaces-ui-iteration-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Iteration Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/ite...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/iteration</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/iteration</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/iteration/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/iteration/ui/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/iteration/ui/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -60,8 +60,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/ite...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/iterat...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/iteration/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/misc/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/misc/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/misc/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.misc</groupId>
<artifactId>richfaces-ui-misc-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Miscellanous Aggregator</name>
@@ -40,9 +40,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/misc</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/misc</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/misc</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/misc</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/misc</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/misc/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/misc/ui/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/misc/ui/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.misc</groupId>
<artifactId>richfaces-ui-misc-ui</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Richfaces UI Misc UI</name>
@@ -155,10 +155,10 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/mis...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/m...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/misc/d...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/misc/...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/misc/dist/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/output/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/output/api/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/output/api/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -51,10 +51,10 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/outpu...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/output/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/output/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/output/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.output</groupId>
<artifactId>richfaces-ui-output-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Output Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/output/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/output/ui/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/output/ui/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -76,9 +76,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/outpu...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/parent/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/parent/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/parent/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces UI Components Parent</name>
<packaging>pom</packaging>
@@ -194,8 +194,8 @@
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/p...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/parent</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-aggregator</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces UI: Aggregator</name>
@@ -49,8 +49,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/build/parent/tag...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/build/parent/tags/4...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/modules/build/parent/tags/4.0.0...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/build/parent/bra...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/build/parent/branch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/modules/build/parent/branches/4...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/validator/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/validator/api/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/validator/api/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -60,9 +60,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/valid...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/val...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/valida...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/validator/api</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/validator/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/validator/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/validator/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.validator</groupId>
@@ -38,8 +38,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/valid...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/val...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/validator</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/validator</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/validator/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/validator/ui/pom.xml 2010-12-21 01:50:44 UTC (rev 20711)
+++ branches/4.0.0.M5/ui/validator/ui/pom.xml 2010-12-21 01:51:45 UTC (rev 20712)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20101220-M5</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -135,8 +135,8 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/valid...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/val...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/valida...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/validator/ui</url>
</scm>
</project>
14 years
JBoss Rich Faces SVN: r20711 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-12-20 20:50:44 -0500 (Mon, 20 Dec 2010)
New Revision: 20711
Added:
tags/4.0.0.20101220-M5/
Log:
[maven-scm] copy for tag 4.0.0.20101220-M5
Copied: tags/4.0.0.20101220-M5 (from rev 20710, branches/4.0.0.M5)
14 years
JBoss Rich Faces SVN: r20710 - in branches/4.0.0.M5: archetypes and 63 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2010-12-20 20:50:29 -0500 (Mon, 20 Dec 2010)
New Revision: 20710
Modified:
branches/4.0.0.M5/archetypes/pom.xml
branches/4.0.0.M5/archetypes/rf-gae-sample/pom.xml
branches/4.0.0.M5/archetypes/richfaces-archetype-simpleapp/pom.xml
branches/4.0.0.M5/archetypes/richfaces-component-short/pom.xml
branches/4.0.0.M5/archetypes/richfaces-component/pom.xml
branches/4.0.0.M5/archetypes/richfaces-components-aggregator/pom.xml
branches/4.0.0.M5/bom/pom.xml
branches/4.0.0.M5/cdk/annotations/pom.xml
branches/4.0.0.M5/cdk/attributes/pom.xml
branches/4.0.0.M5/cdk/commons/pom.xml
branches/4.0.0.M5/cdk/dist/pom.xml
branches/4.0.0.M5/cdk/generator/pom.xml
branches/4.0.0.M5/cdk/maven-cdk-plugin/pom.xml
branches/4.0.0.M5/cdk/maven-resources-plugin/pom.xml
branches/4.0.0.M5/cdk/parent/pom.xml
branches/4.0.0.M5/cdk/pom.xml
branches/4.0.0.M5/cdk/xinclude/pom.xml
branches/4.0.0.M5/core/api/pom.xml
branches/4.0.0.M5/core/impl/pom.xml
branches/4.0.0.M5/core/parent/pom.xml
branches/4.0.0.M5/core/pom.xml
branches/4.0.0.M5/dist/pom.xml
branches/4.0.0.M5/examples/core-demo/pom.xml
branches/4.0.0.M5/examples/dnd-demo/pom.xml
branches/4.0.0.M5/examples/input-demo/pom.xml
branches/4.0.0.M5/examples/iteration-demo/pom.xml
branches/4.0.0.M5/examples/misc-demo/pom.xml
branches/4.0.0.M5/examples/output-demo/pom.xml
branches/4.0.0.M5/examples/parent/pom.xml
branches/4.0.0.M5/examples/pom.xml
branches/4.0.0.M5/examples/push-demo/pom.xml
branches/4.0.0.M5/examples/repeater-demo/pom.xml
branches/4.0.0.M5/examples/richfaces-showcase/pom.xml
branches/4.0.0.M5/examples/template/pom.xml
branches/4.0.0.M5/examples/validator-demo/pom.xml
branches/4.0.0.M5/parent/pom.xml
branches/4.0.0.M5/pom.xml
branches/4.0.0.M5/ui/common/api/pom.xml
branches/4.0.0.M5/ui/common/pom.xml
branches/4.0.0.M5/ui/common/ui/pom.xml
branches/4.0.0.M5/ui/core/api/pom.xml
branches/4.0.0.M5/ui/core/pom.xml
branches/4.0.0.M5/ui/core/ui/pom.xml
branches/4.0.0.M5/ui/dist/pom.xml
branches/4.0.0.M5/ui/dist/richfaces-components-api/pom.xml
branches/4.0.0.M5/ui/dist/richfaces-components-ui/pom.xml
branches/4.0.0.M5/ui/dnd/api/pom.xml
branches/4.0.0.M5/ui/dnd/pom.xml
branches/4.0.0.M5/ui/dnd/ui/pom.xml
branches/4.0.0.M5/ui/input/api/pom.xml
branches/4.0.0.M5/ui/input/pom.xml
branches/4.0.0.M5/ui/input/ui/pom.xml
branches/4.0.0.M5/ui/iteration/api/pom.xml
branches/4.0.0.M5/ui/iteration/pom.xml
branches/4.0.0.M5/ui/iteration/ui/pom.xml
branches/4.0.0.M5/ui/misc/pom.xml
branches/4.0.0.M5/ui/misc/ui/pom.xml
branches/4.0.0.M5/ui/output/api/pom.xml
branches/4.0.0.M5/ui/output/pom.xml
branches/4.0.0.M5/ui/output/ui/pom.xml
branches/4.0.0.M5/ui/parent/pom.xml
branches/4.0.0.M5/ui/pom.xml
branches/4.0.0.M5/ui/validator/api/pom.xml
branches/4.0.0.M5/ui/validator/pom.xml
branches/4.0.0.M5/ui/validator/ui/pom.xml
Log:
[maven-release-plugin] prepare release 4.0.0.20101220-M5
Modified: branches/4.0.0.M5/archetypes/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/archetypes/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -30,7 +30,7 @@
<groupId>org.richfaces.archetypes</groupId>
<artifactId>archetypes-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>RichFaces Archetypes: Aggregator</name>
@@ -49,9 +49,9 @@
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetypes</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetypes</url>
</scm>
</project>
Modified: branches/4.0.0.M5/archetypes/rf-gae-sample/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/rf-gae-sample/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/archetypes/rf-gae-sample/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-gae</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: GAE Application</name>
@@ -93,9 +93,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/archetypes/richfaces-archetype-simpleapp/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/richfaces-archetype-simpleapp/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/archetypes/richfaces-archetype-simpleapp/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-simpleapp</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Simple Application</name>
@@ -92,9 +92,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/archetypes/richfaces-component/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/richfaces-component/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/archetypes/richfaces-component/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Component</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/archetypes/richfaces-component-short/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/richfaces-component-short/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/archetypes/richfaces-component-short/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component-short</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Component Short</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/archetypes/richfaces-components-aggregator/pom.xml
===================================================================
--- branches/4.0.0.M5/archetypes/richfaces-components-aggregator/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/archetypes/richfaces-components-aggregator/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-components-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>maven-archetype</packaging>
<name>RichFaces Archetypes: Components Aggregator</name>
@@ -96,9 +96,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/bom/pom.xml
===================================================================
--- branches/4.0.0.M5/bom/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/bom/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -18,7 +18,7 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>RichFaces BOM</name>
<parent>
@@ -227,9 +227,9 @@
</dependencyManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/build/bom</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/build/bom</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/build/bom</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/b...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/buil...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/build/bom</url>
</scm>
</project>
Modified: branches/4.0.0.M5/cdk/annotations/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/annotations/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/cdk/annotations/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>annotations</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<description>That project contains annotations for JSF classes</description>
<name>annotations</name>
<dependencies>
Modified: branches/4.0.0.M5/cdk/attributes/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/attributes/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/cdk/attributes/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>attributes</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<description>That project contains JAXB bindings for model classes representing schema attributes data</description>
<name>attributes</name>
Modified: branches/4.0.0.M5/cdk/commons/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/commons/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/cdk/commons/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>commons</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>commons</name>
<build>
<plugins>
Modified: branches/4.0.0.M5/cdk/dist/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/dist/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/cdk/dist/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -4,20 +4,20 @@
<parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>dist</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>JSF Components Development Kit (CDK) distribution assembly</name>
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M5/cdk/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/cdk/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20101220-M5/cdk/...</url>
</scm>
<build>
<finalName>cdk</finalName>
Modified: branches/4.0.0.M5/cdk/generator/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/generator/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/cdk/generator/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -3,13 +3,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>generator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>Java Server Faces component generator</name>
Modified: branches/4.0.0.M5/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/maven-cdk-plugin/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/cdk/maven-cdk-plugin/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -2,13 +2,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-cdk-plugin</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
Modified: branches/4.0.0.M5/cdk/maven-resources-plugin/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/maven-resources-plugin/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/cdk/maven-resources-plugin/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -4,13 +4,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>maven-resources-plugin</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>maven-plugin</packaging>
<name>maven-resources-plugin</name>
<description>Maven plugin for packaging resources with web application</description>
Modified: branches/4.0.0.M5/cdk/parent/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/parent/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/cdk/parent/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -13,7 +13,7 @@
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>JSF Components Development Kit (CDK)</name>
@@ -22,9 +22,9 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk/pa...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/branches/4.0.0.M5/cd...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/cdk/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/tags/4.0.0.20101220-...</url>
</scm>
<build>
Modified: branches/4.0.0.M5/cdk/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/cdk/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>JSF Components Development Kit (CDK)</name>
<properties>
@@ -32,9 +32,9 @@
</modules>
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/cdk</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M5/cdk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/cdk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/cdk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20101220-M5/cdk</url>
</scm>
<!-- Minimal build configuration -->
Modified: branches/4.0.0.M5/cdk/xinclude/pom.xml
===================================================================
--- branches/4.0.0.M5/cdk/xinclude/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/cdk/xinclude/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -22,13 +22,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>xinclude</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>Cocoon 3: xinclude transformer</name>
<description>Cocoon 3 xinclude transformer with Xpointer scheme support.</description>
Modified: branches/4.0.0.M5/core/api/pom.xml
===================================================================
--- branches/4.0.0.M5/core/api/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/core/api/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -80,8 +80,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/api</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/api</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/core/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/core/api</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/core/impl/pom.xml
===================================================================
--- branches/4.0.0.M5/core/impl/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/core/impl/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -237,8 +237,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/impl</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/impl</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/core/impl</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/core/impl</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/core/parent/pom.xml
===================================================================
--- branches/4.0.0.M5/core/parent/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/core/parent/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -23,13 +23,13 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>RichFaces Core Parent</name>
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -46,8 +46,8 @@
</dependencyManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/p...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/core/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/core/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/core/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/core/pom.xml
===================================================================
--- branches/4.0.0.M5/core/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/core/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>RichFaces Core Aggregator</name>
@@ -43,9 +43,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/core</url>
</scm>
</project>
Modified: branches/4.0.0.M5/dist/pom.xml
===================================================================
--- branches/4.0.0.M5/dist/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/dist/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-distribution</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>Richfaces Distribution Assembler</name>
@@ -187,8 +187,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/dist</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/examples/core-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/core-demo/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/core-demo/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>core-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>RichFaces Examples: Core</name>
<properties>
@@ -193,8 +193,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/exampl...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/examples/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/examples/core...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/examples...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/examples/dnd-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/dnd-demo/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/dnd-demo/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>dnd-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>Richfaces Examples: DND</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M5/examples/input-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/input-demo/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/input-demo/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>input-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>Richfaces Examples: Inputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M5/examples/iteration-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/iteration-demo/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/iteration-demo/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>iteration-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>RichFaces Examples: Iteration</name>
<properties>
Modified: branches/4.0.0.M5/examples/misc-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/misc-demo/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/misc-demo/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>misc-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>war</packaging>
<name>RichFaces Examples: Miscellanous</name>
Modified: branches/4.0.0.M5/examples/output-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/output-demo/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/output-demo/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>output-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>Richfaces Examples: Outputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M5/examples/parent/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/parent/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/parent/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>RichFaces Examples Parent</name>
@@ -229,8 +229,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/exampl...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/examples/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/examples/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/examples...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/examples/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -34,7 +34,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>examples-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>RichFaces Examples: Aggregator</name>
@@ -54,9 +54,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/examples</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/examples</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/examples</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/examples</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/examples/push-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/push-demo/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/push-demo/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>push-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>RichFaces Examples: Push</name>
<properties>
@@ -196,8 +196,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/exampl...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/examples/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/examples/push...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/examples...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/examples/repeater-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/repeater-demo/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/repeater-demo/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -25,14 +25,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>repeater-demo</artifactId>
<packaging>war</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>Richfaces Examples: Repeater</name>
<properties>
Modified: branches/4.0.0.M5/examples/richfaces-showcase/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/richfaces-showcase/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/richfaces-showcase/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -1,436 +1,436 @@
-<?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/xsd/maven-4.0.0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.richfaces.examples</groupId>
- <artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <relativePath>../parent/pom.xml</relativePath>
- </parent>
-
- <groupId>org.richfaces.examples</groupId>
- <artifactId>richfaces-showcase</artifactId>
- <version>4.0.0-SNAPSHOT</version>
- <packaging>war</packaging>
- <name>Richfaces Examples: Richfaces Showcase Application</name>
-
- <properties>
- <gae.version>1.4.0</gae.version>
- </properties>
-
- <dependencies>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-components-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.richfaces.ui</groupId>
- <artifactId>richfaces-components-ui</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.validation</groupId>
- <artifactId>validation-api</artifactId>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- </dependency>
-
- <dependency>
- <groupId>net.sf.ehcache</groupId>
- <artifactId>ehcache</artifactId>
- </dependency>
-
- </dependencies>
-
- <build>
- <finalName>richfaces-showcase</finalName>
-
- <plugins>
- <plugin>
- <artifactId>maven-checkstyle-plugin</artifactId>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <version>6.1.18</version>
- <configuration>
- <scanIntervalSeconds>10</scanIntervalSeconds>
- <connectors>
- <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
- <port>${jetty.port}</port>
- <maxIdleTime>60000</maxIdleTime>
- </connector>
- </connectors>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <configuration>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- <plugin>
- <groupId>net.kindleit</groupId>
- <artifactId>maven-gae-plugin</artifactId>
- <version>0.7.3</version>
- <dependencies>
- <dependency>
- <groupId>net.kindleit</groupId>
- <artifactId>gae-runtime</artifactId>
- <version>${gae.version}</version>
- <type>pom</type>
- <exclusions>
- <exclusion>
- <groupId>com.google.appengine.orm</groupId>
- <artifactId>jdo2-api</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>gae</id>
- <dependencies>
- <dependency>
- <groupId>net.sf.ehcache</groupId>
- <artifactId>ehcache</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.glassfish.web</groupId>
- <artifactId>el-impl</artifactId>
- <version>2.2</version>
- </dependency>
- <dependency>
- <groupId>javax.el</groupId>
- <artifactId>el-api</artifactId>
- <version>2.2</version>
- </dependency>
- <dependency>
- <groupId>org.apache.geronimo.specs</groupId>
- <artifactId>geronimo-jta_1.1_spec</artifactId>
- <version>1.1.1</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.geronimo.specs</groupId>
- <artifactId>geronimo-jpa_3.0_spec</artifactId>
- <version>1.1.1</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>xalan</groupId>
- <artifactId>xalan</artifactId>
- <version>2.7.1</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.9.1</version>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- <build>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- </resource>
- <resource>
- <directory>src/main/resources-gae</directory>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>add-source</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-source</goal>
- </goals>
- <configuration>
- <sources>
- <source>src/main/java-gae-jsf-ri</source>
- </sources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <configuration>
- <webResources>
- <resource>
- <directory>src/main/webapp-gae</directory>
- </resource>
- <resource>
- <directory>src/main/webapp</directory>
- </resource>
- <resource>
- <directory>${project.build.directory}/generated-resources</directory>
- <targetPath>static-resources</targetPath>
- </resource>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.richfaces.cdk</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <version>${project.version}</version>
- <configuration>
- </configuration>
- <executions>
- <execution>
- <id>process</id>
- <goals>
- <goal>process</goal>
- </goals>
- <configuration>
- <outputDir>generated-resources</outputDir>
- <skins>
- <skin>blueSky</skin>
- <skin>classic</skin>
- <skin>deepMarine</skin>
- <skin>emeraldTown</skin>
- <skin>japanCherry</skin>
- <skin>ruby</skin>
- <skin>wine</skin>
- </skins>
- <includedContentTypes>
- <include>application/javascript</include>
- <include>text/css</include>
- <include>image/.+</include>
- </includedContentTypes>
- <fileNameMappings>
- <property>
- <name>^.*showcase.*/([^/]+\.css)$</name>
- <value>org.richfaces.showcase.css/$1</value>
- </property>
- <property>
- <name>^.+/([^/]+\.(png|gif|jpg))$</name>
- <value>org.richfaces.images/$1</value>
- </property>
- <property>
- <name>^.+/([^/]+\.css)$</name>
- <value>org.richfaces.css/$1</value>
- </property>
- </fileNameMappings>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>jdk5</id>
- <activation>
- <jdk>1.5</jdk>
- </activation>
- <dependencies>
- <dependency>
- <groupId>javax.xml.bind</groupId>
- <artifactId>jaxb-api</artifactId>
- <version>2.2</version>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>release</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <executions>
- <execution>
- <id>jee6</id>
- <phase>package</phase>
- <goals>
- <goal>war</goal>
- </goals>
- <configuration>
- <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
- <classifier>jee6</classifier>
- <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/jta-*,WEB-INF/lib/jstl-*,WEB-INF/lib/validation-api-*</packagingExcludes>
- <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/jta-*,WEB-INF/lib/jstl-*,WEB-INF/lib/validation-api-*</warSourceExcludes>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </execution>
- </executions>
- <configuration>
- <classifier>tomcat6</classifier>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
-
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <executions>
- <execution>
- <id>group-sources</id>
- <goals>
- <goal>single</goal>
- </goals>
- <phase>package</phase>
- <configuration>
- <finalName>sources</finalName>
- <descriptor>assembler.xml</descriptor>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>jar</goal>
- </goals>
- <phase>package</phase>
- <configuration>
- <classesDirectory>${basedir}/target/sources/sources</classesDirectory>
- <classifier>sources</classifier>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>jee6</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-war-plugin</artifactId>
- <configuration>
- <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
- <webResources>
- <resource>
- <directory>${basedir}/src/main/java</directory>
- <targetPath>/WEB-INF/src</targetPath>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-api</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.sun.faces</groupId>
- <artifactId>jsf-impl</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.transaction</groupId>
- <artifactId>jta</artifactId>
- <version>1.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>unpack-gae-sdk</id>
- <activation>
- <property>
- <name>!gae.home</name>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>com.google.appengine</groupId>
- <artifactId>appengine-java-sdk</artifactId>
- <version>${gae.version}</version>
- <type>zip</type>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>net.kindleit</groupId>
- <artifactId>maven-gae-plugin</artifactId>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/examples/richfaces...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/examples/richfaces-sh...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces</url>
- </scm>
-</project>
+<?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/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>richfaces-example-parent</artifactId>
+ <version>4.0.0.20101220-M5</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.richfaces.examples</groupId>
+ <artifactId>richfaces-showcase</artifactId>
+ <version>4.0.0.20101220-M5</version>
+ <packaging>war</packaging>
+ <name>Richfaces Examples: Richfaces Showcase Application</name>
+
+ <properties>
+ <gae.version>1.4.0</gae.version>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-components-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-components-ui</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.validation</groupId>
+ <artifactId>validation-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>net.sf.ehcache</groupId>
+ <artifactId>ehcache</artifactId>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <finalName>richfaces-showcase</finalName>
+
+ <plugins>
+ <plugin>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <version>6.1.18</version>
+ <configuration>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
+ <connectors>
+ <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>${jetty.port}</port>
+ <maxIdleTime>60000</maxIdleTime>
+ </connector>
+ </connectors>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <configuration>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>net.kindleit</groupId>
+ <artifactId>maven-gae-plugin</artifactId>
+ <version>0.7.3</version>
+ <dependencies>
+ <dependency>
+ <groupId>net.kindleit</groupId>
+ <artifactId>gae-runtime</artifactId>
+ <version>${gae.version}</version>
+ <type>pom</type>
+ <exclusions>
+ <exclusion>
+ <groupId>com.google.appengine.orm</groupId>
+ <artifactId>jdo2-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+
+ <profiles>
+ <profile>
+ <id>gae</id>
+ <dependencies>
+ <dependency>
+ <groupId>net.sf.ehcache</groupId>
+ <artifactId>ehcache</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.glassfish.web</groupId>
+ <artifactId>el-impl</artifactId>
+ <version>2.2</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.el</groupId>
+ <artifactId>el-api</artifactId>
+ <version>2.2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jta_1.1_spec</artifactId>
+ <version>1.1.1</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jpa_3.0_spec</artifactId>
+ <version>1.1.1</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>xalan</groupId>
+ <artifactId>xalan</artifactId>
+ <version>2.7.1</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.9.1</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <resources>
+ <resource>
+ <directory>src/main/resources</directory>
+ </resource>
+ <resource>
+ <directory>src/main/resources-gae</directory>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>add-source</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>add-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+ <source>src/main/java-gae-jsf-ri</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <configuration>
+ <webResources>
+ <resource>
+ <directory>src/main/webapp-gae</directory>
+ </resource>
+ <resource>
+ <directory>src/main/webapp</directory>
+ </resource>
+ <resource>
+ <directory>${project.build.directory}/generated-resources</directory>
+ <targetPath>static-resources</targetPath>
+ </resource>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.richfaces.cdk</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>${project.version}</version>
+ <configuration>
+ </configuration>
+ <executions>
+ <execution>
+ <id>process</id>
+ <goals>
+ <goal>process</goal>
+ </goals>
+ <configuration>
+ <outputDir>generated-resources</outputDir>
+ <skins>
+ <skin>blueSky</skin>
+ <skin>classic</skin>
+ <skin>deepMarine</skin>
+ <skin>emeraldTown</skin>
+ <skin>japanCherry</skin>
+ <skin>ruby</skin>
+ <skin>wine</skin>
+ </skins>
+ <includedContentTypes>
+ <include>application/javascript</include>
+ <include>text/css</include>
+ <include>image/.+</include>
+ </includedContentTypes>
+ <fileNameMappings>
+ <property>
+ <name>^.*showcase.*/([^/]+\.css)$</name>
+ <value>org.richfaces.showcase.css/$1</value>
+ </property>
+ <property>
+ <name>^.+/([^/]+\.(png|gif|jpg))$</name>
+ <value>org.richfaces.images/$1</value>
+ </property>
+ <property>
+ <name>^.+/([^/]+\.css)$</name>
+ <value>org.richfaces.css/$1</value>
+ </property>
+ </fileNameMappings>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>jdk5</id>
+ <activation>
+ <jdk>1.5</jdk>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ <version>2.2</version>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>release</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>jee6</id>
+ <phase>package</phase>
+ <goals>
+ <goal>war</goal>
+ </goals>
+ <configuration>
+ <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
+ <classifier>jee6</classifier>
+ <packagingExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/jta-*,WEB-INF/lib/jstl-*,WEB-INF/lib/validation-api-*</packagingExcludes>
+ <warSourceExcludes>WEB-INF/lib/jsf-api*,WEB-INF/lib/jsf-impl*,WEB-INF/lib/jta-*,WEB-INF/lib/jstl-*,WEB-INF/lib/validation-api-*</warSourceExcludes>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <classifier>tomcat6</classifier>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>group-sources</id>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <finalName>sources</finalName>
+ <descriptor>assembler.xml</descriptor>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ <phase>package</phase>
+ <configuration>
+ <classesDirectory>${basedir}/target/sources/sources</classesDirectory>
+ <classifier>sources</classifier>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>jee6</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-war-plugin</artifactId>
+ <configuration>
+ <webappDirectory>${project.build.directory}/${project.build.finalName}-jee6</webappDirectory>
+ <webResources>
+ <resource>
+ <directory>${basedir}/src/main/java</directory>
+ <targetPath>/WEB-INF/src</targetPath>
+ </resource>
+ </webResources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.sun.faces</groupId>
+ <artifactId>jsf-impl</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.transaction</groupId>
+ <artifactId>jta</artifactId>
+ <version>1.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>jstl</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>unpack-gae-sdk</id>
+ <activation>
+ <property>
+ <name>!gae.home</name>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>com.google.appengine</groupId>
+ <artifactId>appengine-java-sdk</artifactId>
+ <version>${gae.version}</version>
+ <type>zip</type>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>net.kindleit</groupId>
+ <artifactId>maven-gae-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>unpack</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5</url>
+ </scm>
+</project>
Modified: branches/4.0.0.M5/examples/template/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/template/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/template/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -3,14 +3,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.examples</groupId>
<artifactId>template</artifactId>
<packaging>war</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>examples template</name>
<dependencies>
</dependencies>
Modified: branches/4.0.0.M5/examples/validator-demo/pom.xml
===================================================================
--- branches/4.0.0.M5/examples/validator-demo/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/examples/validator-demo/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
@@ -12,7 +12,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>validator-demo</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>Richfaces Examples: Validators</name>
<packaging>war</packaging>
@@ -45,7 +45,7 @@
<dependency>
<groupId>org.richfaces.examples</groupId>
<artifactId>template</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<type>war</type>
</dependency>
<dependency>
Modified: branches/4.0.0.M5/parent/pom.xml
===================================================================
--- branches/4.0.0.M5/parent/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/parent/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -23,13 +23,13 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>RichFaces Root Parent</name>
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../bom/pom.xml</relativePath>
</parent>
@@ -394,11 +394,11 @@
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/parent
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/p...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/parent
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/parent
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/parent</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/parent</url>
</scm>
</project>
Modified: branches/4.0.0.M5/pom.xml
===================================================================
--- branches/4.0.0.M5/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>Richfaces Aggregator</name>
@@ -59,8 +59,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/common/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/common/api/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/common/api/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M5/ui/common/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/common/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/common/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.common</groupId>
<artifactId>richfaces-ui-common-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Common Aggregator</name>
Modified: branches/4.0.0.M5/ui/common/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/common/ui/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/common/ui/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M5/ui/core/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/core/api/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/core/api/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M5/ui/core/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/core/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/core/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.core</groupId>
<artifactId>richfaces-ui-core-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Core Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/core</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/core/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/core/ui/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/core/ui/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -61,10 +61,10 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/cor...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/core/ui
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/c...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/core/ui</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/core/ui</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/dist/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dist/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/dist/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -22,13 +22,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-assembler</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>Richfaces UI Assembler</name>
@@ -63,9 +63,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/dist</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/dist/richfaces-components-api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dist/richfaces-components-api/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/dist/richfaces-components-api/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-api</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>jar</packaging>
<name>Richfaces UI Components API</name>
@@ -180,8 +180,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dis...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dist/r...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/dist/richf...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/d...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/dist/...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/dist/richfaces-components-ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dist/richfaces-components-ui/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/dist/richfaces-components-ui/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-components-ui</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>jar</packaging>
<name>Richfaces UI Components UI</name>
@@ -243,9 +243,9 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dis...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/dist/r...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/dist/richf...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/d...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/dist/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/dnd/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dnd/api/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/dnd/api/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -64,9 +64,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output/pan...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/dnd/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dnd/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/dnd/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.dnd</groupId>
<artifactId>richfaces-ui-dnd-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Drag-n-Drop Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/dnd/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/dnd/ui/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/dnd/ui/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -77,9 +77,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output/pan...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/input/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/input/api/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/input/api/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M5/ui/input/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/input/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/input/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.input</groupId>
<artifactId>richfaces-ui-input-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Input Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/input</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/input</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/input</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/input</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/input/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/input/ui/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/input/ui/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M5/ui/iteration/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/iteration/api/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/iteration/api/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -54,9 +54,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/ite...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/iterat...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/iteration/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/iteration/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/iteration/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/iteration/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.iteration</groupId>
<artifactId>richfaces-ui-iteration-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Iteration Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/ite...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/iteration</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/iteration</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/iteration/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/iteration/ui/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/iteration/ui/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -60,8 +60,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/ite...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/iterat...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/iteration/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/misc/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/misc/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/misc/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.misc</groupId>
<artifactId>richfaces-ui-misc-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Miscellanous Aggregator</name>
@@ -40,9 +40,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/misc</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/misc</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/misc</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/misc</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/misc</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/misc/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/misc/ui/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/misc/ui/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.misc</groupId>
<artifactId>richfaces-ui-misc-ui</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>jar</packaging>
<name>Richfaces UI Misc UI</name>
@@ -155,10 +155,10 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/mis...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/misc/d...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/m...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/misc/dist/...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/misc/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/output/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/output/api/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/output/api/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -51,10 +51,10 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output/pan...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/output/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/output/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/output/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.output</groupId>
<artifactId>richfaces-ui-output-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Output Aggregator</name>
@@ -41,8 +41,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/output/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/output/ui/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/output/ui/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -76,9 +76,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/output...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/output/pan...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/parent/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/parent/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/parent/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<name>Richfaces UI Components Parent</name>
<packaging>pom</packaging>
@@ -194,8 +194,8 @@
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/parent</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/p...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M5/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<packaging>pom</packaging>
<name>RichFaces UI: Aggregator</name>
@@ -49,8 +49,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/build/parent/bra...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/build/parent/branch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/modules/build/parent/branches/4...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/modules/build/parent/tag...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/modules/build/parent/tags/4...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/modules/build/parent/tags/4.0.0...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/validator/api/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/validator/api/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/validator/api/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -60,9 +60,9 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/val...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/valida...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/validator/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/v...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/valid...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/validator/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/validator/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/validator/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.ui.validator</groupId>
@@ -38,8 +38,8 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/val...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/validator</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/validator</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/v...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/valid...</url>
</scm>
</project>
Modified: branches/4.0.0.M5/ui/validator/ui/pom.xml
===================================================================
--- branches/4.0.0.M5/ui/validator/ui/pom.xml 2010-12-21 01:49:40 UTC (rev 20709)
+++ branches/4.0.0.M5/ui/validator/ui/pom.xml 2010-12-21 01:50:29 UTC (rev 20710)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20101220-M5</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -135,8 +135,8 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/val...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M5/ui/valida...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M5/ui/validator/ui</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20101220-M5/ui/v...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20101220-M5/ui/valid...</url>
</scm>
</project>
14 years
JBoss Rich Faces SVN: r20709 - modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-12-20 20:49:40 -0500 (Mon, 20 Dec 2010)
New Revision: 20709
Modified:
modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml
Log:
Fixed typo
Modified: modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml
===================================================================
--- modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml 2010-12-21 01:44:36 UTC (rev 20708)
+++ modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml 2010-12-21 01:49:40 UTC (rev 20709)
@@ -155,7 +155,7 @@
<entry morerows="3"><classname>.rich-table-subfootercell</classname></entry>
<entry morerows="3">Defines the styles for a column footer cell</entry>
<entry><literal>tableBorderWidth</literal>, <literal>tableBorderColor</literal></entry>
- <entry><literal>border-right<literal>, <literal>border-bottom</literal></entry>
+ <entry><literal>border-right</literal>, <literal>border-bottom</literal></entry>
</row>
<row>
<entry><literal>generalTextColor</literal></entry>
14 years
JBoss Rich Faces SVN: r20708 - in modules/docs/trunk/Component_Reference/src/main/docbook/en-US: skinning and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: SeanRogers
Date: 2010-12-20 20:44:36 -0500 (Mon, 20 Dec 2010)
New Revision: 20708
Added:
modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/
modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml
Log:
Added test skinning reference
Added: modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml
===================================================================
--- modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml (rev 0)
+++ modules/docs/trunk/Component_Reference/src/main/docbook/en-US/skinning/skin-richdataTable.xml 2010-12-21 01:44:36 UTC (rev 20708)
@@ -0,0 +1,203 @@
+<?xml version='1.0' encoding='utf-8' ?>
+<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
+<section id="skin-richdataTable">
+ <title><sgmltag><rich:dataTable></sgmltag> style classes and skin parameters</title>
+ <table id="tabl-richdataTable-Style_classes_with_corresponding_skin_parameters">
+ <title>Style classes (selectors) with corresponding skin parameters</title>
+ <tgroup cols="4">
+ <thead>
+ <row>
+ <entry>Class (selector) name</entry>
+ <entry>Description</entry>
+ <entry>Skin Parameters</entry>
+ <entry><acronym>CSS</acronym> properties mapped</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><classname>.rich-table</classname></entry>
+ <entry>Defines the styles for a table</entry>
+ <entry><literal>tableBackgroundColor</literal></entry>
+ <entry><literal>background-color</literal></entry>
+ </row>
+
+ <row>
+ <entry morerows="2"><classname>.rich-table-cell</classname></entry>
+ <entry morerows="2">Defines the styles for a table cell</entry>
+ <entry><literal>generalSizeFont</literal></entry>
+ <entry><literal>font-size</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalTextColor</literal></entry>
+ <entry><literal>color</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalFamilyFont</literal></entry>
+ <entry><literal>font-family</literal></entry>
+ </row>
+
+ <row>
+ <entry><classname>.rich-table-header</classname></entry>
+ <entry>Defines the styles for a table header row</entry>
+ <entry><literal>headerBackgroundColor</literal></entry>
+ <entry><literal>background-color</literal></entry>
+ </row>
+
+ <row>
+ <entry><classname>.rich-table-header-continue</classname></entry>
+ <entry>Defines the styles for all header lines after the first</entry>
+ <entry><literal>headerBackgroundColor</literal></entry>
+ <entry><literal>background-color</literal></entry>
+ </row>
+
+ <row>
+ <entry morerows="4"><classname>.rich-table-headercell</classname></entry>
+ <entry morerows="4">Defines the styles for a header cell</entry>
+ <entry><literal>tableBorderWidth</literal>, <literal>tableBorderColor</literal></entry>
+ <entry><literal>border-right, border-bottom</literal></entry>
+ </row>
+ <row>
+ <entry><literal>headerTextColor</literal></entry>
+ <entry><literal>color</literal></entry>
+ </row>
+ <row>
+ <entry><literal>headerWeightFont</literal></entry>
+ <entry><literal>font-weight</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalSizeFont</literal></entry>
+ <entry><literal>font-size</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalFamilyFont</literal></entry>
+ <entry><literal>font-family</literal></entry>
+ </row>
+
+ <row>
+ <entry><classname>.rich-table-subheader</classname></entry>
+ <entry>Defines the styles for a column header</entry>
+ <entry><literal>additionalBackgroundColor</literal></entry>
+ <entry><literal>background-color</literal></entry>
+ </row>
+
+ <row>
+ <entry><classname>.rich-table-thead</classname></entry>
+ <entry>Defines the styles for the separator between the header and the rest of the table</entry>
+ <entry><literal>tableBorderWidth</literal>, <literal>tableBorderColor</literal></entry>
+ <entry><literal>border-bottom</literal></entry>
+ </row>
+
+ <row>
+ <entry morerows="3"><classname>.rich-table-subheadercell</classname></entry>
+ <entry morerows="3">Defines the styles for a column header cell</entry>
+ <entry><literal>tableBorderWidth</literal>, <literal>tableBorderColor</literal></entry>
+ <entry><literal>border-right</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalTextColor</literal></entry>
+ <entry><literal>color</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalSizeFont</literal></entry>
+ <entry><literal>font-size</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalFamilyFont</literal></entry>
+ <entry><literal>font-family</literal></entry>
+ </row>
+
+ <row>
+ <entry><classname>.rich-table-footer</classname></entry>
+ <entry>Defines the styles for a footer row</entry>
+ <entry><literal>tableFooterBackgroundColor</literal></entry>
+ <entry><literal>background-color</literal></entry>
+ </row>
+
+ <row>
+ <entry><classname>.rich-table-footer-continue</classname></entry>
+ <entry>Defines the styles for all footer lines after the first</entry>
+ <entry><literal>tableFooterBackgroundColor</literal></entry>
+ <entry><literal>background-color</literal></entry>
+ </row>
+
+ <row>
+ <entry morerows="4"><classname>.rich-table-footercell</classname></entry>
+ <entry morerows="4">Defines styles for a footer cell</entry>
+ <entry><literal>tableBorderWidth, tableBorderColor</literal></entry>
+ <entry><literal>border-right, border-bottom</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalTextColor</literal></entry>
+ <entry><literal>color</literal></entry>
+ </row>
+ <row>
+ <entry><literal>headerWeightFont</literal></entry>
+ <entry><literal>font-weight</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalSizeFont</literal></entry>
+ <entry><literal>font-size</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalFamilyFont</literal></entry>
+ <entry><literal>font-family</literal></entry>
+ </row>
+
+ <row>
+ <entry><classname>.rich-table-subfooter</classname></entry>
+ <entry>Defines the styles for a column footer</entry>
+ <entry><literal>tableSubfooterBackgroundColor</literal></entry>
+ <entry><literal>background-color</literal></entry>
+ </row>
+
+ <row>
+ <entry morerows="3"><classname>.rich-table-subfootercell</classname></entry>
+ <entry morerows="3">Defines the styles for a column footer cell</entry>
+ <entry><literal>tableBorderWidth</literal>, <literal>tableBorderColor</literal></entry>
+ <entry><literal>border-right<literal>, <literal>border-bottom</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalTextColor</literal></entry>
+ <entry><literal>color</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalSizeFont</literal></entry>
+ <entry><literal>font-size</literal></entry>
+ </row>
+ <row>
+ <entry><literal>generalFamilyFont</literal></entry>
+ <entry><literal>font-family</literal></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <table id="tabl-richdataTable-Style_classes_without_skin_parameters">
+ <title>Style classes (selectors) without skin parameters</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Class name</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><classname>.rich-table-caption</classname></entry>
+ <entry>Defines styles for a "caption" facet element</entry>
+ </row>
+
+ <row>
+ <entry><classname>.rich-table-row</classname></entry>
+ <entry>Defines styles for a table row</entry>
+ </row>
+
+ <row>
+ <entry><classname>.rich-table-firstrow</classname></entry>
+ <entry>Defines styles for a table's first row</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+</section>
14 years