JBoss Rich Faces SVN: r21523 - trunk/core/impl/src/main/resources/META-INF/resources.
by richfaces-svn-commits@lists.jboss.org
Author: konstantin.mishin
Date: 2011-02-07 15:17:53 -0500 (Mon, 07 Feb 2011)
New Revision: 21523
Modified:
trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js
trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js
Log:
RF-10367
Modified: trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js
===================================================================
--- trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js 2011-02-07 18:05:06 UTC (rev 21522)
+++ trunk/core/impl/src/main/resources/META-INF/resources/richfaces-queue.js 2011-02-07 20:17:53 UTC (rev 21523)
@@ -37,6 +37,11 @@
richfaces.ajax.jsfResponse = jsf.ajax.response;
+ richfaces.ajax.isIgnoreResponse = function() {
+ return richfaces.queue.isIgnoreResponse();
+ };
+
+
jsf.ajax.response = function(request, context) {
richfaces.queue.response(request, context);
};
@@ -388,15 +393,19 @@
},
response: function (request, context) {
- var lastEntry = getLastEntry();
- if (!lastEntry || !lastRequestedEntry.isIgnoreDupResponses() || lastRequestedEntry.getRequestGroupId() != lastEntry.getRequestGroupId()) {
- richfaces.ajax.jsfResponse(request, context);
- } else {
+ if (this.isIgnoreResponse()) {
lastRequestedEntry = null;
submitFirstEntry();
+ } else {
+ richfaces.ajax.jsfResponse(request, context);
}
},
+ isIgnoreResponse: function () {
+ var lastEntry = getLastEntry();
+ return lastEntry && lastRequestedEntry.isIgnoreDupResponses() && lastRequestedEntry.getRequestGroupId() == lastEntry.getRequestGroupId();
+ },
+
/**
* Remove all QueueEntry from the queue
* @function
Modified: trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js
===================================================================
--- trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js 2011-02-07 18:05:06 UTC (rev 21522)
+++ trunk/core/impl/src/main/resources/META-INF/resources/richfaces.js 2011-02-07 20:17:53 UTC (rev 21523)
@@ -408,6 +408,8 @@
ignoreSuccess = true;
} else if (ignoreSuccess) {
return;
+ } else if (status == 'complete' && richfaces.ajax.isIgnoreResponse && richfaces.ajax.isIgnoreResponse()) {
+ return;
}
var typeHandlers = jsfEventsAdapterEventNames[type];
15 years, 2 months
JBoss Rich Faces SVN: r21522 - trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit.
by richfaces-svn-commits@lists.jboss.org
Author: artdaw
Date: 2011-02-07 13:05:06 -0500 (Mon, 07 Feb 2011)
New Revision: 21522
Modified:
trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java
trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/CollapsibleSubTableRenderer.java
trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/DataTableRenderer.java
Log:
RF-10290: attribute style s fixed for dataTable and collapcibleSubTable
Modified: trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java
===================================================================
--- trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java 2011-02-07 17:22:21 UTC (rev 21521)
+++ trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/AbstractTableRenderer.java 2011-02-07 18:05:06 UTC (rev 21522)
@@ -22,19 +22,18 @@
package org.richfaces.renderkit;
-import java.io.IOException;
-import java.util.Iterator;
+import org.richfaces.component.Row;
+import org.richfaces.component.UIDataTableBase;
+import org.richfaces.component.util.HtmlUtil;
import javax.faces.application.ResourceDependencies;
import javax.faces.application.ResourceDependency;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
+import java.io.IOException;
+import java.util.Iterator;
-import org.richfaces.component.Row;
-import org.richfaces.component.UIDataTableBase;
-import org.richfaces.component.util.HtmlUtil;
-
/**
* @author Anton Belevich
*
@@ -125,7 +124,7 @@
Object key = dataTable.getRowKey();
dataTable.captureOrigValue(context);
dataTable.setRowKey(context, null);
-
+
encodeTableStructure(writer, context, dataTable);
encodeHeaderFacet(writer, context, dataTable, false);
@@ -236,7 +235,6 @@
writer.writeAttribute(HtmlConstants.ID_ATTRIBUTE, clientId + ":tb", null);
writer.writeAttribute(HtmlConstants.CLASS_ATTRIBUTE, getTableBodySkinClass(), null);
- encodeStyle(writer, facesContext, dataTableBase, null);
}
public void encodeTableBodyEnd(ResponseWriter writer) throws IOException {
Modified: trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/CollapsibleSubTableRenderer.java
===================================================================
--- trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/CollapsibleSubTableRenderer.java 2011-02-07 17:22:21 UTC (rev 21521)
+++ trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/CollapsibleSubTableRenderer.java 2011-02-07 18:05:06 UTC (rev 21522)
@@ -23,10 +23,14 @@
package org.richfaces.renderkit;
-import java.io.IOException;
-import java.util.HashMap;
-import java.util.Iterator;
-import java.util.Map;
+import org.ajax4jsf.javascript.JSFunction;
+import org.richfaces.cdk.annotations.JsfRenderer;
+import org.richfaces.component.AbstractCollapsibleSubTable;
+import org.richfaces.component.AbstractDataTable;
+import org.richfaces.component.Row;
+import org.richfaces.component.UIDataTableBase;
+import org.richfaces.event.ToggleEvent;
+import org.richfaces.renderkit.util.AjaxRendererUtils;
import javax.faces.application.ResourceDependencies;
import javax.faces.application.ResourceDependency;
@@ -35,16 +39,11 @@
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
import javax.faces.event.AbortProcessingException;
+import java.io.IOException;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.Map;
-import org.ajax4jsf.javascript.JSFunction;
-import org.richfaces.cdk.annotations.JsfRenderer;
-import org.richfaces.component.AbstractCollapsibleSubTable;
-import org.richfaces.component.AbstractDataTable;
-import org.richfaces.component.Row;
-import org.richfaces.component.UIDataTableBase;
-import org.richfaces.event.ToggleEvent;
-import org.richfaces.renderkit.util.AjaxRendererUtils;
-
/**
* @author Anton Belevich
*
@@ -136,6 +135,8 @@
public void encodeTableFacets(ResponseWriter writer, FacesContext context, UIDataTableBase dataTable) throws IOException {
AbstractCollapsibleSubTable subTable = (AbstractCollapsibleSubTable)dataTable;
+ encodeStyle(writer, context, subTable, null);
+
encodeHeaderFacet(writer, context, subTable, false);
String rowClass = getRowSkinClass();
Modified: trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/DataTableRenderer.java
===================================================================
--- trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/DataTableRenderer.java 2011-02-07 17:22:21 UTC (rev 21521)
+++ trunk/ui/iteration/ui/src/main/java/org/richfaces/renderkit/DataTableRenderer.java 2011-02-07 18:05:06 UTC (rev 21522)
@@ -22,18 +22,6 @@
package org.richfaces.renderkit;
-import java.io.IOException;
-import java.util.HashMap;
-import java.util.Iterator;
-import java.util.Map;
-
-import javax.faces.application.ResourceDependencies;
-import javax.faces.application.ResourceDependency;
-import javax.faces.component.UIColumn;
-import javax.faces.component.UIComponent;
-import javax.faces.context.FacesContext;
-import javax.faces.context.ResponseWriter;
-
import org.ajax4jsf.javascript.JSFunction;
import org.richfaces.cdk.annotations.JsfRenderer;
import org.richfaces.component.AbstractCollapsibleSubTable;
@@ -43,6 +31,17 @@
import org.richfaces.component.util.HtmlUtil;
import org.richfaces.renderkit.util.AjaxRendererUtils;
+import javax.faces.application.ResourceDependencies;
+import javax.faces.application.ResourceDependency;
+import javax.faces.component.UIColumn;
+import javax.faces.component.UIComponent;
+import javax.faces.context.FacesContext;
+import javax.faces.context.ResponseWriter;
+import java.io.IOException;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.Map;
+
/**
* @author Anton Belevich
*/
@@ -97,6 +96,7 @@
public void encodeTableStructure(ResponseWriter writer, FacesContext context, UIDataTableBase dataTable)
throws IOException {
if (dataTable instanceof AbstractDataTable) {
+ encodeStyle(writer, context, dataTable, null);
encodeCaption(writer, context, (AbstractDataTable) dataTable);
// TODO nick - do we need this element if "columnsWidth" is absent?
writer.startElement(HtmlConstants.COLGROUP_ELEMENT, dataTable);
15 years, 2 months
JBoss Rich Faces SVN: r21521 - trunk/core/impl/src/main/java/org/richfaces/context.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2011-02-07 12:22:21 -0500 (Mon, 07 Feb 2011)
New Revision: 21521
Modified:
trunk/core/impl/src/main/java/org/richfaces/context/ComponentIdResolver.java
Log:
https://issues.jboss.org/browse/RF-10426
Modified: trunk/core/impl/src/main/java/org/richfaces/context/ComponentIdResolver.java
===================================================================
--- trunk/core/impl/src/main/java/org/richfaces/context/ComponentIdResolver.java 2011-02-07 17:17:09 UTC (rev 21520)
+++ trunk/core/impl/src/main/java/org/richfaces/context/ComponentIdResolver.java 2011-02-07 17:22:21 UTC (rev 21521)
@@ -23,7 +23,6 @@
import static org.richfaces.component.MetaComponentResolver.META_COMPONENT_SEPARATOR_CHAR;
import static org.richfaces.util.Util.NamingContainerDataHolder.SEPARATOR_CHAR;
-import static org.richfaces.util.Util.NamingContainerDataHolder.SEPARATOR_CHAR_JOINER;
import java.util.Collection;
import java.util.Collections;
@@ -44,6 +43,7 @@
import org.richfaces.context.IdParser.Node;
import org.richfaces.renderkit.util.CoreRendererUtils;
+import com.google.common.base.Joiner;
import com.google.common.base.Strings;
import com.google.common.collect.Iterators;
@@ -53,6 +53,8 @@
*/
public final class ComponentIdResolver {
+ private static final Joiner EMPTY_STRING_JOINER = Joiner.on("").skipNulls();
+
private static Map<String, String> metaComponentSubstitutions = new HashMap<String, String>();
static {
@@ -162,30 +164,37 @@
return false;
}
+ private String getMetaComponentId(String s) {
+ int metaComponentIdx = s.indexOf(META_COMPONENT_SEPARATOR_CHAR);
+
+ if (metaComponentIdx < 0) {
+ return null;
+ } else {
+ return s.substring(metaComponentIdx);
+ }
+ }
+
private Collection<String> computeClientIds(FacesContext context,
- UIComponent topMatchComponent, String id) {
+ UIComponent topMatchComponent, UIComponent bottomMatchComponent, String id) {
- String clientId;
-
- int idx = id.indexOf(SEPARATOR_CHAR);
- if (idx < 0) {
- int metaSepIdx = id.indexOf(META_COMPONENT_SEPARATOR_CHAR);
- if (metaSepIdx > 0) {
- clientId = topMatchComponent.getClientId(facesContext) + id.substring(metaSepIdx);
- } else {
- clientId = topMatchComponent.getClientId(facesContext);
- }
+ Node[] nodes = IdParser.parse(id);
+ if (!hasFunctionNodes(nodes)) {
+ return Collections.singleton(EMPTY_STRING_JOINER.join(bottomMatchComponent.getClientId(facesContext), getMetaComponentId(id)));
} else {
- clientId = SEPARATOR_CHAR_JOINER.join(topMatchComponent.getClientId(facesContext), id.substring(idx + 1));
- }
-
- Node[] nodes = IdParser.parse(clientId);
- if (hasFunctionNodes(nodes)) {
- ClientIdFunctionEvaluator evaluator = new ClientIdFunctionEvaluator(context, nodes);
+ String topMatchClientId = topMatchComponent.getClientId(facesContext);
+ Node[] topMatchNodes = IdParser.parse(topMatchClientId);
+ //topMatchNodes & nodes have 1 element overlap
+ Node[] mergedNodes = new Node[topMatchNodes.length + nodes.length - 1];
+
+ int destPos = topMatchNodes.length;
+
+ System.arraycopy(topMatchNodes, 0, mergedNodes, 0, destPos);
+ System.arraycopy(nodes, 1, mergedNodes, destPos, nodes.length - 1);
+
+ ClientIdFunctionEvaluator evaluator = new ClientIdFunctionEvaluator(context, mergedNodes);
+
return evaluator.evaluate(topMatchComponent);
- } else {
- return Collections.singleton(clientId);
}
}
@@ -355,7 +364,7 @@
}
resolvedIds.add(resolvedId);
} else {
- resolvedIds.addAll(computeClientIds(facesContext, topMatch, fullId));
+ resolvedIds.addAll(computeClientIds(facesContext, topMatch, bottomMatch, fullId));
}
}
}
15 years, 2 months
JBoss Rich Faces SVN: r21520 - trunk/core/impl/src/main/java/org/richfaces/renderkit/html/images.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2011-02-07 12:17:09 -0500 (Mon, 07 Feb 2011)
New Revision: 21520
Added:
trunk/core/impl/src/main/java/org/richfaces/renderkit/html/images/ButtonHoverBackgroundImage.java
Log:
https://issues.jboss.org/browse/RF-8675
Added: trunk/core/impl/src/main/java/org/richfaces/renderkit/html/images/ButtonHoverBackgroundImage.java
===================================================================
--- trunk/core/impl/src/main/java/org/richfaces/renderkit/html/images/ButtonHoverBackgroundImage.java (rev 0)
+++ trunk/core/impl/src/main/java/org/richfaces/renderkit/html/images/ButtonHoverBackgroundImage.java 2011-02-07 17:17:09 UTC (rev 21520)
@@ -0,0 +1,41 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.richfaces.renderkit.html.images;
+
+import javax.faces.context.FacesContext;
+
+import org.richfaces.skin.Skin;
+
+/**
+ */
+
+public class ButtonHoverBackgroundImage extends BaseControlBackgroundImage {
+
+ @Override
+ protected void initializeProperties(FacesContext context, Skin skin) {
+ super.initializeProperties(context, skin);
+ setBaseColorParam(Skin.HEADER_BACKGROUND_COLOR);
+ setGradientColorParam(Skin.HEADER_GRADIENT_COLOR);
+ setWidth(1);
+ }
+}
15 years, 2 months
JBoss Rich Faces SVN: r21519 - in modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest: richPanelMenuGroup and 1 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2011-02-07 11:23:53 -0500 (Mon, 07 Feb 2011)
New Revision: 21519
Modified:
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/model/PanelMenu.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/AbstractPanelMenuGroupTest.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupClientSideHandlers.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupMode.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupSimple.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemClientSideHandlers.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemMode.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemSimple.java
Log:
fixed panelMenu tests after changes in PanelMenu model (RFPL-950)
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/model/PanelMenu.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/model/PanelMenu.java 2011-02-07 16:23:01 UTC (rev 21518)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/model/PanelMenu.java 2011-02-07 16:23:53 UTC (rev 21519)
@@ -29,8 +29,8 @@
private ReferencedLocator<JQueryLocator> anyDisabledItem = ref(root, "div[class*=rf-pm-][class*=-itm-dis]");
private ReferencedLocator<JQueryLocator> anyDisabledGroup = ref(root, "div[class*=rf-pm-][class*=-gr-dis]");
- PanelMenuMode groupMode = PanelMenuMode.client;
- PanelMenuMode itemMode = PanelMenuMode.ajax;
+ PanelMenuMode groupMode;
+ PanelMenuMode itemMode;
public PanelMenu(JQueryLocator root) {
super(root);
@@ -83,23 +83,23 @@
public Group getAnyTopGroup() {
return new Group(topGroups.getReferenced());
}
-
+
public Group getAnySelectedItem() {
return new Group(anySelectedItem.getReferenced());
}
-
+
public Group getAnySelectedGroup() {
return new Group(anySelectedGroup.getReferenced());
}
-
+
public Group getAnyDisabledItem() {
return new Group(anyDisabledItem.getReferenced());
}
-
+
public Group getAnyDisabledGroup() {
return new Group(anyDisabledGroup.getReferenced());
}
-
+
public Group getAnyExpandedGroup() {
return new Group(JQuerySelectors.append(topGroups, ":has(.rf-pm-hdr-exp)"));
}
@@ -163,11 +163,11 @@
public boolean isSelected() {
return selenium.getAttribute(header.getAttribute(CLASS)).contains("-sel");
}
-
+
public boolean isExpanded() {
return selenium.getAttribute(header.getAttribute(CLASS)).contains("-exp");
}
-
+
public boolean isCollapsed() {
return selenium.getAttribute(header.getAttribute(CLASS)).contains("-colps");
}
@@ -197,11 +197,15 @@
}
public void toggle() {
- new GuardRequest(getRequestTypeForMode(groupMode)) {
- public void command() {
- selenium.click(label);
- }
- }.waitRequest();
+ if (groupMode == null) {
+ selenium.click(label);
+ } else {
+ new GuardRequest(getRequestTypeForMode(groupMode)) {
+ public void command() {
+ selenium.click(label);
+ }
+ }.waitRequest();
+ }
}
public class Icon extends PanelMenu.Icon {
@@ -256,11 +260,15 @@
}
public void select() {
- new GuardRequest(getRequestTypeForMode(itemMode)) {
- public void command() {
- selenium.click(label);
- }
- }.waitRequest();
+ if (itemMode == null) {
+ selenium.click(label);
+ } else {
+ new GuardRequest(getRequestTypeForMode(itemMode)) {
+ public void command() {
+ selenium.click(label);
+ }
+ }.waitRequest();
+ }
}
public void hover() {
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/AbstractPanelMenuGroupTest.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/AbstractPanelMenuGroupTest.java 2011-02-07 16:23:01 UTC (rev 21518)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/AbstractPanelMenuGroupTest.java 2011-02-07 16:23:53 UTC (rev 21519)
@@ -1,14 +1,39 @@
+/*******************************************************************************
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ *******************************************************************************/
package org.richfaces.tests.metamer.ftest.richPanelMenuGroup;
import static org.jboss.test.selenium.utils.URLUtils.buildUrl;
+import static org.richfaces.PanelMenuMode.ajax;
import java.net.URL;
-import org.jboss.test.selenium.GuardRequest;
-import org.jboss.test.selenium.request.RequestType;
import org.richfaces.tests.metamer.ftest.AbstractMetamerTest;
import org.richfaces.tests.metamer.ftest.model.PanelMenu;
+import org.testng.annotations.BeforeMethod;
+/**
+ * @author <a href="mailto:lfryc@redhat.com">Lukas Fryc</a>
+ * @version $Revision$
+ */
public abstract class AbstractPanelMenuGroupTest extends AbstractMetamerTest {
PanelMenuGroupAttributes attributes = new PanelMenuGroupAttributes();
@@ -23,23 +48,9 @@
return buildUrl(contextPath, "faces/components/richPanelMenuGroup/simple.xhtml");
}
- void toggleGroup() {
- new GuardRequest(getRequestTypeForMode()) {
- @Override
- public void command() {
- topGroup.toggle();
- }
- }.waitRequest();
+ @BeforeMethod
+ public void setupModes() {
+ attributes.setMode(ajax);
+ menu.setGroupMode(ajax);
}
-
- RequestType getRequestTypeForMode() {
- switch (attributes.getMode()) {
- case ajax:
- return RequestType.XHR;
- case server:
- return RequestType.HTTP;
- default:
- return RequestType.NONE;
- }
- }
}
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupClientSideHandlers.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupClientSideHandlers.java 2011-02-07 16:23:01 UTC (rev 21518)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupClientSideHandlers.java 2011-02-07 16:23:53 UTC (rev 21519)
@@ -59,9 +59,10 @@
@Use(field = "event", value = "ajaxCollapsionEvents")
public void testClientSideCollapsionEvent() {
attributes.setMode(ajax);
- toggleGroup();
+ menu.setGroupMode(ajax);
+
super.testRequestEventsBefore(event);
- toggleGroup();
+ topGroup.toggle();
super.testRequestEventsAfter(event);
}
@@ -69,60 +70,67 @@
@Use(field = "event", value = "ajaxExpansionEvents")
public void testClientSideExpansionEvent() {
attributes.setMode(ajax);
+ menu.setGroupMode(ajax);
super.testRequestEventsBefore(event);
- toggleGroup();
+ topGroup.toggle();
super.testRequestEventsAfter(event);
}
@Test
public void testClientSideExpansionEventsOrderClient() {
attributes.setMode(client);
+ menu.setGroupMode(client);
super.testRequestEventsBefore(serverExpansionEvents);
- toggleGroup();
+ topGroup.toggle();
super.testRequestEventsAfter(serverExpansionEvents);
}
@Test
public void testClientSideCollapsionEventsOrderClient() {
attributes.setMode(client);
- toggleGroup();
+ menu.setGroupMode(client);
+ topGroup.toggle();
super.testRequestEventsBefore(clientCollapsionEvents);
- toggleGroup();
+ topGroup.toggle();
super.testRequestEventsAfter(clientCollapsionEvents);
}
@Test
public void testClientSideExpansionEventsOrderAjax() {
attributes.setMode(ajax);
+ menu.setGroupMode(ajax);
super.testRequestEventsBefore(ajaxExpansionEvents);
- toggleGroup();
+ topGroup.toggle();
super.testRequestEventsAfter(ajaxExpansionEvents);
}
@Test
public void testClientSideCollapsionEventsOrderAjax() {
attributes.setMode(ajax);
- toggleGroup();
+ menu.setGroupMode(ajax);
+ topGroup.toggle();
super.testRequestEventsBefore(ajaxCollapsionEvents);
- toggleGroup();
+ topGroup.toggle();
super.testRequestEventsAfter(ajaxCollapsionEvents);
}
@Test
public void testClientSideExpansionEventsOrderServer() {
attributes.setMode(server);
- toggleGroup();
+ menu.setGroupMode(server);
+ topGroup.toggle();
super.testRequestEventsBefore(serverExpansionEvents);
- toggleGroup();
+ topGroup.toggle();
super.testRequestEventsAfter(serverExpansionEvents);
}
@Test
public void testClientSideCollapsionEventsOrderServer() {
attributes.setMode(server);
- toggleGroup();
+ menu.setGroupMode(server);
+ topGroup.toggle();
super.testRequestEventsBefore(serverCollapsionEvents);
- toggleGroup();
+ topGroup.toggle();
super.testRequestEventsAfter(serverCollapsionEvents);
}
}
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupMode.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupMode.java 2011-02-07 16:23:01 UTC (rev 21518)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupMode.java 2011-02-07 16:23:53 UTC (rev 21519)
@@ -68,10 +68,11 @@
attributes.setImmediate(immediate);
attributes.setBypassUpdates(bypassUpdates);
attributes.setMode(mode);
+ menu.setGroupMode(mode);
attributes.setExecute("@this executeChecker");
- toggleGroup();
+ topGroup.toggle();
if (mode != PanelMenuMode.client) {
if ("phases".equals(listener)) {
@@ -86,7 +87,7 @@
@Uses({ @Use(field = "immediate", empty = true), @Use(field = "bypassUpdates", empty = true),
@Use(field = "mode", empty = true), @Use(field = "listener", empty = true) })
public void testClientMode() {
- toggleGroup();
+ topGroup.toggle();
}
private PhaseId[] getExpectedPhases() {
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupSimple.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupSimple.java 2011-02-07 16:23:01 UTC (rev 21518)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuGroup/TestPanelMenuGroupSimple.java 2011-02-07 16:23:53 UTC (rev 21519)
@@ -72,7 +72,7 @@
public void testLeftCollapsedIcon() {
attributes.setLeftCollapsedIcon(CHEVRON_DOWN);
- toggleGroup();
+ topGroup.toggle();
assertTrue(leftIcon.containsClass(CHEVRON_DOWN_CLASS));
@@ -141,7 +141,7 @@
public void testRightCollapsedIcon() {
attributes.setRightCollapsedIcon(CHEVRON_DOWN);
- toggleGroup();
+ topGroup.toggle();
assertTrue(rightIcon.containsClass(CHEVRON_DOWN_CLASS));
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemClientSideHandlers.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemClientSideHandlers.java 2011-02-07 16:23:01 UTC (rev 21518)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemClientSideHandlers.java 2011-02-07 16:23:53 UTC (rev 21519)
@@ -62,52 +62,36 @@
@Use(field = "event", value = "ajaxEvents")
public void testClientSideEvent() {
attributes.setMode(ajax);
+ menu.setItemMode(ajax);
super.testRequestEventsBefore(event);
- selectItem();
+ item.select();
super.testRequestEventsAfter(event);
}
@Test
public void testClientSideEventsOrderClient() {
attributes.setMode(client);
+ menu.setItemMode(client);
super.testRequestEventsBefore(clientEvents);
- selectItem();
+ item.select();
super.testRequestEventsAfter(clientEvents);
}
@Test
public void testClientSideEventsOrderAjax() {
attributes.setMode(ajax);
+ menu.setItemMode(ajax);
super.testRequestEventsBefore(ajaxEvents);
- selectItem();
+ item.select();
super.testRequestEventsAfter(ajaxEvents);
}
@Test
public void testClientSideEventsOrderServer() {
attributes.setMode(server);
+ menu.setItemMode(server);
super.testRequestEventsBefore(serverEvents);
- selectItem();
+ item.select();
super.testRequestEventsAfter(serverEvents);
}
-
- private void selectItem() {
- new GuardRequest(getRequestTypeForMode()) {
- @Override
- public void command() {
- item.select();
- }
- }.waitRequest();
- }
-
- private RequestType getRequestTypeForMode() {
- switch (attributes.getMode()) {
- case ajax:
- return RequestType.XHR;
- case server:
- return RequestType.HTTP;
- default:
- return RequestType.NONE;
- }
- }
}
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemMode.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemMode.java 2011-02-07 16:23:01 UTC (rev 21518)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemMode.java 2011-02-07 16:23:53 UTC (rev 21519)
@@ -34,8 +34,6 @@
import javax.faces.event.PhaseId;
-import org.jboss.test.selenium.GuardRequest;
-import org.jboss.test.selenium.request.RequestType;
import org.richfaces.PanelMenuMode;
import org.richfaces.tests.metamer.ftest.AbstractMetamerTest;
import org.richfaces.tests.metamer.ftest.annotations.Inject;
@@ -81,15 +79,11 @@
attributes.setImmediate(immediate);
attributes.setBypassUpdates(bypassUpdates);
attributes.setMode(mode);
+ menu.setItemMode(mode);
attributes.setExecute("@this executeChecker");
- new GuardRequest(getRequestTypeForMode()) {
- @Override
- public void command() {
- item.select();
- }
- }.waitRequest();
+ item.select();
if (mode != PanelMenuMode.client) {
if ("phases".equals(listener)) {
@@ -119,15 +113,4 @@
PhaseId[] phases = getExpectedPhases();
return phases[phases.length - 2];
}
-
- private RequestType getRequestTypeForMode() {
- switch (mode) {
- case ajax:
- return RequestType.XHR;
- case server:
- return RequestType.HTTP;
- default:
- return RequestType.NONE;
- }
- }
}
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemSimple.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemSimple.java 2011-02-07 16:23:01 UTC (rev 21518)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenuItem/TestPanelMenuItemSimple.java 2011-02-07 16:23:53 UTC (rev 21519)
@@ -9,8 +9,10 @@
import org.jboss.test.selenium.GuardRequest;
import org.jboss.test.selenium.request.RequestType;
+import org.richfaces.PanelMenuMode;
import org.richfaces.tests.metamer.ftest.AbstractMetamerTest;
import org.richfaces.tests.metamer.ftest.model.PanelMenu;
+import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
/**
@@ -33,6 +35,12 @@
public URL getTestUrl() {
return buildUrl(contextPath, "faces/components/richPanelMenuItem/simple.xhtml");
}
+
+ @BeforeMethod
+ public void setupMode() {
+ attributes.setMode(PanelMenuMode.ajax);
+ menu.setItemMode(PanelMenuMode.ajax);
+ }
@Test
public void testData() {
@@ -48,6 +56,7 @@
@Test
public void testDisabled() {
+ menu.setItemMode(null);
assertFalse(item.isDisabled());
attributes.setDisabled(true);
@@ -152,6 +161,7 @@
@Test
public void testSelectable() {
+ menu.setItemMode(null);
attributes.setSelectable(false);
new GuardRequest(RequestType.NONE) {
15 years, 2 months
JBoss Rich Faces SVN: r21518 - in modules/tests/metamer/trunk: ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2011-02-07 11:23:01 -0500 (Mon, 07 Feb 2011)
New Revision: 21518
Added:
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/TestPanelMenuIcon.java
Modified:
modules/tests/metamer/trunk/application/src/main/webapp/components/richPanelMenu/simple.xhtml
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/AbstractPanelMenuTest.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/PanelMenuAttributes.java
modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/TestPanelMenuDOMEvents.java
Log:
rich:panelMenu - automated testing of icons (RFPL-950)
Modified: modules/tests/metamer/trunk/application/src/main/webapp/components/richPanelMenu/simple.xhtml
===================================================================
--- modules/tests/metamer/trunk/application/src/main/webapp/components/richPanelMenu/simple.xhtml 2011-02-07 15:32:02 UTC (rev 21517)
+++ modules/tests/metamer/trunk/application/src/main/webapp/components/richPanelMenu/simple.xhtml 2011-02-07 16:23:01 UTC (rev 21518)
@@ -58,8 +58,8 @@
groupCollapsedLeftIcon="#{richPanelMenuBean.attributes['groupCollapsedLeftIcon'].value}"
groupCollapsedRightIcon="#{richPanelMenuBean.attributes['groupCollapsedRightIcon'].value}"
groupDisabledClass="#{richPanelMenuBean.attributes['groupDisabledClass'].value}"
- groupDisabledLeftIcon="#{richPanelMenuBean.attributes['groupDisabledRightIcon'].value}"
- groupDisabledRightIcon="#{richPanelMenuBean.attributes['groupRightIconDisabled'].value}"
+ groupDisabledLeftIcon="#{richPanelMenuBean.attributes['groupDisabledLeftIcon'].value}"
+ groupDisabledRightIcon="#{richPanelMenuBean.attributes['groupDisabledRightIcon'].value}"
groupExpandedLeftIcon="#{richPanelMenuBean.attributes['groupExpandedLeftIcon'].value}"
groupExpandedRightIcon="#{richPanelMenuBean.attributes['groupExpandedRightIcon'].value}"
groupMode="#{richPanelMenuBean.attributes['groupMode'].value}"
@@ -68,8 +68,8 @@
itemDisabledClass="#{richPanelMenuBean.attributes['itemDisabledClass'].value}"
itemDisabledLeftIcon="#{richPanelMenuBean.attributes['itemDisabledLeftIcon'].value}"
itemDisabledRightIcon="#{richPanelMenuBean.attributes['itemDisabledRightIcon'].value}"
- itemLeftIcon="#{richPanelMenuBean.attributes['topItemLeftIconDisabled'].value}"
- itemRightIcon="#{richPanelMenuBean.attributes['topItemRightIconDisabled'].value}"
+ itemLeftIcon="#{richPanelMenuBean.attributes['itemLeftIcon'].value}"
+ itemRightIcon="#{richPanelMenuBean.attributes['itemRightIcon'].value}"
itemMode="#{richPanelMenuBean.attributes['itemMode'].value}"
limitRender="#{richPanelMenuBean.attributes['limitRender'].value}"
onclick="#{richPanelMenuBean.attributes['onclick'].value}"
@@ -96,8 +96,8 @@
topItemDisabledClass="#{richPanelMenuBean.attributes['topItemDisabledClass'].value}"
topItemDisabledLeftIcon="#{richPanelMenuBean.attributes['topItemDisabledLeftIcon'].value}"
topItemDisabledRightIcon="#{richPanelMenuBean.attributes['topItemDisabledRightIcon'].value}"
- topItemLeftIcon="#{richPanelMenuBean.attributes['topItemLeftIconDisabled'].value}"
- topItemRightIcon="#{richPanelMenuBean.attributes['topItemRightIconDisabled'].value}"
+ topItemLeftIcon="#{richPanelMenuBean.attributes['topItemLeftIcon'].value}"
+ topItemRightIcon="#{richPanelMenuBean.attributes['topItemRightIcon'].value}"
width="#{richPanelMenuBean.attributes['width'].value}"
>
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/AbstractPanelMenuTest.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/AbstractPanelMenuTest.java 2011-02-07 15:32:02 UTC (rev 21517)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/AbstractPanelMenuTest.java 2011-02-07 16:23:01 UTC (rev 21518)
@@ -47,6 +47,7 @@
PanelMenu.Group group24 = group2.getGroupContains("Group 2.4");
PanelMenu.Group group26 = group2.getGroupContains("Group 2.6");
PanelMenu.Item item242 = group24.getItemContains("Item 2.4.2");
+ PanelMenu.Group group4 = menu.getGroupContains("Group 4");
@Override
public URL getTestUrl() {
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/PanelMenuAttributes.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/PanelMenuAttributes.java 2011-02-07 15:32:02 UTC (rev 21517)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/PanelMenuAttributes.java 2011-02-07 16:23:01 UTC (rev 21518)
@@ -101,8 +101,8 @@
setProperty("itemDisabledRightIcon", itemDisabledRightIcon);
}
- public void setLeftIcon(String leftIcon) {
- setProperty("leftIcon", leftIcon);
+ public void setItemLeftIcon(String itemLeftIcon) {
+ setProperty("itemLeftIcon", itemLeftIcon);
}
public void setItemMode(PanelMenuMode itemMode) {
Modified: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/TestPanelMenuDOMEvents.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/TestPanelMenuDOMEvents.java 2011-02-07 15:32:02 UTC (rev 21517)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/TestPanelMenuDOMEvents.java 2011-02-07 16:23:01 UTC (rev 21518)
@@ -49,7 +49,7 @@
public class TestPanelMenuDOMEvents extends AbstractPanelMenuTest {
@Inject
- PanelMenuMode mode = PanelMenuMode.client;
+ PanelMenuMode mode;
@Inject
@Use("events")
@@ -77,9 +77,11 @@
@BeforeMethod
public void setup() {
- attributes.setGroupMode(mode);
- menu.setGroupMode(mode);
waitToggle = waitModel.timeout(5000).interval(500);
+ if (mode != null) {
+ attributes.setGroupMode(mode);
+ menu.setGroupMode(mode);
+ }
}
@Test
Added: modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/TestPanelMenuIcon.java
===================================================================
--- modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/TestPanelMenuIcon.java (rev 0)
+++ modules/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richPanelMenu/TestPanelMenuIcon.java 2011-02-07 16:23:01 UTC (rev 21518)
@@ -0,0 +1,177 @@
+/*******************************************************************************
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc. and individual contributors
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ *******************************************************************************/
+package org.richfaces.tests.metamer.ftest.richPanelMenu;
+
+import static org.testng.Assert.assertTrue;
+
+import org.richfaces.tests.metamer.ftest.model.PanelMenu.Icon;
+import org.testng.annotations.Test;
+
+/**
+ * @author <a href="mailto:lfryc@redhat.com">Lukas Fryc</a>
+ * @version $Revision$
+ */
+public class TestPanelMenuIcon extends AbstractPanelMenuTest {
+
+ private static String CUSTOM_URL = "/resources/images/loading.gif";
+
+ @Test
+ public void testGroupCollapsedLeftIcon() {
+ attributes.setGroupCollapsedLeftIcon(CUSTOM_URL);
+ group2.toggle();
+ verifyIcon(group24.getLeftIcon());
+ }
+
+ @Test
+ public void testGroupCollapsedRightIcon() {
+ attributes.setGroupCollapsedRightIcon(CUSTOM_URL);
+ group2.toggle();
+ verifyIcon(group24.getRightIcon());
+ }
+
+ @Test
+ public void testGroupDisabledLeftIcon() {
+ attributes.setGroupDisabledLeftIcon(CUSTOM_URL);
+ group2.toggle();
+ assertTrue(group26.getLeftIcon().isCustomURL());
+ assertTrue(group26.getLeftIcon().getCustomURL().endsWith(CUSTOM_URL));
+ verifyIcon(group26.getLeftIcon());
+ }
+
+ @Test
+ public void testDisabledRightIcon() {
+ attributes.setGroupDisabledRightIcon(CUSTOM_URL);
+ group2.toggle();
+ verifyIcon(group26.getRightIcon());
+ }
+
+ @Test
+ public void testGroupExpandedLeftIcon() {
+ attributes.setGroupExpandedLeftIcon(CUSTOM_URL);
+ group2.toggle();
+ group24.toggle();
+ verifyIcon(group24.getLeftIcon());
+ }
+
+ @Test
+ public void testGroupExpandedRightIcon() {
+ attributes.setGroupExpandedRightIcon(CUSTOM_URL);
+ group2.toggle();
+ group24.toggle();
+ verifyIcon(group24.getRightIcon());
+ }
+
+ @Test
+ public void testItemDisabledLeftIcon() {
+ attributes.setItemDisabledLeftIcon(CUSTOM_URL);
+ group2.toggle();
+ verifyIcon(item25.getLeftIcon());
+ }
+
+ @Test
+ public void testItemDisabledRightIcon() {
+ attributes.setItemDisabledRightIcon(CUSTOM_URL);
+ group2.toggle();
+ verifyIcon(item25.getRightIcon());
+ }
+
+ @Test
+ public void testItemLeftIcon() {
+ attributes.setItemLeftIcon(CUSTOM_URL);
+ group2.toggle();
+ verifyIcon(item22.getLeftIcon());
+ }
+
+ @Test
+ public void testItemRightIcon() {
+ attributes.setItemRightIcon(CUSTOM_URL);
+ group2.toggle();
+ verifyIcon(item22.getRightIcon());
+ }
+
+ @Test
+ public void testTopGroupCollapsedLeftIcon() {
+ attributes.setTopGroupCollapsedLeftIcon(CUSTOM_URL);
+ verifyIcon(group1.getLeftIcon());
+ }
+
+ @Test
+ public void testTopGroupCollapsedRightIcon() {
+ attributes.setTopGroupCollapsedRightIcon(CUSTOM_URL);
+ verifyIcon(group1.getRightIcon());
+ }
+
+ @Test
+ public void testTopGroupDisabledLeftIcon() {
+ attributes.setTopGroupDisabledLeftIcon(CUSTOM_URL);
+ verifyIcon(group4.getLeftIcon());
+ }
+
+ @Test
+ public void testTopGroupDisabledRightIcon() {
+ attributes.setTopGroupDisabledRightIcon(CUSTOM_URL);
+ verifyIcon(group4.getRightIcon());
+ }
+
+ @Test
+ public void testTopGroupExpandedLeftIcon() {
+ attributes.setTopGroupExpandedLeftIcon(CUSTOM_URL);
+ group1.toggle();
+ verifyIcon(group1.getLeftIcon());
+ }
+
+ @Test
+ public void testTopGroupExpandedRightIcon() {
+ attributes.setTopGroupExpandedRightIcon(CUSTOM_URL);
+ group1.toggle();
+ verifyIcon(group1.getRightIcon());
+ }
+
+ @Test
+ public void testTopItemDisabledLeftIcon() {
+ attributes.setTopItemDisabledLeftIcon(CUSTOM_URL);
+ verifyIcon(item4.getLeftIcon());
+ }
+
+ @Test
+ public void testTopItemDisabledRightIcon() {
+ attributes.setTopItemDisabledRightIcon(CUSTOM_URL);
+ verifyIcon(item4.getRightIcon());
+ }
+
+ @Test
+ public void testTopItemLeftIcon() {
+ attributes.setTopItemLeftIcon(CUSTOM_URL);
+ verifyIcon(item3.getLeftIcon());
+ }
+
+ @Test
+ public void testTopItemRightIcon() {
+ attributes.setTopItemRightIcon(CUSTOM_URL);
+ verifyIcon(item3.getRightIcon());
+ }
+
+ private void verifyIcon(Icon icon) {
+ assertTrue(icon.isCustomURL());
+ assertTrue(icon.getCustomURL().endsWith(CUSTOM_URL));
+ }
+}
15 years, 2 months
JBoss Rich Faces SVN: r21517 - in branches/4.0.0.M6: archetypes and 64 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2011-02-07 10:32:02 -0500 (Mon, 07 Feb 2011)
New Revision: 21517
Modified:
branches/4.0.0.M6/archetypes/pom.xml
branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml
branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml
branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml
branches/4.0.0.M6/archetypes/richfaces-component/pom.xml
branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml
branches/4.0.0.M6/bom/pom.xml
branches/4.0.0.M6/cdk/annotations/pom.xml
branches/4.0.0.M6/cdk/attributes/pom.xml
branches/4.0.0.M6/cdk/commons/pom.xml
branches/4.0.0.M6/cdk/dist/pom.xml
branches/4.0.0.M6/cdk/generator/pom.xml
branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml
branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml
branches/4.0.0.M6/cdk/parent/pom.xml
branches/4.0.0.M6/cdk/pom.xml
branches/4.0.0.M6/cdk/xinclude/pom.xml
branches/4.0.0.M6/core/api/pom.xml
branches/4.0.0.M6/core/impl/pom.xml
branches/4.0.0.M6/core/parent/pom.xml
branches/4.0.0.M6/core/pom.xml
branches/4.0.0.M6/dist/pom.xml
branches/4.0.0.M6/examples/core-demo/pom.xml
branches/4.0.0.M6/examples/dnd-demo/pom.xml
branches/4.0.0.M6/examples/input-demo/pom.xml
branches/4.0.0.M6/examples/irc-client/pom.xml
branches/4.0.0.M6/examples/iteration-demo/pom.xml
branches/4.0.0.M6/examples/misc-demo/pom.xml
branches/4.0.0.M6/examples/output-demo/pom.xml
branches/4.0.0.M6/examples/parent/pom.xml
branches/4.0.0.M6/examples/pom.xml
branches/4.0.0.M6/examples/push-demo/pom.xml
branches/4.0.0.M6/examples/repeater-demo/pom.xml
branches/4.0.0.M6/examples/richfaces-showcase/pom.xml
branches/4.0.0.M6/examples/template/pom.xml
branches/4.0.0.M6/examples/validator-demo/pom.xml
branches/4.0.0.M6/parent/pom.xml
branches/4.0.0.M6/pom.xml
branches/4.0.0.M6/ui/common/api/pom.xml
branches/4.0.0.M6/ui/common/pom.xml
branches/4.0.0.M6/ui/common/ui/pom.xml
branches/4.0.0.M6/ui/core/api/pom.xml
branches/4.0.0.M6/ui/core/pom.xml
branches/4.0.0.M6/ui/core/ui/pom.xml
branches/4.0.0.M6/ui/dist/pom.xml
branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml
branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml
branches/4.0.0.M6/ui/dnd/api/pom.xml
branches/4.0.0.M6/ui/dnd/pom.xml
branches/4.0.0.M6/ui/dnd/ui/pom.xml
branches/4.0.0.M6/ui/input/api/pom.xml
branches/4.0.0.M6/ui/input/pom.xml
branches/4.0.0.M6/ui/input/ui/pom.xml
branches/4.0.0.M6/ui/iteration/api/pom.xml
branches/4.0.0.M6/ui/iteration/pom.xml
branches/4.0.0.M6/ui/iteration/ui/pom.xml
branches/4.0.0.M6/ui/misc/pom.xml
branches/4.0.0.M6/ui/misc/ui/pom.xml
branches/4.0.0.M6/ui/output/api/pom.xml
branches/4.0.0.M6/ui/output/pom.xml
branches/4.0.0.M6/ui/output/ui/pom.xml
branches/4.0.0.M6/ui/parent/pom.xml
branches/4.0.0.M6/ui/pom.xml
branches/4.0.0.M6/ui/validator/api/pom.xml
branches/4.0.0.M6/ui/validator/pom.xml
branches/4.0.0.M6/ui/validator/ui/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: branches/4.0.0.M6/archetypes/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/archetypes/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -30,7 +30,7 @@
<groupId>org.richfaces.archetypes</groupId>
<artifactId>archetypes-aggregator</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetypes</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetypes</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-gae</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-archetype-simpleapp</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-component/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-component/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/archetypes/richfaces-component/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-component-short</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -29,7 +29,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.archetypes</groupId>
<artifactId>richfaces-components-aggregator</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/a...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetyp...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/archet...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/bom/pom.xml
===================================================================
--- branches/4.0.0.M6/bom/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/bom/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -18,7 +18,7 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-bom</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20110207-M6</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.20110207-M6/b...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/buil...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/build/bom</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/build/bom</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/build/bom</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/build/bom</url>
</scm>
</project>
Modified: branches/4.0.0.M6/cdk/annotations/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/annotations/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/cdk/annotations/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/cdk/attributes/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/attributes/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/cdk/attributes/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/cdk/commons/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/commons/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/cdk/commons/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>commons</name>
<build>
<plugins>
Modified: branches/4.0.0.M6/cdk/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/dist/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/cdk/dist/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -4,20 +4,20 @@
<parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/cdk/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20110207-M6/cdk/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M6/cdk/dist</url>
</scm>
<build>
<finalName>cdk</finalName>
Modified: branches/4.0.0.M6/cdk/generator/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/generator/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/cdk/generator/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -3,13 +3,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Java Server Faces component generator</name>
Modified: branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -2,13 +2,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/cdk/maven-resources-plugin/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -4,13 +4,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/cdk/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/parent/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/cdk/parent/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/cdk/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/tags/4.0.0.20110207-...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/pa...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/branches/4.0.0.M6/cd...</url>
</scm>
<build>
Modified: branches/4.0.0.M6/cdk/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/cdk/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -11,7 +11,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces.cdk</groupId>
<artifactId>aggregator</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/cdk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/cdk</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20110207-M6/cdk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M6/cdk</url>
</scm>
<!-- Minimal build configuration -->
Modified: branches/4.0.0.M6/cdk/xinclude/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/xinclude/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/cdk/xinclude/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -22,13 +22,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/core/api/pom.xml
===================================================================
--- branches/4.0.0.M6/core/api/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/core/api/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -22,7 +22,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/core/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/api</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/api</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/api</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/impl/pom.xml
===================================================================
--- branches/4.0.0.M6/core/impl/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/core/impl/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/core/impl</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/impl</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/impl</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/impl</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/core/parent/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/core/parent/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -23,13 +23,13 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/c...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/core...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/core/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/p...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/pom.xml
===================================================================
--- branches/4.0.0.M6/core/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/core/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-aggregator</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core</url>
</scm>
</project>
Modified: branches/4.0.0.M6/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/dist/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/dist/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/examples/core-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/core-demo/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/core-demo/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/core...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/dnd-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/dnd-demo/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/dnd-demo/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: DND</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/input-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/input-demo/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/input-demo/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Inputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/irc-client/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/irc-client/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/irc-client/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -6,14 +6,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>irc-client</artifactId>
<name>Richfaces Examples: Richfaces IRC Client Application</name>
- <version>4.0.0.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<url>http://jboss.org/richfaces</url>
Modified: branches/4.0.0.M6/examples/iteration-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/iteration-demo/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/iteration-demo/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>RichFaces Examples: Iteration</name>
<properties>
Modified: branches/4.0.0.M6/examples/misc-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/misc-demo/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/misc-demo/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>RichFaces Examples: Miscellanous</name>
Modified: branches/4.0.0.M6/examples/output-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/output-demo/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/output-demo/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Outputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/parent/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/parent/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Examples Parent</name>
@@ -250,8 +250,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/examples/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -34,7 +34,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>examples-aggregator</artifactId>
- <version>4.0.0.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>RichFaces Examples: Aggregator</name>
@@ -55,9 +55,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/examples</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/push-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/push-demo/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/push-demo/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,14 +24,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/push...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/repeater-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/repeater-demo/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/repeater-demo/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -25,14 +25,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Richfaces Examples: Repeater</name>
<properties>
Modified: branches/4.0.0.M6/examples/richfaces-showcase/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/richfaces-showcase/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -7,13 +7,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>Richfaces Examples: Richfaces Showcase Application</name>
@@ -445,8 +445,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/e...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/exam...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/examples...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/rich...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/template/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/template/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/template/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -3,14 +3,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>examples template</name>
<dependencies>
<dependency>
Modified: branches/4.0.0.M6/examples/validator-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/validator-demo/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/examples/validator-demo/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
Modified: branches/4.0.0.M6/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/parent/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/parent/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -18,13 +18,13 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../bom/pom.xml</relativePath>
</parent>
@@ -400,11 +400,11 @@
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/p...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/parent
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/parent
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/parent
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/parent</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/parent</url>
</scm>
</project>
Modified: branches/4.0.0.M6/pom.xml
===================================================================
--- branches/4.0.0.M6/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -12,7 +12,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-aggregator</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/common/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/api/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/common/api/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/common/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/common/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Common Aggregator</name>
Modified: branches/4.0.0.M6/ui/common/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/ui/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/common/ui/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/core/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/api/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/core/api/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -20,7 +20,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/core/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/core/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/core</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/core/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/ui/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/core/ui/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -23,7 +23,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/u...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/cor...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/c...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/core/ui
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/core/ui</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/core/ui</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/dist/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -22,13 +22,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/d...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/dist/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dis...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist/r...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist/richf...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/d...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/dist/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dis...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist/r...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist/richf...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/api/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/dnd/api/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/outpu...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/dnd/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/ui/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/dnd/ui/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/outpu...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/input/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/api/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/input/api/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/input/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/input/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/input</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/input</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/input</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/input</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/input/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/ui/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/input/ui/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/iteration/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/api/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/iteration/api/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/ite...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iterat...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/iteration/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/iteration/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/ite...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iteration</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/iteration/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/ui/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/iteration/ui/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/i...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/itera...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/ite...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iterat...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/misc/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/misc/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/misc/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/misc</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/misc</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/misc</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/misc</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/misc</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/misc/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/misc/ui/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/misc/ui/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/u...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/mis...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/m...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/misc/d...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/misc/...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/misc/dist/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/api/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/output/api/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/outpu...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/output/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/ui/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/output/ui/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/outpu...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/out...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/parent/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/parent/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/p...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/parent</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/parent</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-aggregator</artifactId>
- <version>4.0.0.20110207-M6</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.M6/ui/validator/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/api/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/validator/api/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/valid...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/val...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/valida...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator/api</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/validator/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/validator/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0.20110207-M6</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.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/valid...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/val...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/validator</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/validator/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/ui/pom.xml 2011-02-07 15:31:08 UTC (rev 21516)
+++ branches/4.0.0.M6/ui/validator/ui/pom.xml 2011-02-07 15:32:02 UTC (rev 21517)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-parent</artifactId>
- <version>4.0.0.20110207-M6</version>
+ <version>4.0.0-SNAPSHOT</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -131,8 +131,8 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/v...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/valid...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/val...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/valida...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator/ui</url>
</scm>
</project>
15 years, 2 months
JBoss Rich Faces SVN: r21516 - tags.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2011-02-07 10:31:08 -0500 (Mon, 07 Feb 2011)
New Revision: 21516
Added:
tags/4.0.0.20110207-M6/
Log:
[maven-scm] copy for tag 4.0.0.20110207-M6
Copied: tags/4.0.0.20110207-M6 (from rev 21515, branches/4.0.0.M6)
15 years, 2 months
JBoss Rich Faces SVN: r21515 - in branches/4.0.0.M6: archetypes and 64 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2011-02-07 10:30:55 -0500 (Mon, 07 Feb 2011)
New Revision: 21515
Modified:
branches/4.0.0.M6/archetypes/pom.xml
branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml
branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml
branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml
branches/4.0.0.M6/archetypes/richfaces-component/pom.xml
branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml
branches/4.0.0.M6/bom/pom.xml
branches/4.0.0.M6/cdk/annotations/pom.xml
branches/4.0.0.M6/cdk/attributes/pom.xml
branches/4.0.0.M6/cdk/commons/pom.xml
branches/4.0.0.M6/cdk/dist/pom.xml
branches/4.0.0.M6/cdk/generator/pom.xml
branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml
branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml
branches/4.0.0.M6/cdk/parent/pom.xml
branches/4.0.0.M6/cdk/pom.xml
branches/4.0.0.M6/cdk/xinclude/pom.xml
branches/4.0.0.M6/core/api/pom.xml
branches/4.0.0.M6/core/impl/pom.xml
branches/4.0.0.M6/core/parent/pom.xml
branches/4.0.0.M6/core/pom.xml
branches/4.0.0.M6/dist/pom.xml
branches/4.0.0.M6/examples/core-demo/pom.xml
branches/4.0.0.M6/examples/dnd-demo/pom.xml
branches/4.0.0.M6/examples/input-demo/pom.xml
branches/4.0.0.M6/examples/irc-client/pom.xml
branches/4.0.0.M6/examples/iteration-demo/pom.xml
branches/4.0.0.M6/examples/misc-demo/pom.xml
branches/4.0.0.M6/examples/output-demo/pom.xml
branches/4.0.0.M6/examples/parent/pom.xml
branches/4.0.0.M6/examples/pom.xml
branches/4.0.0.M6/examples/push-demo/pom.xml
branches/4.0.0.M6/examples/repeater-demo/pom.xml
branches/4.0.0.M6/examples/richfaces-showcase/pom.xml
branches/4.0.0.M6/examples/template/pom.xml
branches/4.0.0.M6/examples/validator-demo/pom.xml
branches/4.0.0.M6/parent/pom.xml
branches/4.0.0.M6/pom.xml
branches/4.0.0.M6/ui/common/api/pom.xml
branches/4.0.0.M6/ui/common/pom.xml
branches/4.0.0.M6/ui/common/ui/pom.xml
branches/4.0.0.M6/ui/core/api/pom.xml
branches/4.0.0.M6/ui/core/pom.xml
branches/4.0.0.M6/ui/core/ui/pom.xml
branches/4.0.0.M6/ui/dist/pom.xml
branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml
branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml
branches/4.0.0.M6/ui/dnd/api/pom.xml
branches/4.0.0.M6/ui/dnd/pom.xml
branches/4.0.0.M6/ui/dnd/ui/pom.xml
branches/4.0.0.M6/ui/input/api/pom.xml
branches/4.0.0.M6/ui/input/pom.xml
branches/4.0.0.M6/ui/input/ui/pom.xml
branches/4.0.0.M6/ui/iteration/api/pom.xml
branches/4.0.0.M6/ui/iteration/pom.xml
branches/4.0.0.M6/ui/iteration/ui/pom.xml
branches/4.0.0.M6/ui/misc/pom.xml
branches/4.0.0.M6/ui/misc/ui/pom.xml
branches/4.0.0.M6/ui/output/api/pom.xml
branches/4.0.0.M6/ui/output/pom.xml
branches/4.0.0.M6/ui/output/ui/pom.xml
branches/4.0.0.M6/ui/parent/pom.xml
branches/4.0.0.M6/ui/pom.xml
branches/4.0.0.M6/ui/validator/api/pom.xml
branches/4.0.0.M6/ui/validator/pom.xml
branches/4.0.0.M6/ui/validator/ui/pom.xml
Log:
[maven-release-plugin] prepare release 4.0.0.20110207-M6
Modified: branches/4.0.0.M6/archetypes/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/archetypes/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -30,7 +30,7 @@
<groupId>org.richfaces.archetypes</groupId>
<artifactId>archetypes-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetypes</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetypes</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/archetypes/rf-gae-sample/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/archetypes/richfaces-archetype-simpleapp/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-component/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-component/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/archetypes/richfaces-component/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/archetypes/richfaces-component-short/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml
===================================================================
--- branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/archetypes/richfaces-components-aggregator/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/archet...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/archetype...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/archetypes/ri...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/a...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/arch...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/archetyp...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/bom/pom.xml
===================================================================
--- branches/4.0.0.M6/bom/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/bom/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/build/bom</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/build/bom</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/build/bom</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/b...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/buil...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/build/bom</url>
</scm>
</project>
Modified: branches/4.0.0.M6/cdk/annotations/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/annotations/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/cdk/annotations/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</version>
<description>That project contains annotations for JSF classes</description>
<name>annotations</name>
<dependencies>
Modified: branches/4.0.0.M6/cdk/attributes/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/attributes/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/cdk/attributes/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</version>
<description>That project contains JAXB bindings for model classes representing schema attributes data</description>
<name>attributes</name>
Modified: branches/4.0.0.M6/cdk/commons/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/commons/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/cdk/commons/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -4,12 +4,12 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</version>
<name>commons</name>
<build>
<plugins>
Modified: branches/4.0.0.M6/cdk/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/dist/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/cdk/dist/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -4,20 +4,20 @@
<parent>
<groupId>org.richfaces.cdk</groupId>
<artifactId>parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/cdk/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M6/cdk/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/cdk/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20110207-M6/cdk/...</url>
</scm>
<build>
<finalName>cdk</finalName>
Modified: branches/4.0.0.M6/cdk/generator/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/generator/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/cdk/generator/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -3,13 +3,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</version>
<name>Java Server Faces component generator</name>
Modified: branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/cdk/maven-cdk-plugin/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -2,13 +2,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</version>
<packaging>maven-plugin</packaging>
<name>Maven plugin for JSF components code generation</name>
<dependencies>
Modified: branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/cdk/maven-resources-plugin/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -4,13 +4,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/cdk/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/parent/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/cdk/parent/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/cdk/pa...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/branches/4.0.0.M6/cd...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/cdk/...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/parent/tags/4.0.0.20110207-...</url>
</scm>
<build>
Modified: branches/4.0.0.M6/cdk/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/cdk/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/cdk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/cdk</developerConnection>
- <url>http://fisheye.jboss.org/browse/Richfaces/cdk/branches/4.0.0.M6/cdk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/cdk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/cdk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/Richfaces/cdk/tags/4.0.0.20110207-M6/cdk</url>
</scm>
<!-- Minimal build configuration -->
Modified: branches/4.0.0.M6/cdk/xinclude/pom.xml
===================================================================
--- branches/4.0.0.M6/cdk/xinclude/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/cdk/xinclude/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -22,13 +22,13 @@
<parent>
<artifactId>parent</artifactId>
<groupId>org.richfaces.cdk</groupId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</version>
<name>Cocoon 3: xinclude transformer</name>
<description>Cocoon 3 xinclude transformer with Xpointer scheme support.</description>
Modified: branches/4.0.0.M6/core/api/pom.xml
===================================================================
--- branches/4.0.0.M6/core/api/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/core/api/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/core/api</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/api</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/core/api</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/impl/pom.xml
===================================================================
--- branches/4.0.0.M6/core/impl/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/core/impl/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/core/impl</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/impl</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/impl</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/core/impl</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/core/parent/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/core/parent/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</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.M6/core/p...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/c...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/core...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/core/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/core/pom.xml
===================================================================
--- branches/4.0.0.M6/core/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/core/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.core</groupId>
<artifactId>richfaces-core-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.M6/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/core</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/core</url>
</scm>
</project>
Modified: branches/4.0.0.M6/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/dist/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/dist/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -24,13 +24,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</version>
<packaging>pom</packaging>
<name>Richfaces Distribution Assembler</name>
@@ -187,8 +187,8 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/trunk/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/trunk/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/examples/core-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/core-demo/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/core-demo/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</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.M6/exampl...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/core...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/examples...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/dnd-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/dnd-demo/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/dnd-demo/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</version>
<name>Richfaces Examples: DND</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/input-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/input-demo/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/input-demo/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</version>
<name>Richfaces Examples: Inputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/irc-client/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/irc-client/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/irc-client/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -6,14 +6,14 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>irc-client</artifactId>
<name>Richfaces Examples: Richfaces IRC Client Application</name>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</version>
<packaging>war</packaging>
<url>http://jboss.org/richfaces</url>
Modified: branches/4.0.0.M6/examples/iteration-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/iteration-demo/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/iteration-demo/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</version>
<name>RichFaces Examples: Iteration</name>
<properties>
Modified: branches/4.0.0.M6/examples/misc-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/misc-demo/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/misc-demo/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</version>
<packaging>war</packaging>
<name>RichFaces Examples: Miscellanous</name>
Modified: branches/4.0.0.M6/examples/output-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/output-demo/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/output-demo/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</version>
<name>Richfaces Examples: Outputs</name>
<packaging>war</packaging>
Modified: branches/4.0.0.M6/examples/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/parent/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/parent/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -29,7 +29,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</version>
<packaging>pom</packaging>
<name>RichFaces Examples Parent</name>
@@ -250,8 +250,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/examples...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/examples/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -34,7 +34,7 @@
<groupId>org.richfaces.examples</groupId>
<artifactId>examples-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</version>
<packaging>pom</packaging>
<name>RichFaces Examples: Aggregator</name>
@@ -55,9 +55,9 @@
</modules>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/examples</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/push-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/push-demo/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/push-demo/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</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.M6/exampl...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/push...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/examples...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/repeater-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/repeater-demo/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/repeater-demo/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</version>
<name>Richfaces Examples: Repeater</name>
<properties>
Modified: branches/4.0.0.M6/examples/richfaces-showcase/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/richfaces-showcase/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/richfaces-showcase/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -7,13 +7,13 @@
<parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-example-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.richfaces.examples</groupId>
<artifactId>richfaces-showcase</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</version>
<packaging>war</packaging>
<name>Richfaces Examples: Richfaces Showcase Application</name>
@@ -445,8 +445,8 @@
</profiles>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/exampl...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/examples/...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/examples/rich...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/e...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/exam...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/examples...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/examples/template/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/template/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/template/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</version>
<name>examples template</name>
<dependencies>
<dependency>
Modified: branches/4.0.0.M6/examples/validator-demo/pom.xml
===================================================================
--- branches/4.0.0.M6/examples/validator-demo/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/examples/validator-demo/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</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.20110207-M6</version>
<type>war</type>
</dependency>
<dependency>
Modified: branches/4.0.0.M6/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/parent/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/parent/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -18,13 +18,13 @@
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
<packaging>pom</packaging>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</version>
<relativePath>../bom/pom.xml</relativePath>
</parent>
@@ -400,11 +400,11 @@
<!-- SCM and distribution management -->
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/parent
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/p...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/parent
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/parent
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/parent</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/parent</url>
</scm>
</project>
Modified: branches/4.0.0.M6/pom.xml
===================================================================
--- branches/4.0.0.M6/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/common/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/api/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/common/api/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/common/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/common/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</version>
<packaging>pom</packaging>
<name>Richfaces UI Components: Common Aggregator</name>
Modified: branches/4.0.0.M6/ui/common/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/common/ui/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/common/ui/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/core/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/api/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/core/api/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/core/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/core/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/ui/core</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/core</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/core</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/core</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/core</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/core/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/core/ui/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/core/ui/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/ui/cor...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/core/ui
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/c...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/core/ui</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/core/ui</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dist/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/dist/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -22,13 +22,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/ui/dist</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/dist</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/dist</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/dist/richfaces-components-api/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</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.M6/ui/dis...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist/r...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist/richf...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/d...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/dist/...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/dist/richfaces-components-ui/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</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.M6/ui/dis...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/dist/r...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/dist/richf...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/d...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/dist/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/api/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/dnd/api/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/dnd/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/ui/output</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/dnd/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/dnd/ui/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/dnd/ui/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/input/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/api/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/input/api/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/input/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/input/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/ui/input</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/input</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/input</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/input</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/input/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/input/ui/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/input/ui/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
Modified: branches/4.0.0.M6/ui/iteration/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/api/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/iteration/api/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/ui/ite...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iterat...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/iteration/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/iteration/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/ui/ite...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iteration</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/iteration/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/iteration/ui/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/iteration/ui/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/ui/ite...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/iterat...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/iteration/...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/i...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/itera...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/misc/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/misc/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/misc/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/ui/misc</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/misc</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/misc</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/misc</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/misc</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/misc/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/misc/ui/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/misc/ui/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.20110207-M6</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.M6/ui/mis...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...
</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/misc/d...
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/m...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/misc/dist/...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/misc/...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/api/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/output/api/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...
</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/output/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/ui/output</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/output</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/output/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/output/ui/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/output/ui/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/ui/out...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/output...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/output/pan...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/o...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/outpu...</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/parent/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/parent/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/parent/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -25,13 +25,13 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.20110207-M6</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.M6/ui/parent</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/parent</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/parent</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/p...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/parent</url>
</scm>
</project>
\ No newline at end of file
Modified: branches/4.0.0.M6/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.ui</groupId>
<artifactId>richfaces-ui-aggregator</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.M6/ui/validator/api/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/api/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/validator/api/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</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.M6/ui/val...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/valida...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator/api</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/v...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/valid...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/validator/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/validator/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -24,7 +24,7 @@
<parent>
<groupId>org.richfaces</groupId>
<artifactId>richfaces-root-parent</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.20110207-M6</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.M6/ui/val...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/validator</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/v...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/valid...</url>
</scm>
</project>
Modified: branches/4.0.0.M6/ui/validator/ui/pom.xml
===================================================================
--- branches/4.0.0.M6/ui/validator/ui/pom.xml 2011-02-07 14:50:53 UTC (rev 21514)
+++ branches/4.0.0.M6/ui/validator/ui/pom.xml 2011-02-07 15:30:55 UTC (rev 21515)
@@ -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.20110207-M6</version>
<relativePath>../../parent/pom.xml</relativePath>
</parent>
@@ -131,8 +131,8 @@
</dependencies>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/val...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/branches/4.0.0.M6/ui/valida...</developerConnection>
- <url>http://fisheye.jboss.org/browse/richfaces/branches/4.0.0.M6/ui/validator/ui</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/u...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/tags/4.0.0.20110207-M6/ui/v...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/richfaces/tags/4.0.0.20110207-M6/ui/valid...</url>
</scm>
</project>
15 years, 2 months
JBoss Rich Faces SVN: r21514 - branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/css.
by richfaces-svn-commits@lists.jboss.org
Author: ilya_shaikovsky
Date: 2011-02-07 09:50:53 -0500 (Mon, 07 Feb 2011)
New Revision: 21514
Modified:
branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/css/inplaceselect.xcss
Log:
http://jira.jboss.org/browse/RF-10427
Modified: branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/css/inplaceselect.xcss
===================================================================
--- branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/css/inplaceselect.xcss 2011-02-07 14:34:58 UTC (rev 21513)
+++ branches/community/3.3.X/ui/inplaceSelect/src/main/resources/org/richfaces/renderkit/html/css/inplaceselect.xcss 2011-02-07 14:50:53 UTC (rev 21514)
@@ -204,6 +204,12 @@
<u:style name="background-color" skin="editBackgroundColor"/>
<u:style name="border-color" skin="panelBorderColor"/>
</u:selector>
+
+ <u:selector name=".rich-inplace-select-font">
+ <u:style name="color" skin="generalTextColor"/>
+ <u:style name="font-size" skin="generalSizeFont"/>
+ <u:style name="font-family" skin="generalFamilyFont"/>
+ </u:selector>
<u:selector name=".rich-inplace-select-control">
<u:style name="background-image">
@@ -246,4 +252,4 @@
-</f:template>
\ No newline at end of file
+</f:template>
15 years, 2 months