|
1 | 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>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> |
101 | 101 | </project> |
0 commit comments