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

Commit 6f5dd7f

Browse files
committed
[maven-release-plugin] prepare release release-1.3-rc1
1 parent eb6dda2 commit 6f5dd7f

4 files changed

Lines changed: 367 additions & 420 deletions

File tree

jwebunit-commons-tests/pom.xml

Lines changed: 33 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,33 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project>
3-
<parent>
4-
<artifactId>jwebunit</artifactId>
5-
<groupId>net.sourceforge.jwebunit</groupId>
6-
<version>1.3-SNAPSHOT</version>
7-
<relativePath>../</relativePath>
8-
</parent>
9-
<modelVersion>4.0.0</modelVersion>
10-
<artifactId>jwebunit-commons-tests</artifactId>
11-
<name>Commons Tests</name>
12-
<description>
13-
All test cases that each plugin should pass.
14-
</description>
15-
<properties>
16-
<topDirectoryLocation>..</topDirectoryLocation>
17-
</properties>
18-
<dependencies>
19-
<dependency>
20-
<groupId>junit</groupId>
21-
<artifactId>junit</artifactId>
22-
<version>3.8.1</version>
23-
</dependency>
24-
<dependency>
25-
<groupId>org.mortbay.jetty</groupId>
26-
<artifactId>jetty</artifactId>
27-
<version>6.0.0beta15</version>
28-
</dependency>
29-
<dependency>
30-
<groupId>net.sourceforge.jwebunit</groupId>
31-
<artifactId>jwebunit-core</artifactId>
32-
<version>1.3-SNAPSHOT</version>
33-
</dependency>
34-
</dependencies>
35-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?><project>
2+
<parent>
3+
<artifactId>jwebunit</artifactId>
4+
<groupId>net.sourceforge.jwebunit</groupId>
5+
<version>1.3-rc1</version>
6+
<relativePath>../</relativePath>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<artifactId>jwebunit-commons-tests</artifactId>
10+
<name>Commons Tests</name>
11+
<version>1.3-rc1</version>
12+
<description>All test cases that each plugin should pass.</description>
13+
<dependencies>
14+
<dependency>
15+
<groupId>junit</groupId>
16+
<artifactId>junit</artifactId>
17+
<version>3.8.1</version>
18+
</dependency>
19+
<dependency>
20+
<groupId>org.mortbay.jetty</groupId>
21+
<artifactId>jetty</artifactId>
22+
<version>6.0.0beta15</version>
23+
</dependency>
24+
<dependency>
25+
<groupId>net.sourceforge.jwebunit</groupId>
26+
<artifactId>jwebunit-core</artifactId>
27+
<version>1.3-rc1</version>
28+
</dependency>
29+
</dependencies>
30+
<properties>
31+
<topDirectoryLocation>..</topDirectoryLocation>
32+
</properties>
33+
</project>

jwebunit-core/pom.xml

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project>
3-
<parent>
4-
<artifactId>jwebunit</artifactId>
5-
<groupId>net.sourceforge.jwebunit</groupId>
6-
<version>1.3-SNAPSHOT</version>
7-
<relativePath>../</relativePath>
8-
</parent>
9-
<modelVersion>4.0.0</modelVersion>
10-
<artifactId>jwebunit-core</artifactId>
11-
<name>Core - API</name>
12-
<description>The core API of jWebUnit. Define how tests should be written.</description>
13-
<dependencies>
14-
<dependency>
15-
<groupId>junit</groupId>
16-
<artifactId>junit</artifactId>
17-
<version>3.8.1</version>
18-
</dependency>
19-
<dependency>
20-
<groupId>regexp</groupId>
21-
<artifactId>regexp</artifactId>
22-
<version>1.3</version>
23-
</dependency>
24-
<dependency>
25-
<groupId>javax.servlet</groupId>
26-
<artifactId>servlet-api</artifactId>
27-
<version>2.4</version>
28-
</dependency>
29-
</dependencies>
30-
<properties>
31-
<topDirectoryLocation>..</topDirectoryLocation>
32-
</properties>
1+
<?xml version="1.0" encoding="UTF-8"?><project>
2+
<parent>
3+
<artifactId>jwebunit</artifactId>
4+
<groupId>net.sourceforge.jwebunit</groupId>
5+
<version>1.3-rc1</version>
6+
<relativePath>../</relativePath>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<artifactId>jwebunit-core</artifactId>
10+
<name>Core - API</name>
11+
<version>1.3-rc1</version>
12+
<description>The core API of jWebUnit. Define how tests should be written.</description>
13+
<dependencies>
14+
<dependency>
15+
<groupId>junit</groupId>
16+
<artifactId>junit</artifactId>
17+
<version>3.8.1</version>
18+
</dependency>
19+
<dependency>
20+
<groupId>javax.servlet</groupId>
21+
<artifactId>servlet-api</artifactId>
22+
<version>2.4</version>
23+
</dependency>
24+
<dependency>
25+
<groupId>regexp</groupId>
26+
<artifactId>regexp</artifactId>
27+
<version>1.3</version>
28+
</dependency>
29+
</dependencies>
30+
<properties>
31+
<topDirectoryLocation>..</topDirectoryLocation>
32+
</properties>
3333
</project>

jwebunit-htmlunit-plugin/pom.xml

Lines changed: 69 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,70 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project>
3-
<parent>
4-
<artifactId>jwebunit</artifactId>
5-
<groupId>net.sourceforge.jwebunit</groupId>
6-
<version>1.3-SNAPSHOT</version>
7-
<relativePath>../</relativePath>
8-
</parent>
9-
<modelVersion>4.0.0</modelVersion>
10-
<artifactId>jwebunit-htmlunit-plugin</artifactId>
11-
<name>HtmlUnit Plugin</name>
12-
<description>HtmlUnit plugin for jWebUnit.</description>
13-
<repositories>
14-
<repository>
15-
<releases />
16-
<id>jwebunit-m2-repo-web</id>
17-
<name>JWebUnit repository</name>
18-
<url>http://jwebunit.sourceforge.net/m2-repo</url>
19-
</repository>
20-
</repositories>
21-
<build>
22-
<plugins>
23-
<plugin>
24-
<artifactId>maven-surefire-plugin</artifactId>
25-
<configuration>
26-
<testFailureIgnore>false</testFailureIgnore>
27-
<includes>
28-
<include>**/*Test.java</include>
29-
<include>**/*Tests.java</include>
30-
</includes>
31-
<excludes>
32-
<exclude>**/*AbstractTest.java</exclude>
33-
<exclude>**/*AbstractTests.java</exclude>
34-
</excludes>
35-
</configuration>
36-
</plugin>
37-
</plugins>
38-
</build>
39-
<dependencies>
40-
<dependency>
41-
<groupId>junit</groupId>
42-
<artifactId>junit</artifactId>
43-
<version>3.8.1</version>
44-
</dependency>
45-
<dependency>
46-
<groupId>net.sourceforge.htmlunit</groupId>
47-
<artifactId>htmlunit</artifactId>
48-
<version>1.8</version>
49-
</dependency>
50-
<dependency>
51-
<groupId>net.sourceforge.jwebunit</groupId>
52-
<artifactId>jwebunit-core</artifactId>
53-
<version>1.3-SNAPSHOT</version>
54-
</dependency>
55-
<dependency>
56-
<groupId>net.sourceforge.jwebunit</groupId>
57-
<artifactId>jwebunit-commons-tests</artifactId>
58-
<version>1.3-SNAPSHOT</version>
59-
<scope>test</scope>
60-
</dependency>
61-
<dependency>
62-
<groupId>commons-logging</groupId>
63-
<artifactId>commons-logging</artifactId>
64-
<version>1.1</version>
65-
</dependency>
66-
</dependencies>
67-
<properties>
68-
<topDirectoryLocation>..</topDirectoryLocation>
69-
</properties>
1+
<?xml version="1.0" encoding="UTF-8"?><project>
2+
<parent>
3+
<artifactId>jwebunit</artifactId>
4+
<groupId>net.sourceforge.jwebunit</groupId>
5+
<version>1.3-rc1</version>
6+
<relativePath>../</relativePath>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<artifactId>jwebunit-htmlunit-plugin</artifactId>
10+
<name>HtmlUnit Plugin</name>
11+
<version>1.3-rc1</version>
12+
<description>HtmlUnit plugin for jWebUnit.</description>
13+
<build>
14+
<plugins>
15+
<plugin>
16+
<artifactId>maven-surefire-plugin</artifactId>
17+
<configuration>
18+
<testFailureIgnore>false</testFailureIgnore>
19+
<includes>
20+
<include>**/*Test.java</include>
21+
<include>**/*Tests.java</include>
22+
</includes>
23+
<excludes>
24+
<exclude>**/*AbstractTest.java</exclude>
25+
<exclude>**/*AbstractTests.java</exclude>
26+
</excludes>
27+
</configuration>
28+
</plugin>
29+
</plugins>
30+
</build>
31+
<repositories>
32+
<repository>
33+
<releases />
34+
<id>jwebunit-m2-repo-web</id>
35+
<name>JWebUnit repository</name>
36+
<url>http://jwebunit.sourceforge.net/m2-repo</url>
37+
</repository>
38+
</repositories>
39+
<dependencies>
40+
<dependency>
41+
<groupId>junit</groupId>
42+
<artifactId>junit</artifactId>
43+
<version>3.8.1</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>net.sourceforge.jwebunit</groupId>
47+
<artifactId>jwebunit-core</artifactId>
48+
<version>1.3-rc1</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>commons-logging</groupId>
52+
<artifactId>commons-logging</artifactId>
53+
<version>1.1</version>
54+
</dependency>
55+
<dependency>
56+
<groupId>net.sourceforge.htmlunit</groupId>
57+
<artifactId>htmlunit</artifactId>
58+
<version>1.8</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>net.sourceforge.jwebunit</groupId>
62+
<artifactId>jwebunit-commons-tests</artifactId>
63+
<version>1.3-rc1</version>
64+
<scope>test</scope>
65+
</dependency>
66+
</dependencies>
67+
<properties>
68+
<topDirectoryLocation>..</topDirectoryLocation>
69+
</properties>
7070
</project>

0 commit comments

Comments
 (0)