[maven-release-plugin] prepare for next development iteration
[utils] / pom.xml
diff --git a/pom.xml b/pom.xml
index 00bdb2c646626dfdbd2bb3f7fa813abfe7c7d93e..ad41c7a1c1ce39dc08fe6217a3721778e59ea3e8 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -1,6 +1,4 @@
-<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-utils</artifactId>
@@ -18,7 +16,7 @@
     </licenses>
     <scm>
         <url>https://wamblee.org/viewvc/utils/</url>
-        <connection>scm:svn:https://wamblee.org/svn/public/utils</connection>
+        <connection>scm:svn:https://wamblee.org/svn/public/utils/trunk</connection>
     </scm>
 
     <modules>
 
     <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>
                 <artifactId>maven-clean-plugin</artifactId>
                 <version>2.4</version>
             <id>release</id>
             <activation>
                 <property>
-                    <name>wamblee.release</name>
+                    <name>performRelease</name>
+                    <value>true</value>
                 </property>
             </activation>
             <build>
             <id>all</id>
             <activation>
                 <property>
-                    <name>!wamblee.release</name>
+                    <name>!performRelease</name>
                 </property>
             </activation>
+            <distributionManagement>
+                <repository>
+                    <id>local</id>
+                    <name>Local directory</name>
+                    <url>file:${user.home}/java/workspace/deploy</url>
+                </repository>
+            </distributionManagement>
         </profile>
     </profiles>
-    
-    <distributionManagement>
-        <repository>
-            <id>local</id>
-            <name>Local directory</name>
-            <url>file:${user.home}/java/workspace/deploy</url>
-        </repository>
-    </distributionManagement>
 
 
     <properties>