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

Commit d452c9c

Browse files
committed
Update to JUnit 4.11
1 parent 9edaef3 commit d452c9c

9 files changed

Lines changed: 409 additions & 405 deletions

File tree

jwebunit-commons-tests/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<dependencies>
1313
<dependency>
1414
<groupId>junit</groupId>
15-
<artifactId>junit-dep</artifactId>
15+
<artifactId>junit</artifactId>
1616
</dependency>
1717
<dependency>
1818
<groupId>org.hamcrest</groupId>
@@ -38,9 +38,9 @@
3838
<version>2.0.1</version>
3939
</dependency>
4040
<dependency>
41-
<groupId>com.google.code.tempus-fugit</groupId>
42-
<artifactId>tempus-fugit</artifactId>
43-
<version>1.1</version>
41+
<groupId>com.google.code.tempus-fugit</groupId>
42+
<artifactId>tempus-fugit</artifactId>
43+
<version>1.1</version>
4444
</dependency>
4545
</dependencies>
4646
<properties>

jwebunit-core/pom.xml

Lines changed: 99 additions & 99 deletions
Original file line numberDiff line numberDiff line change
@@ -1,101 +1,101 @@
11
<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>3.2-SNAPSHOT</version>
6-
<relativePath>../pom.xml</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-dep</artifactId>
18-
</dependency>
19-
<dependency>
20-
<groupId>org.mockito</groupId>
21-
<artifactId>mockito-core</artifactId>
22-
<scope>test</scope>
23-
</dependency>
24-
<dependency>
25-
<groupId>regexp</groupId>
26-
<artifactId>regexp</artifactId>
27-
<version>1.3</version>
28-
</dependency>
29-
<dependency>
30-
<groupId>javax.servlet</groupId>
31-
<artifactId>servlet-api</artifactId>
32-
<version>2.5</version>
33-
</dependency>
34-
<dependency>
35-
<groupId>commons-lang</groupId>
36-
<artifactId>commons-lang</artifactId>
37-
<version>2.6</version>
38-
</dependency>
39-
</dependencies>
40-
<properties>
41-
<topDirectoryLocation>..</topDirectoryLocation>
42-
</properties>
43-
<build>
44-
<plugins>
45-
<plugin>
46-
<groupId>org.codehaus.mojo</groupId>
47-
<artifactId>exec-maven-plugin</artifactId>
48-
<executions>
49-
<execution>
50-
<id>generate-webtestcase</id>
51-
<phase>generate-sources</phase>
52-
<goals>
53-
<goal>java</goal>
54-
</goals>
55-
<configuration>
56-
<mainClass>
57-
net.sourceforge.jwebunit.javacc.WebTestCaseGenerator
58-
</mainClass>
59-
</configuration>
60-
</execution>
61-
<execution>
62-
<id>generate-jwebunit</id>
63-
<phase>generate-sources</phase>
64-
<goals>
65-
<goal>java</goal>
66-
</goals>
67-
<configuration>
68-
<mainClass>
69-
net.sourceforge.jwebunit.javacc.JWebUnitGenerator
70-
</mainClass>
71-
</configuration>
72-
</execution>
73-
</executions>
74-
<configuration>
75-
<sourceRoot>
76-
${project.build.directory}/generated-sources/main/java
77-
</sourceRoot>
78-
<arguments>
79-
<argument>${basedir}/src/main/java</argument>
80-
<argument>
81-
${project.build.directory}/generated-sources/main/java
82-
</argument>
83-
</arguments>
84-
<includePluginDependencies>
85-
true
86-
</includePluginDependencies>
87-
<includeProjectDependencies>
88-
false
89-
</includeProjectDependencies>
90-
</configuration>
91-
<dependencies>
92-
<dependency>
93-
<groupId>net.sourceforge.jwebunit</groupId>
94-
<artifactId>jwebunit-code-generator</artifactId>
95-
<version>${project.version}</version>
96-
</dependency>
97-
</dependencies>
98-
</plugin>
99-
</plugins>
100-
</build>
2+
<parent>
3+
<artifactId>jwebunit</artifactId>
4+
<groupId>net.sourceforge.jwebunit</groupId>
5+
<version>3.2-SNAPSHOT</version>
6+
<relativePath>../pom.xml</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>org.mockito</groupId>
21+
<artifactId>mockito-core</artifactId>
22+
<scope>test</scope>
23+
</dependency>
24+
<dependency>
25+
<groupId>regexp</groupId>
26+
<artifactId>regexp</artifactId>
27+
<version>1.3</version>
28+
</dependency>
29+
<dependency>
30+
<groupId>javax.servlet</groupId>
31+
<artifactId>servlet-api</artifactId>
32+
<version>2.5</version>
33+
</dependency>
34+
<dependency>
35+
<groupId>commons-lang</groupId>
36+
<artifactId>commons-lang</artifactId>
37+
<version>2.6</version>
38+
</dependency>
39+
</dependencies>
40+
<properties>
41+
<topDirectoryLocation>..</topDirectoryLocation>
42+
</properties>
43+
<build>
44+
<plugins>
45+
<plugin>
46+
<groupId>org.codehaus.mojo</groupId>
47+
<artifactId>exec-maven-plugin</artifactId>
48+
<executions>
49+
<execution>
50+
<id>generate-webtestcase</id>
51+
<phase>generate-sources</phase>
52+
<goals>
53+
<goal>java</goal>
54+
</goals>
55+
<configuration>
56+
<mainClass>
57+
net.sourceforge.jwebunit.javacc.WebTestCaseGenerator
58+
</mainClass>
59+
</configuration>
60+
</execution>
61+
<execution>
62+
<id>generate-jwebunit</id>
63+
<phase>generate-sources</phase>
64+
<goals>
65+
<goal>java</goal>
66+
</goals>
67+
<configuration>
68+
<mainClass>
69+
net.sourceforge.jwebunit.javacc.JWebUnitGenerator
70+
</mainClass>
71+
</configuration>
72+
</execution>
73+
</executions>
74+
<configuration>
75+
<sourceRoot>
76+
${project.build.directory}/generated-sources/main/java
77+
</sourceRoot>
78+
<arguments>
79+
<argument>${basedir}/src/main/java</argument>
80+
<argument>
81+
${project.build.directory}/generated-sources/main/java
82+
</argument>
83+
</arguments>
84+
<includePluginDependencies>
85+
true
86+
</includePluginDependencies>
87+
<includeProjectDependencies>
88+
false
89+
</includeProjectDependencies>
90+
</configuration>
91+
<dependencies>
92+
<dependency>
93+
<groupId>net.sourceforge.jwebunit</groupId>
94+
<artifactId>jwebunit-code-generator</artifactId>
95+
<version>${project.version}</version>
96+
</dependency>
97+
</dependencies>
98+
</plugin>
99+
</plugins>
100+
</build>
101101
</project>

0 commit comments

Comments
 (0)