Thread: [JWebUnit-development] SF.net SVN: jwebunit:[859] branches/2.x
Brought to you by:
henryju
|
From: <he...@us...> - 2010-10-18 09:48:07
|
Revision: 859
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=859&view=rev
Author: henryju
Date: 2010-10-18 09:48:01 +0000 (Mon, 18 Oct 2010)
Log Message:
-----------
Updated versions in documentation for the 2.5 release.
Modified Paths:
--------------
branches/2.x/README.txt
branches/2.x/jwebunit-htmlunit-plugin/src/site/xdoc/index.xml
branches/2.x/jwebunit-selenium-plugin/src/site/xdoc/index.xml
branches/2.x/src/changes/changes.xml
branches/2.x/src/site/xdoc/index.xml
branches/2.x/src/site/xdoc/installation.xml
Modified: branches/2.x/README.txt
===================================================================
--- branches/2.x/README.txt 2010-10-18 09:41:18 UTC (rev 858)
+++ branches/2.x/README.txt 2010-10-18 09:48:01 UTC (rev 859)
@@ -1,4 +1,4 @@
-The JWebUnit team is pleased to announce the JWebUnit 2.4 release!
+The JWebUnit team is pleased to announce the JWebUnit 2.5 release!
http://jwebunit.sourceforge.net
Modified: branches/2.x/jwebunit-htmlunit-plugin/src/site/xdoc/index.xml
===================================================================
--- branches/2.x/jwebunit-htmlunit-plugin/src/site/xdoc/index.xml 2010-10-18 09:41:18 UTC (rev 858)
+++ branches/2.x/jwebunit-htmlunit-plugin/src/site/xdoc/index.xml 2010-10-18 09:48:01 UTC (rev 859)
@@ -111,7 +111,7 @@
<dependency>
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit-htmlunit-plugin</artifactId>
- <version>2.0</version>
+ <version>2.5</version>
</dependency>
...
</dependencies>
Modified: branches/2.x/jwebunit-selenium-plugin/src/site/xdoc/index.xml
===================================================================
--- branches/2.x/jwebunit-selenium-plugin/src/site/xdoc/index.xml 2010-10-18 09:41:18 UTC (rev 858)
+++ branches/2.x/jwebunit-selenium-plugin/src/site/xdoc/index.xml 2010-10-18 09:48:01 UTC (rev 859)
@@ -49,7 +49,7 @@
<dependency>
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit-selenium-plugin</artifactId>
- <version>2.0</version>
+ <version>2.5</version>
</dependency>
...
</dependencies>
Modified: branches/2.x/src/changes/changes.xml
===================================================================
--- branches/2.x/src/changes/changes.xml 2010-10-18 09:41:18 UTC (rev 858)
+++ branches/2.x/src/changes/changes.xml 2010-10-18 09:48:01 UTC (rev 859)
@@ -31,7 +31,7 @@
</author>
</properties>
<body>
- <release version="2.5" date="UNKNOW" description="">
+ <release version="2.5" date="October 18, 2010" description="Small fixes and dependency updates">
<action type="update" dev="henryju">
Updated to slf4j 1.6.1.
</action>
Modified: branches/2.x/src/site/xdoc/index.xml
===================================================================
--- branches/2.x/src/site/xdoc/index.xml 2010-10-18 09:41:18 UTC (rev 858)
+++ branches/2.x/src/site/xdoc/index.xml 2010-10-18 09:48:01 UTC (rev 859)
@@ -55,7 +55,7 @@
</p>
<p>
- The current version of JWebUnit is 2.4. This is the "stable" version of
+ The current version of JWebUnit is 2.5. This is the "stable" version of
JWebUnit, and requires Java 1.5.
</p>
</section>
Modified: branches/2.x/src/site/xdoc/installation.xml
===================================================================
--- branches/2.x/src/site/xdoc/installation.xml 2010-10-18 09:41:18 UTC (rev 858)
+++ branches/2.x/src/site/xdoc/installation.xml 2010-10-18 09:48:01 UTC (rev 859)
@@ -43,7 +43,7 @@
<dependency>
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit-htmlunit-plugin</artifactId>
- <version>2.2</version>
+ <version>2.5</version>
<scope>test</scope>
</dependency>
</dependencies>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-10-20 09:16:30
|
Revision: 867
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=867&view=rev
Author: henryju
Date: 2010-10-20 09:16:23 +0000 (Wed, 20 Oct 2010)
Log Message:
-----------
[2970512] Fixed issue with absolute image path.
Modified Paths:
--------------
branches/2.x/jwebunit-commons-tests/src/main/java/net/sourceforge/jwebunit/tests/ImageTest.java
branches/2.x/jwebunit-commons-tests/src/main/resources/testcases/ImageTest/PageWithImages.html
branches/2.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/junit/WebTester.java
branches/2.x/src/changes/changes.xml
Modified: branches/2.x/jwebunit-commons-tests/src/main/java/net/sourceforge/jwebunit/tests/ImageTest.java
===================================================================
--- branches/2.x/jwebunit-commons-tests/src/main/java/net/sourceforge/jwebunit/tests/ImageTest.java 2010-10-19 15:21:52 UTC (rev 866)
+++ branches/2.x/jwebunit-commons-tests/src/main/java/net/sourceforge/jwebunit/tests/ImageTest.java 2010-10-20 09:16:23 UTC (rev 867)
@@ -94,4 +94,9 @@
assertImageValid("images/Image5.png", "image 5 - subdir");
assertImageValid("../images/photos/Image3.jpg", "image 3 again - topdir");
}
+
+ public void testAbsolutePath() {
+ assertImagePresent("/jwebunit/ImageTest/images/Image1.gif", "absolute image 1");
+ assertImageValid("/jwebunit/ImageTest/images/Image1.gif", "absolute image 1");
+ }
}
Modified: branches/2.x/jwebunit-commons-tests/src/main/resources/testcases/ImageTest/PageWithImages.html
===================================================================
--- branches/2.x/jwebunit-commons-tests/src/main/resources/testcases/ImageTest/PageWithImages.html 2010-10-19 15:21:52 UTC (rev 866)
+++ branches/2.x/jwebunit-commons-tests/src/main/resources/testcases/ImageTest/PageWithImages.html 2010-10-20 09:16:23 UTC (rev 867)
@@ -28,6 +28,7 @@
<body>
<div id="test">
<img src="images/Image1.gif" alt="image 1" />
+ <img src="/jwebunit/ImageTest/images/Image1.gif" alt="absolute image 1" />
<img src="images/Image2.png" alt="image 2" />
<img src="images/photos/Image3.jpg" alt="image 3" />
<img src="somedir/Image4.gif" />
Modified: branches/2.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/junit/WebTester.java
===================================================================
--- branches/2.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/junit/WebTester.java 2010-10-19 15:21:52 UTC (rev 866)
+++ branches/2.x/jwebunit-core/src/main/java/net/sourceforge/jwebunit/junit/WebTester.java 2010-10-20 09:16:23 UTC (rev 867)
@@ -232,6 +232,15 @@
}
+ /**
+ * This way of creating URL is not standard as absolute path are not correctly handled. We have to keep this
+ * non standard method for {@link #beginAt(String)} that advertise a bad usage for a long time.
+ * @param url Absolute or relative URL. If start with '/', then it is incorrectly appended to baseURL.
+ * @param baseURL Base URL of the page
+ * @return Final absolute URL.
+ * @throws MalformedURLException
+ */
+ @Deprecated
private URL createUrl(String url, URL baseURL) throws MalformedURLException {
if (url.startsWith("http://") || url.startsWith("https://")
|| url.startsWith("file://")) {
@@ -244,6 +253,24 @@
}
}
+ /**
+ *
+ * @param url Absolute or relative URL
+ * @param baseURL Base URL of the page
+ * @return Final absolute URL.
+ * @throws MalformedURLException
+ */
+ private URL createUrlFixed(String url, URL baseURL) throws MalformedURLException {
+ if (url.startsWith("http://") || url.startsWith("https://") //Absolute URL
+ || url.startsWith("file://")) {
+ return new URL(url);
+ } else if (url.startsWith("www.")) { //Absolute URL with missing scheme (accepted by some browsers)
+ return new URL("http://" + url);
+ } else { //Relative path
+ return new URL(baseURL, url);
+ }
+ }
+
/**
* Return the value of a web resource based on its key. This translates to a property file lookup with the locale
* based on the current TestContext.
@@ -3427,7 +3454,7 @@
assertImagePresent(imageSrc, imageAlt);
URL imageUrl = null;
try {
- imageUrl = createUrl(imageSrc, getTestingEngine().getPageURL());
+ imageUrl = createUrlFixed(imageSrc, getTestingEngine().getPageURL());
} catch (MalformedURLException e1) {
Assert.fail(e1.getLocalizedMessage());
}
Modified: branches/2.x/src/changes/changes.xml
===================================================================
--- branches/2.x/src/changes/changes.xml 2010-10-19 15:21:52 UTC (rev 866)
+++ branches/2.x/src/changes/changes.xml 2010-10-20 09:16:23 UTC (rev 867)
@@ -32,6 +32,9 @@
</properties>
<body>
<release version="2.5" date="October 18, 2010" description="Small fixes and dependency updates">
+ <action type="fix" dev="henryju" issue="2970512" due-to="Todd Owen">
+ Fixed handling of absolute image path (when src attribute start with a /).
+ </action>
<action type="update" dev="henryju">
Updated to slf4j 1.6.1.
</action>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-10-24 09:48:17
|
Revision: 875
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=875&view=rev
Author: henryju
Date: 2010-10-24 09:48:10 +0000 (Sun, 24 Oct 2010)
Log Message:
-----------
[maven-release-plugin] prepare release jwebunit-2.5
Modified Paths:
--------------
branches/2.x/jwebunit-commons-tests/pom.xml
branches/2.x/jwebunit-core/pom.xml
branches/2.x/jwebunit-htmlunit-plugin/pom.xml
branches/2.x/jwebunit-selenium-plugin/pom.xml
branches/2.x/jwebunit-webtestcase-generator/pom.xml
branches/2.x/pom.xml
Modified: branches/2.x/jwebunit-commons-tests/pom.xml
===================================================================
--- branches/2.x/jwebunit-commons-tests/pom.xml 2010-10-20 13:10:11 UTC (rev 874)
+++ branches/2.x/jwebunit-commons-tests/pom.xml 2010-10-24 09:48:10 UTC (rev 875)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-core/pom.xml
===================================================================
--- branches/2.x/jwebunit-core/pom.xml 2010-10-20 13:10:11 UTC (rev 874)
+++ branches/2.x/jwebunit-core/pom.xml 2010-10-24 09:48:10 UTC (rev 875)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-htmlunit-plugin/pom.xml
===================================================================
--- branches/2.x/jwebunit-htmlunit-plugin/pom.xml 2010-10-20 13:10:11 UTC (rev 874)
+++ branches/2.x/jwebunit-htmlunit-plugin/pom.xml 2010-10-24 09:48:10 UTC (rev 875)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-selenium-plugin/pom.xml
===================================================================
--- branches/2.x/jwebunit-selenium-plugin/pom.xml 2010-10-20 13:10:11 UTC (rev 874)
+++ branches/2.x/jwebunit-selenium-plugin/pom.xml 2010-10-24 09:48:10 UTC (rev 875)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-webtestcase-generator/pom.xml
===================================================================
--- branches/2.x/jwebunit-webtestcase-generator/pom.xml 2010-10-20 13:10:11 UTC (rev 874)
+++ branches/2.x/jwebunit-webtestcase-generator/pom.xml 2010-10-24 09:48:10 UTC (rev 875)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/pom.xml
===================================================================
--- branches/2.x/pom.xml 2010-10-20 13:10:11 UTC (rev 874)
+++ branches/2.x/pom.xml 2010-10-24 09:48:10 UTC (rev 875)
@@ -1,10 +1,9 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit</artifactId>
<name>JWebUnit</name>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<packaging>pom</packaging>
<description>
JWebUnit is a Java framework that facilitates creation of
@@ -181,9 +180,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</connection>
- <developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</developerConnection>
- <url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/trunk</url>
+ <connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/tags/jwebunit-2.5</connection>
+ <developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/tags/jwebunit-2.5</developerConnection>
+ <url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/tags/jwebunit-2.5</url>
</scm>
<organization>
<name>SourceForge</name>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-10-24 09:49:09
|
Revision: 877
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=877&view=rev
Author: henryju
Date: 2010-10-24 09:48:43 +0000 (Sun, 24 Oct 2010)
Log Message:
-----------
[maven-release-plugin] prepare for next development iteration
Modified Paths:
--------------
branches/2.x/jwebunit-commons-tests/pom.xml
branches/2.x/jwebunit-core/pom.xml
branches/2.x/jwebunit-htmlunit-plugin/pom.xml
branches/2.x/jwebunit-selenium-plugin/pom.xml
branches/2.x/jwebunit-webtestcase-generator/pom.xml
branches/2.x/pom.xml
Modified: branches/2.x/jwebunit-commons-tests/pom.xml
===================================================================
--- branches/2.x/jwebunit-commons-tests/pom.xml 2010-10-24 09:48:29 UTC (rev 876)
+++ branches/2.x/jwebunit-commons-tests/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-core/pom.xml
===================================================================
--- branches/2.x/jwebunit-core/pom.xml 2010-10-24 09:48:29 UTC (rev 876)
+++ branches/2.x/jwebunit-core/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-htmlunit-plugin/pom.xml
===================================================================
--- branches/2.x/jwebunit-htmlunit-plugin/pom.xml 2010-10-24 09:48:29 UTC (rev 876)
+++ branches/2.x/jwebunit-htmlunit-plugin/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-selenium-plugin/pom.xml
===================================================================
--- branches/2.x/jwebunit-selenium-plugin/pom.xml 2010-10-24 09:48:29 UTC (rev 876)
+++ branches/2.x/jwebunit-selenium-plugin/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-webtestcase-generator/pom.xml
===================================================================
--- branches/2.x/jwebunit-webtestcase-generator/pom.xml 2010-10-24 09:48:29 UTC (rev 876)
+++ branches/2.x/jwebunit-webtestcase-generator/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/pom.xml
===================================================================
--- branches/2.x/pom.xml 2010-10-24 09:48:29 UTC (rev 876)
+++ branches/2.x/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
@@ -3,7 +3,7 @@
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit</artifactId>
<name>JWebUnit</name>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<packaging>pom</packaging>
<description>
JWebUnit is a Java framework that facilitates creation of
@@ -180,9 +180,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/tags/jwebunit-2.5</connection>
- <developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/tags/jwebunit-2.5</developerConnection>
- <url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/tags/jwebunit-2.5</url>
+ <connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</connection>
+ <developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/trunk</developerConnection>
+ <url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/trunk</url>
</scm>
<organization>
<name>SourceForge</name>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-10-24 09:58:53
|
Revision: 878
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=878&view=rev
Author: henryju
Date: 2010-10-24 09:58:47 +0000 (Sun, 24 Oct 2010)
Log Message:
-----------
[maven-release-plugin] rollback the release of jwebunit-2.5
Modified Paths:
--------------
branches/2.x/jwebunit-commons-tests/pom.xml
branches/2.x/jwebunit-core/pom.xml
branches/2.x/jwebunit-htmlunit-plugin/pom.xml
branches/2.x/jwebunit-selenium-plugin/pom.xml
branches/2.x/jwebunit-webtestcase-generator/pom.xml
branches/2.x/pom.xml
Modified: branches/2.x/jwebunit-commons-tests/pom.xml
===================================================================
--- branches/2.x/jwebunit-commons-tests/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
+++ branches/2.x/jwebunit-commons-tests/pom.xml 2010-10-24 09:58:47 UTC (rev 878)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.6-SNAPSHOT</version>
+ <version>2.5-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-core/pom.xml
===================================================================
--- branches/2.x/jwebunit-core/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
+++ branches/2.x/jwebunit-core/pom.xml 2010-10-24 09:58:47 UTC (rev 878)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.6-SNAPSHOT</version>
+ <version>2.5-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-htmlunit-plugin/pom.xml
===================================================================
--- branches/2.x/jwebunit-htmlunit-plugin/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
+++ branches/2.x/jwebunit-htmlunit-plugin/pom.xml 2010-10-24 09:58:47 UTC (rev 878)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.6-SNAPSHOT</version>
+ <version>2.5-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-selenium-plugin/pom.xml
===================================================================
--- branches/2.x/jwebunit-selenium-plugin/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
+++ branches/2.x/jwebunit-selenium-plugin/pom.xml 2010-10-24 09:58:47 UTC (rev 878)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.6-SNAPSHOT</version>
+ <version>2.5-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-webtestcase-generator/pom.xml
===================================================================
--- branches/2.x/jwebunit-webtestcase-generator/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
+++ branches/2.x/jwebunit-webtestcase-generator/pom.xml 2010-10-24 09:58:47 UTC (rev 878)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.6-SNAPSHOT</version>
+ <version>2.5-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/pom.xml
===================================================================
--- branches/2.x/pom.xml 2010-10-24 09:48:43 UTC (rev 877)
+++ branches/2.x/pom.xml 2010-10-24 09:58:47 UTC (rev 878)
@@ -1,9 +1,10 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit</artifactId>
<name>JWebUnit</name>
- <version>2.6-SNAPSHOT</version>
+ <version>2.5-SNAPSHOT</version>
<packaging>pom</packaging>
<description>
JWebUnit is a Java framework that facilitates creation of
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-10-24 10:05:00
|
Revision: 882
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=882&view=rev
Author: henryju
Date: 2010-10-24 10:04:53 +0000 (Sun, 24 Oct 2010)
Log Message:
-----------
[maven-release-plugin] prepare release jwebunit-2.5
Modified Paths:
--------------
branches/2.x/jwebunit-commons-tests/pom.xml
branches/2.x/jwebunit-core/pom.xml
branches/2.x/jwebunit-htmlunit-plugin/pom.xml
branches/2.x/jwebunit-selenium-plugin/pom.xml
branches/2.x/jwebunit-webtestcase-generator/pom.xml
branches/2.x/pom.xml
Modified: branches/2.x/jwebunit-commons-tests/pom.xml
===================================================================
--- branches/2.x/jwebunit-commons-tests/pom.xml 2010-10-24 10:03:10 UTC (rev 881)
+++ branches/2.x/jwebunit-commons-tests/pom.xml 2010-10-24 10:04:53 UTC (rev 882)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-core/pom.xml
===================================================================
--- branches/2.x/jwebunit-core/pom.xml 2010-10-24 10:03:10 UTC (rev 881)
+++ branches/2.x/jwebunit-core/pom.xml 2010-10-24 10:04:53 UTC (rev 882)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-htmlunit-plugin/pom.xml
===================================================================
--- branches/2.x/jwebunit-htmlunit-plugin/pom.xml 2010-10-24 10:03:10 UTC (rev 881)
+++ branches/2.x/jwebunit-htmlunit-plugin/pom.xml 2010-10-24 10:04:53 UTC (rev 882)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-selenium-plugin/pom.xml
===================================================================
--- branches/2.x/jwebunit-selenium-plugin/pom.xml 2010-10-24 10:03:10 UTC (rev 881)
+++ branches/2.x/jwebunit-selenium-plugin/pom.xml 2010-10-24 10:04:53 UTC (rev 882)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-webtestcase-generator/pom.xml
===================================================================
--- branches/2.x/jwebunit-webtestcase-generator/pom.xml 2010-10-24 10:03:10 UTC (rev 881)
+++ branches/2.x/jwebunit-webtestcase-generator/pom.xml 2010-10-24 10:04:53 UTC (rev 882)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/pom.xml
===================================================================
--- branches/2.x/pom.xml 2010-10-24 10:03:10 UTC (rev 881)
+++ branches/2.x/pom.xml 2010-10-24 10:04:53 UTC (rev 882)
@@ -1,10 +1,9 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit</artifactId>
<name>JWebUnit</name>
- <version>2.5-SNAPSHOT</version>
+ <version>2.5</version>
<packaging>pom</packaging>
<description>
JWebUnit is a Java framework that facilitates creation of
@@ -181,9 +180,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/branches/2.x</connection>
- <developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/branches/2.x</developerConnection>
- <url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/trunk</url>
+ <connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/tags/jwebunit-2.5</connection>
+ <developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/tags/jwebunit-2.5</developerConnection>
+ <url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/tags/jwebunit-2.5</url>
</scm>
<organization>
<name>SourceForge</name>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <he...@us...> - 2010-10-24 10:05:31
|
Revision: 884
http://jwebunit.svn.sourceforge.net/jwebunit/?rev=884&view=rev
Author: henryju
Date: 2010-10-24 10:05:25 +0000 (Sun, 24 Oct 2010)
Log Message:
-----------
[maven-release-plugin] prepare for next development iteration
Modified Paths:
--------------
branches/2.x/jwebunit-commons-tests/pom.xml
branches/2.x/jwebunit-core/pom.xml
branches/2.x/jwebunit-htmlunit-plugin/pom.xml
branches/2.x/jwebunit-selenium-plugin/pom.xml
branches/2.x/jwebunit-webtestcase-generator/pom.xml
branches/2.x/pom.xml
Modified: branches/2.x/jwebunit-commons-tests/pom.xml
===================================================================
--- branches/2.x/jwebunit-commons-tests/pom.xml 2010-10-24 10:05:12 UTC (rev 883)
+++ branches/2.x/jwebunit-commons-tests/pom.xml 2010-10-24 10:05:25 UTC (rev 884)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-core/pom.xml
===================================================================
--- branches/2.x/jwebunit-core/pom.xml 2010-10-24 10:05:12 UTC (rev 883)
+++ branches/2.x/jwebunit-core/pom.xml 2010-10-24 10:05:25 UTC (rev 884)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-htmlunit-plugin/pom.xml
===================================================================
--- branches/2.x/jwebunit-htmlunit-plugin/pom.xml 2010-10-24 10:05:12 UTC (rev 883)
+++ branches/2.x/jwebunit-htmlunit-plugin/pom.xml 2010-10-24 10:05:25 UTC (rev 884)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-selenium-plugin/pom.xml
===================================================================
--- branches/2.x/jwebunit-selenium-plugin/pom.xml 2010-10-24 10:05:12 UTC (rev 883)
+++ branches/2.x/jwebunit-selenium-plugin/pom.xml 2010-10-24 10:05:25 UTC (rev 884)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/jwebunit-webtestcase-generator/pom.xml
===================================================================
--- branches/2.x/jwebunit-webtestcase-generator/pom.xml 2010-10-24 10:05:12 UTC (rev 883)
+++ branches/2.x/jwebunit-webtestcase-generator/pom.xml 2010-10-24 10:05:25 UTC (rev 884)
@@ -2,7 +2,7 @@
<parent>
<artifactId>jwebunit</artifactId>
<groupId>net.sourceforge.jwebunit</groupId>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: branches/2.x/pom.xml
===================================================================
--- branches/2.x/pom.xml 2010-10-24 10:05:12 UTC (rev 883)
+++ branches/2.x/pom.xml 2010-10-24 10:05:25 UTC (rev 884)
@@ -3,7 +3,7 @@
<groupId>net.sourceforge.jwebunit</groupId>
<artifactId>jwebunit</artifactId>
<name>JWebUnit</name>
- <version>2.5</version>
+ <version>2.6-SNAPSHOT</version>
<packaging>pom</packaging>
<description>
JWebUnit is a Java framework that facilitates creation of
@@ -180,9 +180,9 @@
</license>
</licenses>
<scm>
- <connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/tags/jwebunit-2.5</connection>
- <developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/tags/jwebunit-2.5</developerConnection>
- <url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/tags/jwebunit-2.5</url>
+ <connection>scm:svn:http://jwebunit.svn.sourceforge.net/svnroot/jwebunit/branches/2.x</connection>
+ <developerConnection>scm:svn:https://jwebunit.svn.sourceforge.net/svnroot/jwebunit/branches/2.x</developerConnection>
+ <url>http://jwebunit.svn.sourceforge.net/viewvc/jwebunit/trunk</url>
</scm>
<organization>
<name>SourceForge</name>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|