(no commit message)
[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   <build>
34     <plugins>
35       <plugin>
36         <groupId>org.apache.maven.plugins</groupId>
37         <artifactId>maven-release-plugin</artifactId>
38         <version>2.0</version>
39         <configuration>
40           <autoVersionSubmodules>true</autoVersionSubmodules>
41           <goals>javadoc:jar deploy</goals>
42         </configuration>
43       </plugin>
44       <plugin>
45         <groupId>org.apache.maven.plugins</groupId>
46         <artifactId>maven-gpg-plugin</artifactId>
47         <executions>
48           <execution>
49             <id>sign-artifacts</id>
50             <phase>verify</phase>
51             <goals>
52               <goal>sign</goal>
53             </goals>
54           </execution>
55         </executions>
56       </plugin>
57     </plugins>
58   </build>
59   
60   <distributionManagement>
61     <repository>
62       <id>sonatype-nexus-staging</id>
63       <name>Nexus Release Repository</name>
64       <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
65     </repository>
66   </distributionManagement>
67   
68
69 </project>