Prepared release to maven central
[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
4     <modelVersion>4.0.0</modelVersion>
5
6     <parent>
7         <groupId>org.sonatype.oss</groupId>
8         <artifactId>oss-parent</artifactId>
9         <version>9</version>
10     </parent>
11
12     <groupId>de.juplo</groupId>
13     <artifactId>scannotation</artifactId>
14     <packaging>jar</packaging>
15     <version>1.0.4-SNAPSHOT</version>
16     <name>scannotation</name>
17     <url>http://juplo.de/scannotation</url>
18
19     <scm>
20         <connection>scm:git:http://juplo.de/git/scannotation</connection>
21         <developerConnection>scm:git:ssh://juplo.de:/var/lib/git/juplo/scannotation</developerConnection>
22         <url>http://juplo.de/gitweb/?p=scannotation;a=summary</url>
23     </scm>
24
25     <developers>
26         <developer>
27             <id>patriot1burke</id>
28             <name>Bill Burke</name>
29             <url>http://sourceforge.net/u/patriot1burke/profile/</url>
30         </developer>
31         <developer>
32             <id>tjordahl</id>
33             <name>Tom Jordahl</name>
34             <url>http://sourceforge.net/u/tjordahl/profile/</url>
35         </developer>
36         <developer>
37             <id>kai</id>
38             <name>Kai Moritz</name>
39             <email>kai@juplo.de</email>
40         </developer>
41     </developers>
42
43     <distributionManagement>
44         <site>
45             <id>www.juplo.de</id>
46             <url>scp://juplo.de/var/www/juplo/scannotation-${project.version}</url>
47         </site>
48     </distributionManagement>
49
50     <ciManagement>
51         <system>Continuum</system>
52         <url>http://juplo.de/continuum/</url>
53         <notifiers>
54             <notifier>
55                 <type>mail</type>
56                 <address>kai@juplo.de</address>
57             </notifier>
58         </notifiers>
59     </ciManagement>
60
61     <dependencies>
62         <dependency>
63             <groupId>junit</groupId>
64             <artifactId>junit</artifactId>
65             <version>4.0</version>
66             <scope>test</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.resteasy</groupId>
70             <artifactId>titan-cruise</artifactId>
71             <version>1.0</version>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.javassist</groupId>
76             <artifactId>javassist</artifactId>
77             <version>3.19.0-GA</version>
78         </dependency>
79         <dependency>
80             <groupId>javax.servlet</groupId>
81             <artifactId>servlet-api</artifactId>
82             <version>2.5</version>
83             <scope>provided</scope>
84         </dependency>
85     </dependencies>
86
87     <reporting>
88         <plugins>
89             <plugin>
90                 <groupId>org.apache.maven.plugins</groupId>
91                 <artifactId>maven-javadoc-plugin</artifactId>
92                 <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
93             </plugin>
94         </plugins>
95     </reporting>
96
97     <build>
98         <plugins>
99             <plugin>
100                 <groupId>org.apache.maven.plugins</groupId>
101                 <artifactId>maven-compiler-plugin</artifactId>
102                 <version>3.3</version>
103                 <configuration>
104                     <source>1.6</source>
105                     <target>1.6</target>
106                     <encoding>utf8</encoding>
107                     <showWarnings>true</showWarnings>
108                 </configuration>
109             </plugin>
110             <plugin>
111                 <groupId>org.apache.maven.plugins</groupId>
112                 <artifactId>maven-source-plugin</artifactId>
113                 <version>2.1.2</version><!-- Should be same version as in oss-parent-7 -->
114                 <executions>
115                     <execution>
116                         <id>attach-sources</id>
117                         <phase>verify</phase>
118                         <goals>
119                             <goal>jar</goal>
120                         </goals>
121                     </execution>
122                 </executions>
123             </plugin>
124             <plugin>
125                 <groupId>org.apache.maven.plugins</groupId>
126                 <artifactId>maven-javadoc-plugin</artifactId>
127                 <version>2.7</version><!-- Should be same version as in oss-parent-7 -->
128                 <executions>
129                     <execution>
130                         <id>attach-javadoc</id>
131                         <phase>verify</phase>
132                         <goals>
133                             <goal>jar</goal>
134                         </goals>
135                     </execution>
136                 </executions>
137             </plugin>
138         </plugins>
139         <pluginManagement>
140             <plugins>
141                 <plugin>
142                     <artifactId>maven-site-plugin</artifactId>
143                     <version>3.4</version>
144                     <dependencies>
145                         <dependency><!-- add support for ssh/scp -->
146                             <groupId>org.apache.maven.wagon</groupId>
147                             <artifactId>wagon-ssh</artifactId>
148                             <version>2.9</version>
149                         </dependency>
150                     </dependencies>
151                 </plugin>
152             </plugins>
153         </pluginManagement>
154     </build>
155 </project>