Testfall für juplo-cachecontrol implementiert
[percentcodec] / cachecontrol / 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}-cachecontrol</artifactId>
14   <name>Juplo - CacheControl</name>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.springframework</groupId>
19       <artifactId>spring-webmvc</artifactId>
20       <version>${springframework.version}</version>
21     </dependency>
22     <dependency>
23       <groupId>org.springframework</groupId>
24       <artifactId>spring-aspects</artifactId>
25       <version>${springframework.version}</version>
26       <scope>provided</scope>
27     </dependency>
28     <dependency>
29       <groupId>org.springframework</groupId>
30       <artifactId>spring-tx</artifactId>
31       <version>${springframework.version}</version>
32       <scope>provided</scope>
33     </dependency>
34     <dependency>
35       <groupId>org.aspectj</groupId>
36       <artifactId>aspectjrt</artifactId>
37       <version>${aspectj.version}</version>
38       <scope>provided</scope>
39     </dependency>
40     <dependency>
41       <groupId>javax.servlet</groupId>
42       <artifactId>servlet-api</artifactId>
43       <version>${servlet-api.version}</version>
44       <scope>provided</scope>
45     </dependency>
46     <dependency>
47       <groupId>javax.persistence</groupId>
48       <artifactId>persistence-api</artifactId>
49       <version>${jpa.version}</version>
50       <scope>provided</scope>
51     </dependency>
52     <dependency>
53       <groupId>httpunit</groupId>
54       <artifactId>httpunit</artifactId>
55       <version>${httpunit.version}</version>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.springframework</groupId>
60       <artifactId>spring-test</artifactId>
61       <version>${springframework.version}</version>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.slf4j</groupId>
66       <artifactId>${slf4j.binding}</artifactId>
67       <version>${slf4j.version}</version>
68       <scope>test</scope>
69     </dependency>
70   </dependencies>
71
72   <build>
73     <plugins>
74       <plugin>
75         <groupId>org.codehaus.mojo</groupId>
76         <artifactId>aspectj-maven-plugin</artifactId>
77         <configuration>
78           <complianceLevel>1.6</complianceLevel>
79           <aspectLibraries>
80             <aspectLibrary>
81               <groupId>org.springframework</groupId>
82               <artifactId>spring-aspects</artifactId>
83             </aspectLibrary>
84           </aspectLibraries>
85         </configuration>
86         <executions>
87           <execution>
88             <goals>
89               <goal>compile</goal>
90             </goals>
91           </execution>
92         </executions>
93       </plugin>
94     </plugins>
95   </build>
96
97 </project>