just wonder why 1.0.1 is introduced before 1.0 is released. Also by convention the version usually starts with 1.0-apha-1.
-D On 22 Feb 2007 12:54:05 -0000, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote:
Revision 3384 <http://fisheye.codehaus.org/changelog/mojo/?cs=3384> Author dvicente72 Date 2007-02-22 06:54:03 -0600 (Thu, 22 Feb 2007) Log Message new version as 1.0.1-SNAPSHOT Modified Paths - trunk/mojo/mojo-sandbox/dashboard-maven-plugin/pom.xml<http://mail.google.com/mail/?view=page&name=gp&ver=sh3fib53pgpk#110e984fe9481926_trunkmojomojosandboxdashboardmavenpluginpomxml> Diff Modified: trunk/mojo/mojo-sandbox/dashboard-maven-plugin/pom.xml (3383 => 3384) --- trunk/mojo/mojo-sandbox/dashboard-maven-plugin/pom.xml 2007-02-22 12:50:32 UTC (rev 3383) +++ trunk/mojo/mojo-sandbox/dashboard-maven-plugin/pom.xml 2007-02-22 12:54:03 UTC (rev 3384)@@ -3,11 +3,11 @@ <parent> <groupId>org.codehaus.mojo</groupId> <artifactId>mojo-sandbox</artifactId>- <version>2</version>+ <version>3-SNAPSHOT</version> </parent> <groupId>org.codehaus.mojo</groupId> <artifactId>dashboard-maven-plugin</artifactId>- <version>1.0-SNAPSHOT</version>+ <version>1.0.1-SNAPSHOT</version> <url>http://mojo.codehaus.org</url> <organization> <name>CodeHaus</name>@@ -21,6 +21,30 @@ we require Maven 2.0.4 --> <maven>2.0.4</maven> </prerequisites>+ <repositories> + <repository> + <id>Codehaus Snapshots</id> + <url>http://snapshots.repository.codehaus.org/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + </repository> +</repositories> +<pluginRepositories> + <pluginRepository> + <id>Codehaus Snapshots</id> + <url>http://snapshots.repository.codehaus.org/</url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + </pluginRepository> +</pluginRepositories> <licenses> <license> <name>The Apache Software License, Version 2.0</name>@@ -83,5 +107,33 @@ <artifactId>jfreechart</artifactId> <version>1.0.2</version> </dependency>+ <dependency> + <groupId>org.codehaus.mojo</groupId> + <artifactId>jdepend-maven-plugin</artifactId> + <version>2.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-utils</artifactId> + <version>1.0.5</version> + </dependency> </dependencies>+ <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-changes-plugin</artifactId> + <configuration> + <xmlPath>${basedir}/src/site/changes.xml</xmlPath> + </configuration> + <reportSets> + <reportSet> + <reports> + <report>changes-report</report> + </reports> + </reportSet> + </reportSets> + </plugin> + </plugins> + </reporting> </project> \ No newline at end of file ------------------------------ To unsubscribe from this list please visit: http://xircles.codehaus.org/manage_email
