Renaming artifact and packages
[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</version>
8     <name>scannotation</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   <reporting>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.maven.plugins</groupId>
45         <artifactId>maven-javadoc-plugin</artifactId>
46       </plugin>
47     </plugins>
48   </reporting>
49     <build>
50         <plugins>
51             <plugin>
52                 <groupId>org.apache.maven.plugins</groupId>
53                 <artifactId>maven-compiler-plugin</artifactId>
54                 <configuration>
55                     <source>1.5</source>
56                     <target>1.5</target>
57                 </configuration>
58             </plugin>
59         </plugins>
60     </build>
61 </project>