(no commit message)
authorerik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Sat, 17 Apr 2010 19:15:55 +0000 (19:15 +0000)
committererik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Sat, 17 Apr 2010 19:15:55 +0000 (19:15 +0000)
build-tools/pom.xml

index 0ff830c525a3fabdbc3a9b4788935a80bb918c28..fbdfb0adff33b2e11b3ad59ff1d90a62c015b21e 100644 (file)
@@ -8,16 +8,62 @@
   <packaging>jar</packaging>
 
   <name>wamblee-code-style</name>
+  <description>Code style for wamblee projects</description>
+  <url>http://wamblee.org</url>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
   <scm>
     <url>https://wamblee.org/viewvc/code-style</url>
     <connection>scm:svn:https://wamblee.org/svn/public/utils/trunk/build-tools</connection>
     <developerConnection>scm:svn:https://wamblee.org/svn/public/utils/trunk/build-tools</developerConnection>
   </scm>
-
-  <parent>
-    <groupId>org.wamblee</groupId>
-    <artifactId>wamblee-utils</artifactId>
-    <version>0.2.1</version>
-  </parent>
+  <developers>
+    <developer>
+      <email>erik@wamblee.org</email>
+      <name>Erik Brakkee</name>
+      <url>http://brakkee.org</url>
+    </developer>
+  </developers>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-release-plugin</artifactId>
+        <version>2.0</version>
+        <configuration>
+          <autoVersionSubmodules>true</autoVersionSubmodules>
+          <goals>javadoc:jar deploy</goals>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-gpg-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>sign-artifacts</id>
+            <phase>verify</phase>
+            <goals>
+              <goal>sign</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <distributionManagement>
+    <repository>
+      <id>sonatype-nexus-staging</id>
+      <name>Nexus Release Repository</name>
+      <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+    </repository>
+  </distributionManagement>
+  
 
 </project>