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