JBoss Rich Faces SVN: r17952 - root/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richExtendedDataTable.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2010-07-12 09:15:29 -0400 (Mon, 12 Jul 2010)
New Revision: 17952
Modified:
root/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richExtendedDataTable/DataTable.java
root/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richExtendedDataTable/ScrollerTestCase.java
Log:
* fixed tests for EDT with data scroller
Modified: root/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richExtendedDataTable/DataTable.java
===================================================================
--- root/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richExtendedDataTable/DataTable.java 2010-07-12 10:08:08 UTC (rev 17951)
+++ root/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richExtendedDataTable/DataTable.java 2010-07-12 13:15:29 UTC (rev 17952)
@@ -19,7 +19,6 @@
* 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.richExtendedDataTable;
import org.jboss.test.selenium.framework.AjaxSelenium;
@@ -35,9 +34,8 @@
public class DataTable {
AjaxSelenium selenium = AjaxSeleniumProxy.getInstance();
-
JQueryLocator tableRoot;
- JQueryLocator tableRows = jq(".rf-dt-c:nth-child(1)");
+ JQueryLocator tableRows = jq("div.rf-edt-b table table tr");
public DataTable(JQueryLocator tableRoot) {
super();
Modified: root/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richExtendedDataTable/ScrollerTestCase.java
===================================================================
--- root/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richExtendedDataTable/ScrollerTestCase.java 2010-07-12 10:08:08 UTC (rev 17951)
+++ root/tests/metamer/trunk/ftest-source/src/main/java/org/richfaces/tests/metamer/ftest/richExtendedDataTable/ScrollerTestCase.java 2010-07-12 13:15:29 UTC (rev 17952)
@@ -19,7 +19,6 @@
* 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.richExtendedDataTable;
import static org.jboss.test.selenium.locator.LocatorFactory.*;
@@ -43,11 +42,10 @@
private static final int TOTAL_ROW_COUNT = 50;
private static final Integer[] ROW_COUNT_VALUES =
- new Integer[]{null, 10, 1, TOTAL_ROW_COUNT, 13, 9, 17, TOTAL_ROW_COUNT + 1, 2 * TOTAL_ROW_COUNT};
-
+ new Integer[]{null, 10, 1, TOTAL_ROW_COUNT, 13, 9, 17, TOTAL_ROW_COUNT + 1, 2 * TOTAL_ROW_COUNT};
DataScroller dataScroller1 = new DataScroller(pjq("span.rf-ds[id$=scroller1]"));
DataScroller dataScroller2 = new DataScroller(pjq("span.rf-ds[id$=scroller2]"));
- DataTable table = new DataTable(pjq("table.rf-dt[id$=richEDT]"));
+ DataTable table = new DataTable(pjq("div.rf-edt[id$=richEDT]"));
ElementLocator attributeRowsInput = id("form:attributes:rowsInput");
@Override
@@ -103,7 +101,6 @@
for (Integer rowsPerPage : ROW_COUNT_VALUES) {
if (rowsPerPage != null) {
selenium.type(attributeRowsInput, String.valueOf(rowsPerPage));
- selenium.fireEvent(attributeRowsInput, Event.BLUR);
selenium.waitForPageToLoad();
}
@@ -141,5 +138,4 @@
int result = TOTAL_ROW_COUNT % rowCountPreset;
return (result == 0) ? rowCountPreset : result;
}
-
}
14 years, 6 months
JBoss Rich Faces SVN: r17951 - root/core/trunk/impl/src/main/resources/META-INF/resources.
by richfaces-svn-commits@lists.jboss.org
Author: pyaschenko
Date: 2010-07-12 06:08:08 -0400 (Mon, 12 Jul 2010)
New Revision: 17951
Modified:
root/core/trunk/impl/src/main/resources/META-INF/resources/richfaces.js
Log:
Modified: root/core/trunk/impl/src/main/resources/META-INF/resources/richfaces.js
===================================================================
--- root/core/trunk/impl/src/main/resources/META-INF/resources/richfaces.js 2010-07-12 09:00:58 UTC (rev 17950)
+++ root/core/trunk/impl/src/main/resources/META-INF/resources/richfaces.js 2010-07-12 10:08:08 UTC (rev 17951)
@@ -578,7 +578,8 @@
var eventHandlers;
for (var eventName in AJAX_EVENTS) {
- var handler = createEventHandler(options[eventName]);
+ var handlerCode = options[eventName];
+ var handler = typeof handlerCode == "function" ? handlerCode : createEventHandler(handlerCode);
var serverHandler = AJAX_EVENTS[eventName];
if (serverHandler) {
14 years, 6 months
JBoss Rich Faces SVN: r17950 - in root/tests/metamer/trunk: ftest and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-07-12 05:00:58 -0400 (Mon, 12 Jul 2010)
New Revision: 17950
Modified:
root/tests/metamer/trunk/ftest/pom.xml
root/tests/metamer/trunk/pom.xml
Log:
return back to development versions (4.0.0.Alpha2 > 4.0.0-SNAPSHOT)
Modified: root/tests/metamer/trunk/ftest/pom.xml
===================================================================
--- root/tests/metamer/trunk/ftest/pom.xml 2010-07-12 08:38:27 UTC (rev 17949)
+++ root/tests/metamer/trunk/ftest/pom.xml 2010-07-12 09:00:58 UTC (rev 17950)
@@ -79,8 +79,8 @@
<properties>
<context.path>/metamer/</context.path>
- <deployable.version>4.0.0.Alpha2</deployable.version>
- <ftest.source.version>4.0.0.Alpha2</ftest.source.version>
+ <deployable.version>4.0.0-SNAPSHOT</deployable.version>
+ <ftest.source.version>4.0.0-SNAPSHOT</ftest.source.version>
<testng.suite.xml>src/test/resources/testng.xml</testng.suite.xml>
</properties>
Modified: root/tests/metamer/trunk/pom.xml
===================================================================
--- root/tests/metamer/trunk/pom.xml 2010-07-12 08:38:27 UTC (rev 17949)
+++ root/tests/metamer/trunk/pom.xml 2010-07-12 09:00:58 UTC (rev 17950)
@@ -95,7 +95,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<richfaces.checkstyle.version>1</richfaces.checkstyle.version>
- <version.richfaces>4.0.0.Alpha2</version.richfaces>
+ <version.richfaces>4.0.0-SNAPSHOT</version.richfaces>
</properties>
<dependencyManagement>
14 years, 6 months
JBoss Rich Faces SVN: r17949 - in root/tests/metamer/trunk: application and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2010-07-12 04:38:27 -0400 (Mon, 12 Jul 2010)
New Revision: 17949
Modified:
root/tests/metamer/trunk/application/pom.xml
root/tests/metamer/trunk/ftest-source/pom.xml
root/tests/metamer/trunk/ftest/pom.xml
root/tests/metamer/trunk/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: root/tests/metamer/trunk/application/pom.xml
===================================================================
--- root/tests/metamer/trunk/application/pom.xml 2010-07-12 08:38:16 UTC (rev 17948)
+++ root/tests/metamer/trunk/application/pom.xml 2010-07-12 08:38:27 UTC (rev 17949)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0.Alpha2</version>
+ <version>4.0.0-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.tests</groupId>
Modified: root/tests/metamer/trunk/ftest/pom.xml
===================================================================
--- root/tests/metamer/trunk/ftest/pom.xml 2010-07-12 08:38:16 UTC (rev 17948)
+++ root/tests/metamer/trunk/ftest/pom.xml 2010-07-12 08:38:27 UTC (rev 17949)
@@ -30,14 +30,14 @@
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-ftest</artifactId>
- <version>4.0.0.Alpha2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Metamer: RichFaces Testing Application - Functional Test</name>
<packaging>pom</packaging>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/trunk...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/tags/met...</developerConnection>
- <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/trunk/tags/m...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/trunk...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/ftest</developerConnection>
+ <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/trunk/ftest</url>
</scm>
<licenses>
Modified: root/tests/metamer/trunk/ftest-source/pom.xml
===================================================================
--- root/tests/metamer/trunk/ftest-source/pom.xml 2010-07-12 08:38:16 UTC (rev 17948)
+++ root/tests/metamer/trunk/ftest-source/pom.xml 2010-07-12 08:38:27 UTC (rev 17949)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0.Alpha2</version>
+ <version>4.0.0-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.tests</groupId>
Modified: root/tests/metamer/trunk/pom.xml
===================================================================
--- root/tests/metamer/trunk/pom.xml 2010-07-12 08:38:16 UTC (rev 17948)
+++ root/tests/metamer/trunk/pom.xml 2010-07-12 08:38:27 UTC (rev 17949)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0.Alpha2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Metamer: RichFaces Testing Application - Project Root</name>
@@ -50,9 +50,9 @@
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/tags/...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/tags/met...</developerConnection>
- <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/tags/metamer...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/trunk</url>
</scm>
<distributionManagement>
14 years, 6 months
JBoss Rich Faces SVN: r17948 - root/tests/metamer/tags.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2010-07-12 04:38:16 -0400 (Mon, 12 Jul 2010)
New Revision: 17948
Added:
root/tests/metamer/tags/metamer-4.0.0.Alpha2/
Log:
[maven-scm] copy for tag metamer-4.0.0.Alpha2
Copied: root/tests/metamer/tags/metamer-4.0.0.Alpha2 (from rev 17947, root/tests/metamer/trunk)
14 years, 6 months
JBoss Rich Faces SVN: r17947 - in root/tests/metamer/trunk: application and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: ppitonak(a)redhat.com
Date: 2010-07-12 04:37:56 -0400 (Mon, 12 Jul 2010)
New Revision: 17947
Modified:
root/tests/metamer/trunk/application/pom.xml
root/tests/metamer/trunk/ftest-source/pom.xml
root/tests/metamer/trunk/ftest/pom.xml
root/tests/metamer/trunk/pom.xml
Log:
[maven-release-plugin] prepare release metamer-4.0.0.Alpha2
Modified: root/tests/metamer/trunk/application/pom.xml
===================================================================
--- root/tests/metamer/trunk/application/pom.xml 2010-07-12 08:26:39 UTC (rev 17946)
+++ root/tests/metamer/trunk/application/pom.xml 2010-07-12 08:37:56 UTC (rev 17947)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Alpha2</version>
</parent>
<groupId>org.richfaces.tests</groupId>
Modified: root/tests/metamer/trunk/ftest/pom.xml
===================================================================
--- root/tests/metamer/trunk/ftest/pom.xml 2010-07-12 08:26:39 UTC (rev 17946)
+++ root/tests/metamer/trunk/ftest/pom.xml 2010-07-12 08:37:56 UTC (rev 17947)
@@ -30,14 +30,14 @@
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-ftest</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Alpha2</version>
<name>Metamer: RichFaces Testing Application - Functional Test</name>
<packaging>pom</packaging>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/trunk...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/ftest</developerConnection>
- <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/trunk/ftest</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/trunk...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/tags/met...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/trunk/tags/m...</url>
</scm>
<licenses>
@@ -79,8 +79,8 @@
<properties>
<context.path>/metamer/</context.path>
- <deployable.version>4.0.0-SNAPSHOT</deployable.version>
- <ftest.source.version>4.0.0-SNAPSHOT</ftest.source.version>
+ <deployable.version>4.0.0.Alpha2</deployable.version>
+ <ftest.source.version>4.0.0.Alpha2</ftest.source.version>
<testng.suite.xml>src/test/resources/testng.xml</testng.suite.xml>
</properties>
Modified: root/tests/metamer/trunk/ftest-source/pom.xml
===================================================================
--- root/tests/metamer/trunk/ftest-source/pom.xml 2010-07-12 08:26:39 UTC (rev 17946)
+++ root/tests/metamer/trunk/ftest-source/pom.xml 2010-07-12 08:37:56 UTC (rev 17947)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Alpha2</version>
</parent>
<groupId>org.richfaces.tests</groupId>
Modified: root/tests/metamer/trunk/pom.xml
===================================================================
--- root/tests/metamer/trunk/pom.xml 2010-07-12 08:26:39 UTC (rev 17946)
+++ root/tests/metamer/trunk/pom.xml 2010-07-12 08:37:56 UTC (rev 17947)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0-SNAPSHOT</version>
+ <version>4.0.0.Alpha2</version>
<packaging>pom</packaging>
<name>Metamer: RichFaces Testing Application - Project Root</name>
@@ -50,9 +50,9 @@
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/trunk</developerConnection>
- <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/tags/...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/tags/met...</developerConnection>
+ <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/tags/metamer...</url>
</scm>
<distributionManagement>
@@ -95,7 +95,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<richfaces.checkstyle.version>1</richfaces.checkstyle.version>
- <version.richfaces>4.0.0-SNAPSHOT</version.richfaces>
+ <version.richfaces>4.0.0.Alpha2</version.richfaces>
</properties>
<dependencyManagement>
14 years, 6 months
JBoss Rich Faces SVN: r17946 - root/tests/metamer/tags.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-07-12 04:26:39 -0400 (Mon, 12 Jul 2010)
New Revision: 17946
Removed:
root/tests/metamer/tags/metamer-4.0.0.Alpha2/
Log:
removing tag for 4.0.0.Alpha2
14 years, 6 months
JBoss Rich Faces SVN: r17945 - in root/tests/metamer/trunk: ftest and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-07-12 04:26:00 -0400 (Mon, 12 Jul 2010)
New Revision: 17945
Modified:
root/tests/metamer/trunk/ftest/pom.xml
root/tests/metamer/trunk/pom.xml
Log:
clean after release
Modified: root/tests/metamer/trunk/ftest/pom.xml
===================================================================
--- root/tests/metamer/trunk/ftest/pom.xml 2010-07-12 08:25:06 UTC (rev 17944)
+++ root/tests/metamer/trunk/ftest/pom.xml 2010-07-12 08:26:00 UTC (rev 17945)
@@ -79,8 +79,8 @@
<properties>
<context.path>/metamer/</context.path>
- <deployable.version>4.0.0.Alpha2</deployable.version>
- <ftest.source.version>4.0.0.Alpha2</ftest.source.version>
+ <deployable.version>4.0.0-SNAPSHOT</deployable.version>
+ <ftest.source.version>4.0.0-SNAPSHOT</ftest.source.version>
<testng.suite.xml>src/test/resources/testng.xml</testng.suite.xml>
</properties>
Modified: root/tests/metamer/trunk/pom.xml
===================================================================
--- root/tests/metamer/trunk/pom.xml 2010-07-12 08:25:06 UTC (rev 17944)
+++ root/tests/metamer/trunk/pom.xml 2010-07-12 08:26:00 UTC (rev 17945)
@@ -95,7 +95,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<richfaces.checkstyle.version>1</richfaces.checkstyle.version>
- <version.richfaces>4.0.0.Alpha2</version.richfaces>
+ <version.richfaces>4.0.0-SNAPSHOT</version.richfaces>
</properties>
<dependencyManagement>
14 years, 6 months
JBoss Rich Faces SVN: r17944 - root/ui/misc/trunk/jquery/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2010-07-12 04:25:06 -0400 (Mon, 12 Jul 2010)
New Revision: 17944
Modified:
root/ui/misc/trunk/jquery/src/main/java/org/richfaces/component/AbstractJQuery.java
Log:
Added explicit renderers declaration to components
Modified: root/ui/misc/trunk/jquery/src/main/java/org/richfaces/component/AbstractJQuery.java
===================================================================
--- root/ui/misc/trunk/jquery/src/main/java/org/richfaces/component/AbstractJQuery.java 2010-07-12 08:22:38 UTC (rev 17943)
+++ root/ui/misc/trunk/jquery/src/main/java/org/richfaces/component/AbstractJQuery.java 2010-07-12 08:25:06 UTC (rev 17944)
@@ -26,12 +26,14 @@
import org.richfaces.cdk.annotations.Attribute;
import org.richfaces.cdk.annotations.JsfComponent;
+import org.richfaces.cdk.annotations.JsfRenderer;
/**
* @author nick
*
*/
-@JsfComponent(type = AbstractJQuery.COMPONENT_TYPE, family = AbstractJQuery.COMPONENT_FAMILY)
+@JsfComponent(type = AbstractJQuery.COMPONENT_TYPE, family = AbstractJQuery.COMPONENT_FAMILY,
+ renderer = @JsfRenderer(type = "org.richfaces.JQueryRenderer"))
public abstract class AbstractJQuery extends UIComponentBase {
public static final String COMPONENT_TYPE = "org.richfaces.JQuery";
14 years, 6 months
JBoss Rich Faces SVN: r17943 - in root/tests/metamer/trunk: application and 2 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: lfryc(a)redhat.com
Date: 2010-07-12 04:22:38 -0400 (Mon, 12 Jul 2010)
New Revision: 17943
Modified:
root/tests/metamer/trunk/application/pom.xml
root/tests/metamer/trunk/ftest-source/pom.xml
root/tests/metamer/trunk/ftest/pom.xml
root/tests/metamer/trunk/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: root/tests/metamer/trunk/application/pom.xml
===================================================================
--- root/tests/metamer/trunk/application/pom.xml 2010-07-12 08:22:24 UTC (rev 17942)
+++ root/tests/metamer/trunk/application/pom.xml 2010-07-12 08:22:38 UTC (rev 17943)
@@ -26,7 +26,7 @@
<parent>
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0.Alpha2</version>
+ <version>4.0.0-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.tests</groupId>
Modified: root/tests/metamer/trunk/ftest/pom.xml
===================================================================
--- root/tests/metamer/trunk/ftest/pom.xml 2010-07-12 08:22:24 UTC (rev 17942)
+++ root/tests/metamer/trunk/ftest/pom.xml 2010-07-12 08:22:38 UTC (rev 17943)
@@ -30,14 +30,14 @@
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-ftest</artifactId>
- <version>4.0.0.Alpha2</version>
+ <version>4.0.0-SNAPSHOT</version>
<name>Metamer: RichFaces Testing Application - Functional Test</name>
<packaging>pom</packaging>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/trunk...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/tags/met...</developerConnection>
- <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/trunk/tags/m...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/trunk...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/ftest</developerConnection>
+ <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/trunk/ftest</url>
</scm>
<licenses>
Modified: root/tests/metamer/trunk/ftest-source/pom.xml
===================================================================
--- root/tests/metamer/trunk/ftest-source/pom.xml 2010-07-12 08:22:24 UTC (rev 17942)
+++ root/tests/metamer/trunk/ftest-source/pom.xml 2010-07-12 08:22:38 UTC (rev 17943)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0.Alpha2</version>
+ <version>4.0.0-SNAPSHOT</version>
</parent>
<groupId>org.richfaces.tests</groupId>
Modified: root/tests/metamer/trunk/pom.xml
===================================================================
--- root/tests/metamer/trunk/pom.xml 2010-07-12 08:22:24 UTC (rev 17942)
+++ root/tests/metamer/trunk/pom.xml 2010-07-12 08:22:38 UTC (rev 17943)
@@ -31,7 +31,7 @@
<groupId>org.richfaces.tests</groupId>
<artifactId>metamer-root</artifactId>
- <version>4.0.0.Alpha2</version>
+ <version>4.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Metamer: RichFaces Testing Application - Project Root</name>
@@ -50,9 +50,9 @@
</licenses>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/tags/...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/tags/met...</developerConnection>
- <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/tags/metamer...</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/richfaces/root/tests/metamer/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/richfaces/root/tests/metamer/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/RichFaces/root/tests/metamer/trunk</url>
</scm>
<distributionManagement>
14 years, 6 months