HttpTestCase in das Modul test verschoben und schweren Fehler korrigiert
[percentcodec] / test / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>de.halbekunst</groupId>
9     <artifactId>juplo</artifactId>
10     <version>2.0-SNAPSHOT</version>
11   </parent>
12
13   <artifactId>${pom.parent.artifactId}-test</artifactId>
14   <name>Juplo - Test</name>
15
16   <dependencies>
17
18     <!-- public dependencies -->
19     <dependency>
20       <groupId>httpunit</groupId>
21       <artifactId>httpunit</artifactId>
22       <version>${httpunit.version}</version>
23       <exclusions>
24         <exclusion>
25           <groupId>junit</groupId>
26           <artifactId>junit</artifactId>
27         </exclusion>
28         <exclusion>
29           <groupId>javax.servlet</groupId>
30           <artifactId>servlet-api</artifactId>
31         </exclusion>
32       </exclusions>
33     </dependency>
34     <dependency>
35       <groupId>junit</groupId>
36       <artifactId>junit</artifactId>
37       <version>${junit.version}</version>
38     </dependency>
39     <dependency>
40       <groupId>org.springframework</groupId>
41       <artifactId>spring-test</artifactId>
42       <version>${springframework.version}</version>
43       <scope>provided</scope>
44     </dependency>
45
46     <!-- hidden dependencies -->
47     <dependency>
48       <groupId>org.springframework</groupId>
49       <artifactId>spring-beans</artifactId>
50       <version>${springframework.version}</version>
51       <scope>provided</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.springframework</groupId>
55       <artifactId>spring-context</artifactId>
56       <version>${springframework.version}</version>
57       <scope>provided</scope>
58     </dependency>
59     <dependency>
60       <groupId>javax.servlet</groupId>
61       <artifactId>servlet-api</artifactId>
62       <version>${servlet-api.version}</version>
63       <scope>provided</scope>
64     </dependency>
65   </dependencies>
66
67 </project>