(no commit message)
[utils] / build-tools / pom.xml
index 6d3f08704e8ad0a75a0a4a0192b86560eb6885f4..fbdfb0adff33b2e11b3ad59ff1d90a62c015b21e 100644 (file)
@@ -1,28 +1,35 @@
-<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">
+<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">
 
 
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.wamblee</groupId>
   <artifactId>wamblee-code-style</artifactId>
-  <version>1.0-SNAPSHOT</version>
+  <version>1.2-SNAPSHOT</version>
   <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/code-style/trunk</connection>
-    <developerConnection>scm:svn:https://wamblee.org/svn/public/utils/code-style/trunk</developerConnection>
+    <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>
         <configuration>
           <autoVersionSubmodules>true</autoVersionSubmodules>
           <goals>javadoc:jar deploy</goals>
-          <tagBase>https://wamblee.org/svn/public/utils/tags</tagBase>
         </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>