Upgraded javassit version to 3.19.0-GA
[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     <distributionManagement>
12         <repository>
13             <id>jboss-releases-repository</id>
14             <name>JBoss Releases Repository</name>
15             <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
16         </repository>
17     </distributionManagement>
18
19     <repositories>
20         <repository>
21             <id>jboss</id>
22             <url>http://repository.jboss.org/nexus/content/groups/public/</url>
23         </repository>
24     </repositories>
25     <dependencies>
26         <dependency>
27             <groupId>junit</groupId>
28             <artifactId>junit</artifactId>
29             <version>4.0</version>
30             <scope>test</scope>
31         </dependency>
32         <dependency>
33             <groupId>org.resteasy</groupId>
34             <artifactId>titan-cruise</artifactId>
35             <version>1.0</version>
36             <scope>test</scope>
37         </dependency>
38         <dependency>
39             <groupId>org.javassist</groupId>
40             <artifactId>javassist</artifactId>
41             <version>3.19.0-GA</version>
42         </dependency>
43         <dependency>
44             <groupId>javax.servlet</groupId>
45             <artifactId>servlet-api</artifactId>
46             <version>2.5</version>
47             <scope>provided</scope>
48         </dependency>
49     </dependencies>
50   <reporting>
51     <plugins>
52       <plugin>
53         <groupId>org.apache.maven.plugins</groupId>
54         <artifactId>maven-javadoc-plugin</artifactId>
55       </plugin>
56     </plugins>
57   </reporting>
58     <build>
59         <plugins>
60             <plugin>
61                 <groupId>org.apache.maven.plugins</groupId>
62                 <artifactId>maven-compiler-plugin</artifactId>
63                 <configuration>
64                     <source>1.5</source>
65                     <target>1.5</target>
66                 </configuration>
67             </plugin>
68            <plugin>
69               <artifactId>maven-site-plugin</artifactId>
70               <configuration>
71                  <locales>en</locales>
72               </configuration>
73            </plugin>
74         </plugins>
75     </build>
76 </project>