51a82b969b4d6a7709b9795acb243d5e0a221f09
[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>scannotation</artifactId>
6     <packaging>jar</packaging>
7     <version>1.0.3</version>
8     <name>scannotation</name>
9     <url>http://maven.apache.org</url>
10
11     <dependencies>
12         <dependency>
13             <groupId>junit</groupId>
14             <artifactId>junit</artifactId>
15             <version>4.0</version>
16             <scope>test</scope>
17         </dependency>
18         <dependency>
19             <groupId>org.resteasy</groupId>
20             <artifactId>titan-cruise</artifactId>
21             <version>1.0</version>
22             <scope>test</scope>
23         </dependency>
24         <dependency>
25             <groupId>org.javassist</groupId>
26             <artifactId>javassist</artifactId>
27             <version>3.19.0-GA</version>
28         </dependency>
29         <dependency>
30             <groupId>javax.servlet</groupId>
31             <artifactId>servlet-api</artifactId>
32             <version>2.5</version>
33             <scope>provided</scope>
34         </dependency>
35     </dependencies>
36   <reporting>
37     <plugins>
38       <plugin>
39         <groupId>org.apache.maven.plugins</groupId>
40         <artifactId>maven-javadoc-plugin</artifactId>
41       </plugin>
42     </plugins>
43   </reporting>
44     <build>
45         <plugins>
46             <plugin>
47                 <groupId>org.apache.maven.plugins</groupId>
48                 <artifactId>maven-compiler-plugin</artifactId>
49                 <configuration>
50                     <source>1.5</source>
51                     <target>1.5</target>
52                 </configuration>
53             </plugin>
54            <plugin>
55               <artifactId>maven-site-plugin</artifactId>
56               <configuration>
57                  <locales>en</locales>
58               </configuration>
59            </plugin>
60         </plugins>
61     </build>
62 </project>