findbugs
[utils] / build-tools / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2
3
4   <modelVersion>4.0.0</modelVersion>
5   <groupId>org.wamblee</groupId>
6   <artifactId>wamblee-code-style</artifactId>
7   <version>1.2-SNAPSHOT</version>
8   <packaging>jar</packaging>
9
10   <name>wamblee-code-style</name>
11   <description>Code style for wamblee projects</description>
12   <url>http://wamblee.org</url>
13   <licenses>
14     <license>
15       <name>The Apache Software License, Version 2.0</name>
16       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
17       <distribution>repo</distribution>
18     </license>
19   </licenses>
20   <scm>
21     <url>https://wamblee.org/viewvc/code-style</url>
22     <connection>scm:svn:https://wamblee.org/svn/public/utils/trunk/build-tools</connection>
23     <developerConnection>scm:svn:https://wamblee.org/svn/public/utils/trunk/build-tools</developerConnection>
24   </scm>
25   <developers>
26     <developer>
27       <email>erik@wamblee.org</email>
28       <name>Erik Brakkee</name>
29       <url>http://brakkee.org</url>
30     </developer>
31   </developers>
32
33   <profiles>
34     <profile>
35       <id>release</id>
36       <activation>
37         <property>
38           <name>performRelease</name>
39           <value>true</value>
40         </property>
41       </activation>
42
43       <build>
44         <plugins>
45           <plugin>
46             <groupId>org.apache.maven.plugins</groupId>
47             <artifactId>maven-release-plugin</artifactId>
48             <version>2.0</version>
49             <configuration>
50               <autoVersionSubmodules>true</autoVersionSubmodules>
51               <goals>javadoc:jar deploy</goals>
52             </configuration>
53           </plugin>
54           <plugin>
55             <groupId>org.apache.maven.plugins</groupId>
56             <artifactId>maven-gpg-plugin</artifactId>
57             <executions>
58               <execution>
59                 <id>sign-artifacts</id>
60                 <phase>verify</phase>
61                 <goals>
62                   <goal>sign</goal>
63                 </goals>
64               </execution>
65             </executions>
66           </plugin>
67         </plugins>
68       </build>
69     </profile>
70   </profiles>
71
72   <distributionManagement>
73     <repository>
74       <id>sonatype-nexus-staging</id>
75       <name>Nexus Release Repository</name>
76       <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
77     </repository>
78   </distributionManagement>
79
80
81 </project>