353ce838113be2583ab20d6eca230b8698a8600e
[scannotation] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <groupId>org.scannotation</groupId>
5     <artifactId>annotation-db</artifactId>
6     <packaging>jar</packaging>
7     <version>1.0</version>
8     <name>resteasy-jsr311</name>
9     <url>http://maven.apache.org</url>
10     <repositories>
11         <repository>
12             <id>jboss</id>
13             <url>http://repository.jboss.org/maven2</url>
14         </repository>
15     </repositories>
16     <dependencies>
17         <dependency>
18             <groupId>junit</groupId>
19             <artifactId>junit</artifactId>
20             <version>4.0</version>
21             <scope>test</scope>
22         </dependency>
23         <dependency>
24             <groupId>org.resteasy</groupId>
25             <artifactId>titan-cruise</artifactId>
26             <version>1.0</version>
27             <scope>test</scope>
28         </dependency>
29         <dependency>
30             <groupId>javassist</groupId>
31             <artifactId>javassist</artifactId>
32             <version>3.6.0.GA</version>
33         </dependency>
34         <dependency>
35             <groupId>javax.servlet</groupId>
36             <artifactId>servlet-api</artifactId>
37             <version>2.5</version>
38             <scope>provided</scope>
39         </dependency>
40     </dependencies>
41     <build>
42         <plugins>
43             <plugin>
44                 <groupId>org.apache.maven.plugins</groupId>
45                 <artifactId>maven-compiler-plugin</artifactId>
46                 <configuration>
47                     <source>1.5</source>
48                     <target>1.5</target>
49                 </configuration>
50             </plugin>
51         </plugins>
52     </build>
53 </project>