Skip to content
This repository was archived by the owner on Apr 7, 2022. It is now read-only.

Commit 348fc03

Browse files
committed
Prepare release 3.2. Update Webdriver plugin.
1 parent aa65647 commit 348fc03

10 files changed

Lines changed: 1144 additions & 1143 deletions

File tree

README.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
The JWebUnit team is pleased to announce the JWebUnit 3.1 release!
1+
The JWebUnit team is pleased to announce the JWebUnit 3.2 release!
22

33
http://jwebunit.sourceforge.net
44

55
JWebUnit is a Java framework that facilitates creation of acceptance tests for
6-
web applications. It evolved from a project where we were using HttpUnit and
7-
JUnit to create acceptance tests. As the tests were being written, they were
8-
continuously refactored to remove duplication and other bad smells in the test
6+
web applications. It evolved from a project where we were using HttpUnit and
7+
JUnit to create acceptance tests. As the tests were being written, they were
8+
continuously refactored to remove duplication and other bad smells in the test
99
code. JWebUnit is the result of these refactorings.
1010
We are using HtmlUnit (htmlunit.sourceforge.net).
1111

@@ -14,4 +14,4 @@ http://jwebunit.sourceforge.net/changes-report.html
1414

1515
Have fun!
1616
-The JWebUnit team
17-
17+

jwebunit-commons-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>commons-io</groupId>
3737
<artifactId>commons-io</artifactId>
38-
<version>2.0.1</version>
38+
<version>2.4</version>
3939
</dependency>
4040
<dependency>
4141
<groupId>com.google.code.tempus-fugit</groupId>

jwebunit-htmlunit-plugin/src/site/xdoc/index.xml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
<title>JWebUnit</title>
2626
</properties>
2727
<meta name="keyword" content="jwebunit, java, junit, htmlunit, jacobie, httpunit, integration, test, automated, html, webtest"/>
28-
<head>
29-
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
30-
</head>
28+
<head>
29+
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
30+
</head>
3131
<body>
3232
<section name="HtmlUnit plugin">
3333
<p>
@@ -55,7 +55,7 @@ import com.gargoylesoftware.htmlunit.html.HtmlTextInput;
5555
import org.junit.Test;
5656

5757
public class SearchExample {
58-
58+
5959
@Test
6060
public void testSearch() throws Exception {
6161
final WebClient webClient = new WebClient();
@@ -82,12 +82,12 @@ import org.junit.Test;
8282
import static net.sourceforge.jwebunit.junit.JWebUnit.*;
8383

8484
public class SearchExample {
85-
85+
8686
@Before
8787
public void prepare() {
8888
setBaseUrl("http://www.google.com");
8989
}
90-
90+
9191
@Test
9292
public void testSearch() {
9393
beginAt("/");
@@ -105,22 +105,22 @@ public class SearchExample {
105105
</p>
106106
</section>
107107
<section name="HowTo manage dependencies with Maven 2">
108-
<p>
109-
Just add the following dependency to your pom:
110-
<source><pre>
108+
<p>
109+
Just add the following dependency to your pom:
110+
<source><pre>
111111
...
112112
&lt;dependencies&gt;
113113
...
114114
&lt;dependency&gt;
115115
&lt;groupId&gt;net.sourceforge.jwebunit&lt;/groupId&gt;
116116
&lt;artifactId&gt;jwebunit-htmlunit-plugin&lt;/artifactId&gt;
117-
&lt;version&gt;3.1&lt;/version&gt;
117+
&lt;version&gt;3.2&lt;/version&gt;
118118
&lt;/dependency&gt;
119119
...
120120
&lt;/dependencies&gt;
121121
...
122-
</pre></source>
123-
</p>
122+
</pre></source>
123+
</p>
124124
</section>
125-
</body>
125+
</body>
126126
</document>

jwebunit-webdriver-plugin/pom.xml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<dependency>
3535
<groupId>org.seleniumhq.selenium</groupId>
3636
<artifactId>selenium-htmlunit-driver</artifactId>
37-
<version>2.26.0</version>
37+
<version>2.40.0</version>
3838
<exclusions>
3939
<exclusion>
4040
<artifactId>commons-logging</artifactId>
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>org.seleniumhq.selenium</groupId>
4747
<artifactId>selenium-support</artifactId>
48-
<version>2.26.0</version>
48+
<version>2.40.0</version>
4949
</dependency>
5050
<dependency>
5151
<groupId>net.sourceforge.jwebunit</groupId>
@@ -75,19 +75,23 @@
7575
<dependency>
7676
<groupId>biz.neustar</groupId>
7777
<artifactId>browsermob-proxy</artifactId>
78-
<version>2.0-beta-6</version>
78+
<version>2.0-beta-7</version>
7979
<exclusions>
8080
<exclusion>
81-
<artifactId>commons-logging</artifactId>
8281
<groupId>commons-logging</groupId>
82+
<artifactId>commons-logging</artifactId>
8383
</exclusion>
8484
<exclusion>
85-
<artifactId>org.apache.commons</artifactId>
8685
<groupId>commons-io</groupId>
86+
<artifactId>org.apache.commons</artifactId>
8787
</exclusion>
8888
<exclusion>
89-
<artifactId>slf4j-jdk14</artifactId>
9089
<groupId>org.slf4j</groupId>
90+
<artifactId>slf4j-jdk14</artifactId>
91+
</exclusion>
92+
<exclusion>
93+
<groupId>org.apache.httpcomponents</groupId>
94+
<artifactId>httpmime</artifactId>
9195
</exclusion>
9296
</exclusions>
9397
</dependency>

0 commit comments

Comments
 (0)