Prepare for forthcoming release. Apparently the Maven "process" is to leave

your POM at nextversion-SNAPSHOT and then when you do all the release
machinations, it shaves the -SNAPSHOT off, tags, builds and ships your thing,
then commits a new POM with nextnextversion-SNAPSHOT as the version.
This commit is contained in:
Michael Bayne
2010-09-10 16:35:53 +00:00
parent 07e4bdec4a
commit c609db73de
+4 -2
View File
@@ -5,7 +5,7 @@
<groupId>com.samskivert</groupId>
<artifactId>depot</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<version>1.0-SNAPSHOT</version>
<name>depot</name>
<description>A collection of Java utilities.</description>
<url>http://code.google.com/p/depot/</url>
@@ -89,9 +89,11 @@
<configuration>
<source>1.5</source>
<target>1.5</target>
<fork>true</fork>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArguments><Xlint/><Xlint:-serial/><Xlint:-path/></compilerArguments>
<!-- yes, those quoted spaces are a workaround sanctioned by the Maven idiocracy -->
<compilerArgument>-Xlint" "-Xlint:-serial" "-Xlint:-path</compilerArgument>
</configuration>
</plugin>
<plugin>