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

Commit 3389714

Browse files
committed
[maven-release-plugin] copy for tag jwebunit-1.5
1 parent 07eb399 commit 3389714

6 files changed

Lines changed: 741 additions & 741 deletions

File tree

jwebunit-commons-tests/pom.xml

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
1-
<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">
2-
<parent>
3-
<artifactId>jwebunit</artifactId>
4-
<groupId>net.sourceforge.jwebunit</groupId>
5-
<version>1.5-SNAPSHOT</version>
6-
<relativePath>../</relativePath>
7-
</parent>
8-
<modelVersion>4.0.0</modelVersion>
9-
<artifactId>jwebunit-commons-tests</artifactId>
10-
<name>Commons Tests</name>
11-
<description>All test cases that each plugin should pass.</description>
12-
<dependencies>
13-
<dependency>
14-
<groupId>junit</groupId>
15-
<artifactId>junit</artifactId>
16-
</dependency>
17-
<dependency>
18-
<groupId>junitperf</groupId>
19-
<artifactId>junitperf</artifactId>
20-
</dependency>
21-
<dependency>
22-
<groupId>org.mortbay.jetty</groupId>
23-
<artifactId>jetty</artifactId>
24-
</dependency>
25-
<dependency>
26-
<groupId>net.sourceforge.jwebunit</groupId>
27-
<artifactId>jwebunit-core</artifactId>
28-
<version>${pom.version}</version>
29-
</dependency>
30-
<dependency>
31-
<groupId>commons-fileupload</groupId>
32-
<artifactId>commons-fileupload</artifactId>
33-
</dependency>
34-
<dependency>
35-
<groupId>commons-io</groupId>
36-
<artifactId>commons-io</artifactId>
37-
</dependency>
38-
</dependencies>
39-
<properties>
40-
<topDirectoryLocation>..</topDirectoryLocation>
41-
</properties>
1+
<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">
2+
<parent>
3+
<artifactId>jwebunit</artifactId>
4+
<groupId>net.sourceforge.jwebunit</groupId>
5+
<version>1.5</version>
6+
<relativePath>../</relativePath>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<artifactId>jwebunit-commons-tests</artifactId>
10+
<name>Commons Tests</name>
11+
<description>All test cases that each plugin should pass.</description>
12+
<dependencies>
13+
<dependency>
14+
<groupId>junit</groupId>
15+
<artifactId>junit</artifactId>
16+
</dependency>
17+
<dependency>
18+
<groupId>junitperf</groupId>
19+
<artifactId>junitperf</artifactId>
20+
</dependency>
21+
<dependency>
22+
<groupId>org.mortbay.jetty</groupId>
23+
<artifactId>jetty</artifactId>
24+
</dependency>
25+
<dependency>
26+
<groupId>net.sourceforge.jwebunit</groupId>
27+
<artifactId>jwebunit-core</artifactId>
28+
<version>${pom.version}</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>commons-fileupload</groupId>
32+
<artifactId>commons-fileupload</artifactId>
33+
</dependency>
34+
<dependency>
35+
<groupId>commons-io</groupId>
36+
<artifactId>commons-io</artifactId>
37+
</dependency>
38+
</dependencies>
39+
<properties>
40+
<topDirectoryLocation>..</topDirectoryLocation>
41+
</properties>
4242
</project>

jwebunit-core/pom.xml

Lines changed: 77 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,78 @@
1-
<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">
2-
<parent>
3-
<artifactId>jwebunit</artifactId>
4-
<groupId>net.sourceforge.jwebunit</groupId>
5-
<version>1.5-SNAPSHOT</version>
6-
<relativePath>../</relativePath>
7-
</parent>
8-
<modelVersion>4.0.0</modelVersion>
9-
<artifactId>jwebunit-core</artifactId>
10-
<name>Core - API</name>
11-
<description>
12-
The core API of JWebUnit. Define how tests should be written and interface for testing engines.
13-
</description>
14-
<dependencies>
15-
<dependency>
16-
<groupId>junit</groupId>
17-
<artifactId>junit</artifactId>
18-
</dependency>
19-
<dependency>
20-
<groupId>regexp</groupId>
21-
<artifactId>regexp</artifactId>
22-
</dependency>
23-
<dependency>
24-
<groupId>javax.servlet</groupId>
25-
<artifactId>servlet-api</artifactId>
26-
</dependency>
27-
</dependencies>
28-
<properties>
29-
<topDirectoryLocation>..</topDirectoryLocation>
30-
</properties>
31-
<build>
32-
<plugins>
33-
<plugin>
34-
<groupId>org.codehaus.mojo</groupId>
35-
<artifactId>exec-maven-plugin</artifactId>
36-
<executions>
37-
<execution>
38-
<phase>generate-sources</phase>
39-
<goals>
40-
<goal>java</goal>
41-
</goals>
42-
<configuration>
43-
<sourceRoot>
44-
${project.build.directory}/generated-sources/main/java
45-
</sourceRoot>
46-
</configuration>
47-
</execution>
48-
</executions>
49-
<configuration>
50-
<mainClass>
51-
net.sourceforge.jwebunit.javacc.WebTestCaseGenerator
52-
</mainClass>
53-
<arguments>
54-
<argument>${basedir}/src/main/java</argument>
55-
<argument>
56-
${project.build.directory}/generated-sources/main/java
57-
</argument>
58-
</arguments>
59-
<includePluginDependencies>
60-
true
61-
</includePluginDependencies>
62-
<includeProjectDependencies>
63-
false
64-
</includeProjectDependencies>
65-
</configuration>
66-
<dependencies>
67-
<dependency>
68-
<groupId>net.sourceforge.jwebunit</groupId>
69-
<artifactId>
70-
jwebunit-webtestcase-generator
71-
</artifactId>
72-
<version>${pom.version}</version>
73-
</dependency>
74-
</dependencies>
75-
</plugin>
76-
</plugins>
77-
</build>
1+
<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">
2+
<parent>
3+
<artifactId>jwebunit</artifactId>
4+
<groupId>net.sourceforge.jwebunit</groupId>
5+
<version>1.5</version>
6+
<relativePath>../</relativePath>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<artifactId>jwebunit-core</artifactId>
10+
<name>Core - API</name>
11+
<description>
12+
The core API of JWebUnit. Define how tests should be written and interface for testing engines.
13+
</description>
14+
<dependencies>
15+
<dependency>
16+
<groupId>junit</groupId>
17+
<artifactId>junit</artifactId>
18+
</dependency>
19+
<dependency>
20+
<groupId>regexp</groupId>
21+
<artifactId>regexp</artifactId>
22+
</dependency>
23+
<dependency>
24+
<groupId>javax.servlet</groupId>
25+
<artifactId>servlet-api</artifactId>
26+
</dependency>
27+
</dependencies>
28+
<properties>
29+
<topDirectoryLocation>..</topDirectoryLocation>
30+
</properties>
31+
<build>
32+
<plugins>
33+
<plugin>
34+
<groupId>org.codehaus.mojo</groupId>
35+
<artifactId>exec-maven-plugin</artifactId>
36+
<executions>
37+
<execution>
38+
<phase>generate-sources</phase>
39+
<goals>
40+
<goal>java</goal>
41+
</goals>
42+
<configuration>
43+
<sourceRoot>
44+
${project.build.directory}/generated-sources/main/java
45+
</sourceRoot>
46+
</configuration>
47+
</execution>
48+
</executions>
49+
<configuration>
50+
<mainClass>
51+
net.sourceforge.jwebunit.javacc.WebTestCaseGenerator
52+
</mainClass>
53+
<arguments>
54+
<argument>${basedir}/src/main/java</argument>
55+
<argument>
56+
${project.build.directory}/generated-sources/main/java
57+
</argument>
58+
</arguments>
59+
<includePluginDependencies>
60+
true
61+
</includePluginDependencies>
62+
<includeProjectDependencies>
63+
false
64+
</includeProjectDependencies>
65+
</configuration>
66+
<dependencies>
67+
<dependency>
68+
<groupId>net.sourceforge.jwebunit</groupId>
69+
<artifactId>
70+
jwebunit-webtestcase-generator
71+
</artifactId>
72+
<version>${pom.version}</version>
73+
</dependency>
74+
</dependencies>
75+
</plugin>
76+
</plugins>
77+
</build>
7878
</project>

jwebunit-htmlunit-plugin/pom.xml

Lines changed: 66 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,67 @@
1-
<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">
2-
<parent>
3-
<artifactId>jwebunit</artifactId>
4-
<groupId>net.sourceforge.jwebunit</groupId>
5-
<version>1.5-SNAPSHOT</version>
6-
<relativePath>../</relativePath>
7-
</parent>
8-
<modelVersion>4.0.0</modelVersion>
9-
<artifactId>jwebunit-htmlunit-plugin</artifactId>
10-
<name>HtmlUnit Plugin</name>
11-
<description>HtmlUnit plugin for JWebUnit.</description>
12-
<build>
13-
<plugins>
14-
<plugin>
15-
<artifactId>maven-surefire-plugin</artifactId>
16-
<configuration>
17-
<testFailureIgnore>false</testFailureIgnore>
18-
<includes>
19-
<include>**/*Test.java</include>
20-
<include>**/*Tests.java</include>
21-
</includes>
22-
<excludes>
23-
<exclude>**/*AbstractTest.java</exclude>
24-
<exclude>**/*AbstractTests.java</exclude>
25-
</excludes>
26-
</configuration>
27-
</plugin>
28-
</plugins>
29-
</build>
30-
<dependencies>
31-
<dependency>
32-
<groupId>junit</groupId>
33-
<artifactId>junit</artifactId>
34-
<scope>test</scope>
35-
</dependency>
36-
<dependency>
37-
<groupId>net.sourceforge.htmlunit</groupId>
38-
<artifactId>htmlunit</artifactId>
39-
</dependency>
40-
<dependency>
41-
<groupId>net.sourceforge.jwebunit</groupId>
42-
<artifactId>jwebunit-core</artifactId>
43-
<version>${pom.version}</version>
44-
</dependency>
45-
<dependency>
46-
<groupId>net.sourceforge.jwebunit</groupId>
47-
<artifactId>jwebunit-commons-tests</artifactId>
48-
<version>${pom.version}</version>
49-
<scope>test</scope>
50-
</dependency>
51-
<dependency>
52-
<groupId>org.slf4j</groupId>
53-
<artifactId>slf4j-api</artifactId>
54-
</dependency>
55-
<dependency>
56-
<groupId>org.slf4j</groupId>
57-
<artifactId>slf4j-log4j12</artifactId>
58-
</dependency>
59-
<dependency>
60-
<groupId>javax.servlet</groupId>
61-
<artifactId>servlet-api</artifactId>
62-
</dependency>
63-
</dependencies>
64-
<properties>
65-
<topDirectoryLocation>..</topDirectoryLocation>
66-
</properties>
1+
<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">
2+
<parent>
3+
<artifactId>jwebunit</artifactId>
4+
<groupId>net.sourceforge.jwebunit</groupId>
5+
<version>1.5</version>
6+
<relativePath>../</relativePath>
7+
</parent>
8+
<modelVersion>4.0.0</modelVersion>
9+
<artifactId>jwebunit-htmlunit-plugin</artifactId>
10+
<name>HtmlUnit Plugin</name>
11+
<description>HtmlUnit plugin for JWebUnit.</description>
12+
<build>
13+
<plugins>
14+
<plugin>
15+
<artifactId>maven-surefire-plugin</artifactId>
16+
<configuration>
17+
<testFailureIgnore>false</testFailureIgnore>
18+
<includes>
19+
<include>**/*Test.java</include>
20+
<include>**/*Tests.java</include>
21+
</includes>
22+
<excludes>
23+
<exclude>**/*AbstractTest.java</exclude>
24+
<exclude>**/*AbstractTests.java</exclude>
25+
</excludes>
26+
</configuration>
27+
</plugin>
28+
</plugins>
29+
</build>
30+
<dependencies>
31+
<dependency>
32+
<groupId>junit</groupId>
33+
<artifactId>junit</artifactId>
34+
<scope>test</scope>
35+
</dependency>
36+
<dependency>
37+
<groupId>net.sourceforge.htmlunit</groupId>
38+
<artifactId>htmlunit</artifactId>
39+
</dependency>
40+
<dependency>
41+
<groupId>net.sourceforge.jwebunit</groupId>
42+
<artifactId>jwebunit-core</artifactId>
43+
<version>${pom.version}</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>net.sourceforge.jwebunit</groupId>
47+
<artifactId>jwebunit-commons-tests</artifactId>
48+
<version>${pom.version}</version>
49+
<scope>test</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.slf4j</groupId>
53+
<artifactId>slf4j-api</artifactId>
54+
</dependency>
55+
<dependency>
56+
<groupId>org.slf4j</groupId>
57+
<artifactId>slf4j-log4j12</artifactId>
58+
</dependency>
59+
<dependency>
60+
<groupId>javax.servlet</groupId>
61+
<artifactId>servlet-api</artifactId>
62+
</dependency>
63+
</dependencies>
64+
<properties>
65+
<topDirectoryLocation>..</topDirectoryLocation>
66+
</properties>
6767
</project>

0 commit comments

Comments
 (0)