WIP: Versuch den StaticTest zu reparieren...
[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     <dependency>
46       <groupId>org.eclipse.jetty</groupId>
47       <artifactId>jetty-servlet</artifactId>
48       <version>${jetty.version}</version>
49     </dependency>
50
51     <!-- hidden dependencies -->
52     <dependency>
53       <groupId>org.springframework</groupId>
54       <artifactId>spring-beans</artifactId>
55       <version>${springframework.version}</version>
56       <scope>provided</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.springframework</groupId>
60       <artifactId>spring-context</artifactId>
61       <version>${springframework.version}</version>
62       <scope>provided</scope>
63     </dependency>
64     <dependency>
65       <groupId>javax.servlet</groupId>
66       <artifactId>servlet-api</artifactId>
67       <version>${servlet-api.version}</version>
68       <scope>provided</scope>
69     </dependency>
70   </dependencies>
71
72 </project>