You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(56) |
Jul
(15) |
Aug
(7) |
Sep
|
Oct
|
Nov
|
Dec
|
---|
From: <rob...@us...> - 2010-06-25 04:38:03
|
Revision: 60 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=60&view=rev Author: robertbridle Date: 2010-06-25 04:37:57 +0000 (Fri, 25 Jun 2010) Log Message: ----------- ANDSWRON-618 - Remove automated deployment of site to SourceForge this will now be a manual process. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:44:49 UTC (rev 59) +++ trunk/pom.xml 2010-06-25 04:37:57 UTC (rev 60) @@ -2,10 +2,10 @@ This pom.xml has been configured with the following dependencies: -1.) plink.exe has been installed - you can specify the path to the plink.exe if its not on your system path, e.g. +1.) gpg.exe needs to be installed on your system - you can specify the path to gpg.exe as follows: - mvn deploy site-deploy -Dexec.executable="C:\Program Files\PLink\plink.exe" - mvn release:prepare release:perform -Darguments="-Dexec.executable=C:\\Program Files\\PLink\\plink.exe" + SNAPSHOT Release: mvn deploy -Dgpg.executable="C:\Progra~1\GNU\GnuPG\gpg.exe" + Test Release: mvn release:prepare release:perform -Dusername="<insert svn username here>" -Darguments="-Dgpg.executable=C:\\Progra~1\\GNU\\GnuPG\\gpg.exe" 2.) Our Maven settings.xml contains the credentials for: accessing SCM; running GPG (not currently used); site deployment to SourceForge; and deploying to repositories, e.g. @@ -43,6 +43,9 @@ </activeProfiles> </settings> +3.) This pom.xml is not configured to perform site deployment or file releases (see commented out sections), +these steps will need to be performed manually. + --> <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> @@ -295,13 +298,14 @@ </executions> </plugin> + <!-- WE NOW PERFORM A MANUAL SITE DEPLOY TO SOURECFORGE --> <!-- Run script to create SourceForge shell so that site can be uploaded via SCP --> + <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.1</version> <executions> - <!-- create a shell on SourceForge --> <execution> <id>create_shell_on_sourceforge</id> <phase>pre-site</phase> @@ -320,7 +324,6 @@ </arguments> </configuration> </execution> - <!-- Change ownership of htdocs directory so that site can be unploaded --> <execution> <id>change_htdocs_ownership</id> <phase>pre-site</phase> @@ -341,12 +344,35 @@ </execution> </executions> </plugin> + --> <!-- 2.0-beta-9 used to overcome bug when tagging a release (http://jira.codehaus.org/browse/SCM-406) --> <plugin> <artifactId>maven-release-plugin</artifactId> - <version>2.0-beta-9</version> + <version>2.0-beta-9</version> + <configuration> + <goal>deploy</goal> <!-- Because we have a populated <site> element, the site-deploy goal will execute. We specify that only the deploy goal should execute, since we will perform site-deploys manually --> + </configuration> </plugin> + + <!-- This will sign the artifacts before being deployed to the release repository. note: the variables ${gpg.keyname} and ${gpg.passphrase} are retrieved from local file: settings.xml --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <configuration> + <keyname>${gpg.keyname}</keyname> + <passphrase>${gpg.passphrase}</passphrase> + </configuration> + <executions> + <execution> + <id>sign-artifacts</id> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:44:55
|
Revision: 59 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=59&view=rev Author: robertbridle Date: 2010-06-25 02:44:49 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] prepare for next development iteration Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:44:38 UTC (rev 58) +++ trunk/pom.xml 2010-06-25 02:44:49 UTC (rev 59) @@ -49,7 +49,7 @@ <groupId>au.csiro</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.4</version> + <version>0.1.5-SNAPSHOT</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> @@ -58,9 +58,9 @@ <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> - <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</connection> - <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</developerConnection> - <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/tags/netcdf-tools-0.1.4</url> + <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> + <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk/</developerConnection> + <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> </scm> <distributionManagement> <site> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:44:44
|
Revision: 58 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=58&view=rev Author: robertbridle Date: 2010-06-25 02:44:38 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-scm] copy for tag netcdf-tools-0.1.4 Added Paths: ----------- tags/netcdf-tools-0.1.4/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:44:15
|
Revision: 57 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=57&view=rev Author: robertbridle Date: 2010-06-25 02:44:09 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] prepare release netcdf-tools-0.1.4 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:43:19 UTC (rev 56) +++ trunk/pom.xml 2010-06-25 02:44:09 UTC (rev 57) @@ -49,7 +49,7 @@ <groupId>au.csiro</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.4-SNAPSHOT</version> + <version>0.1.4</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> @@ -58,9 +58,9 @@ <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> - <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> - <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk/</developerConnection> - <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> + <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</connection> + <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</developerConnection> + <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/tags/netcdf-tools-0.1.4</url> </scm> <distributionManagement> <site> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:43:25
|
Revision: 56 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=56&view=rev Author: robertbridle Date: 2010-06-25 02:43:19 +0000 (Fri, 25 Jun 2010) Log Message: ----------- ANDSWRON-618 - Ensure that when releasing to our local release repository (http://junk-yf:8085/nexus/index.html#view-repositories;releases) that we use our au.csiro.netcdf-tools groupId. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:41:52 UTC (rev 55) +++ trunk/pom.xml 2010-06-25 02:43:19 UTC (rev 56) @@ -46,7 +46,7 @@ --> <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>au.csiro.netcdf-tools</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge.netcdftools --> + <groupId>au.csiro</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> <version>0.1.4-SNAPSHOT</version> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:42:01
|
Revision: 55 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=55&view=rev Author: robertbridle Date: 2010-06-25 02:41:52 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] rollback the release of netcdf-tools-0.1.4 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:38:21 UTC (rev 54) +++ trunk/pom.xml 2010-06-25 02:41:52 UTC (rev 55) @@ -49,7 +49,7 @@ <groupId>au.csiro.netcdf-tools</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge.netcdftools --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.5-SNAPSHOT</version> + <version>0.1.4-SNAPSHOT</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:38:28
|
Revision: 54 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=54&view=rev Author: robertbridle Date: 2010-06-25 02:38:21 +0000 (Fri, 25 Jun 2010) Log Message: ----------- delete test tag release Removed Paths: ------------- tags/netcdf-tools-0.1.4/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:34:32
|
Revision: 53 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=53&view=rev Author: robertbridle Date: 2010-06-25 02:34:24 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] prepare for next development iteration Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:34:14 UTC (rev 52) +++ trunk/pom.xml 2010-06-25 02:34:24 UTC (rev 53) @@ -49,7 +49,7 @@ <groupId>au.csiro.netcdf-tools</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge.netcdftools --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.4</version> + <version>0.1.5-SNAPSHOT</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> @@ -58,9 +58,9 @@ <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> - <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</connection> - <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</developerConnection> - <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/tags/netcdf-tools-0.1.4</url> + <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> + <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk/</developerConnection> + <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> </scm> <distributionManagement> <site> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:34:20
|
Revision: 52 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=52&view=rev Author: robertbridle Date: 2010-06-25 02:34:14 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-scm] copy for tag netcdf-tools-0.1.4 Added Paths: ----------- tags/netcdf-tools-0.1.4/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:33:49
|
Revision: 51 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=51&view=rev Author: robertbridle Date: 2010-06-25 02:33:43 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] prepare release netcdf-tools-0.1.4 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:32:39 UTC (rev 50) +++ trunk/pom.xml 2010-06-25 02:33:43 UTC (rev 51) @@ -49,7 +49,7 @@ <groupId>au.csiro.netcdf-tools</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge.netcdftools --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.4-SNAPSHOT</version> + <version>0.1.4</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> @@ -58,9 +58,9 @@ <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> - <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> - <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk/</developerConnection> - <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> + <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</connection> + <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</developerConnection> + <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/tags/netcdf-tools-0.1.4</url> </scm> <distributionManagement> <site> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:32:45
|
Revision: 50 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=50&view=rev Author: robertbridle Date: 2010-06-25 02:32:39 +0000 (Fri, 25 Jun 2010) Log Message: ----------- delete test release tag Removed Paths: ------------- tags/netcdf-tools-1.0.0/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:32:19
|
Revision: 49 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=49&view=rev Author: robertbridle Date: 2010-06-25 02:32:13 +0000 (Fri, 25 Jun 2010) Log Message: ----------- delete test release tag Removed Paths: ------------- tags/netcdf-tools-0.1.4/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:24:34
|
Revision: 48 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=48&view=rev Author: robertbridle Date: 2010-06-25 02:24:27 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] rollback the release of netcdf-tools-0.1.4 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:19:19 UTC (rev 47) +++ trunk/pom.xml 2010-06-25 02:24:27 UTC (rev 48) @@ -49,7 +49,7 @@ <groupId>au.csiro.netcdf-tools</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge.netcdftools --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.4</version> + <version>0.1.4-SNAPSHOT</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> @@ -58,9 +58,9 @@ <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> - <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</connection> - <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</developerConnection> - <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/tags/netcdf-tools-0.1.4</url> + <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> + <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk/</developerConnection> + <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> </scm> <distributionManagement> <site> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:19:25
|
Revision: 47 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=47&view=rev Author: robertbridle Date: 2010-06-25 02:19:19 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] prepare release netcdf-tools-0.1.4 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:15:48 UTC (rev 46) +++ trunk/pom.xml 2010-06-25 02:19:19 UTC (rev 47) @@ -49,7 +49,7 @@ <groupId>au.csiro.netcdf-tools</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge.netcdftools --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.4-SNAPSHOT</version> + <version>0.1.4</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> @@ -58,9 +58,9 @@ <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> - <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> - <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk/</developerConnection> - <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> + <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</connection> + <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</developerConnection> + <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/tags/netcdf-tools-0.1.4</url> </scm> <distributionManagement> <site> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:15:54
|
Revision: 46 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=46&view=rev Author: robertbridle Date: 2010-06-25 02:15:48 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] rollback the release of netcdf-tools-0.1.4 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:12:17 UTC (rev 45) +++ trunk/pom.xml 2010-06-25 02:15:48 UTC (rev 46) @@ -49,7 +49,7 @@ <groupId>au.csiro.netcdf-tools</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge.netcdftools --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.5-SNAPSHOT</version> + <version>0.1.4-SNAPSHOT</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:12:23
|
Revision: 45 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=45&view=rev Author: robertbridle Date: 2010-06-25 02:12:17 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] prepare for next development iteration Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:12:07 UTC (rev 44) +++ trunk/pom.xml 2010-06-25 02:12:17 UTC (rev 45) @@ -49,7 +49,7 @@ <groupId>au.csiro.netcdf-tools</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge.netcdftools --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.4</version> + <version>0.1.5-SNAPSHOT</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> @@ -58,9 +58,9 @@ <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> - <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</connection> - <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</developerConnection> - <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/tags/netcdf-tools-0.1.4</url> + <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> + <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk/</developerConnection> + <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> </scm> <distributionManagement> <site> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:12:13
|
Revision: 44 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=44&view=rev Author: robertbridle Date: 2010-06-25 02:12:07 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-scm] copy for tag netcdf-tools-0.1.4 Added Paths: ----------- tags/netcdf-tools-0.1.4/trunk/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:11:24
|
Revision: 43 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=43&view=rev Author: robertbridle Date: 2010-06-25 02:11:18 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] prepare release netcdf-tools-0.1.4 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:10:19 UTC (rev 42) +++ trunk/pom.xml 2010-06-25 02:11:18 UTC (rev 43) @@ -49,7 +49,7 @@ <groupId>au.csiro.netcdf-tools</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge.netcdftools --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.4-SNAPSHOT</version> + <version>0.1.4</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> @@ -58,9 +58,9 @@ <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> - <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> - <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk/</developerConnection> - <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> + <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</connection> + <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</developerConnection> + <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/tags/netcdf-tools-0.1.4</url> </scm> <distributionManagement> <site> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:10:25
|
Revision: 42 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=42&view=rev Author: robertbridle Date: 2010-06-25 02:10:19 +0000 (Fri, 25 Jun 2010) Log Message: ----------- ANDSWRON-618 - Ensure that when releasing to our local release repository (http://junk-yf:8085/nexus/index.html#view-repositories;releases) that we use our au.csiro.netcdf-tools groupId. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 02:03:10 UTC (rev 41) +++ trunk/pom.xml 2010-06-25 02:10:19 UTC (rev 42) @@ -46,7 +46,7 @@ --> <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>net.sourceforge.netcdftools</groupId> + <groupId>au.csiro.netcdf-tools</groupId> <!-- when releasing to Sonatype.org staging repository, change the groupId to: net.sourceforge.netcdftools --> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> <version>0.1.4-SNAPSHOT</version> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 02:03:16
|
Revision: 41 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=41&view=rev Author: robertbridle Date: 2010-06-25 02:03:10 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] rollback the release of netcdf-tools-0.1.4 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 01:58:53 UTC (rev 40) +++ trunk/pom.xml 2010-06-25 02:03:10 UTC (rev 41) @@ -49,7 +49,7 @@ <groupId>net.sourceforge.netcdftools</groupId> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.5-SNAPSHOT</version> + <version>0.1.4-SNAPSHOT</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 01:58:59
|
Revision: 40 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=40&view=rev Author: robertbridle Date: 2010-06-25 01:58:53 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] prepare for next development iteration Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 01:58:43 UTC (rev 39) +++ trunk/pom.xml 2010-06-25 01:58:53 UTC (rev 40) @@ -49,7 +49,7 @@ <groupId>net.sourceforge.netcdftools</groupId> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.4</version> + <version>0.1.5-SNAPSHOT</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> @@ -58,9 +58,9 @@ <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> - <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</connection> - <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</developerConnection> - <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/tags/netcdf-tools-0.1.4</url> + <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> + <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk/</developerConnection> + <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> </scm> <distributionManagement> <site> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 01:58:49
|
Revision: 39 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=39&view=rev Author: robertbridle Date: 2010-06-25 01:58:43 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-scm] copy for tag netcdf-tools-0.1.4 Added Paths: ----------- tags/netcdf-tools-0.1.4/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 01:58:15
|
Revision: 38 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=38&view=rev Author: robertbridle Date: 2010-06-25 01:58:09 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] prepare release netcdf-tools-0.1.4 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 01:54:19 UTC (rev 37) +++ trunk/pom.xml 2010-06-25 01:58:09 UTC (rev 38) @@ -49,7 +49,7 @@ <groupId>net.sourceforge.netcdftools</groupId> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.4-SNAPSHOT</version> + <version>0.1.4</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> @@ -58,9 +58,9 @@ <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> - <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> - <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk/</developerConnection> - <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> + <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</connection> + <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-0.1.4</developerConnection> + <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/tags/netcdf-tools-0.1.4</url> </scm> <distributionManagement> <site> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 01:54:25
|
Revision: 37 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=37&view=rev Author: robertbridle Date: 2010-06-25 01:54:19 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] rollback the release of netcdf-tools-1.0.0 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 01:51:39 UTC (rev 36) +++ trunk/pom.xml 2010-06-25 01:54:19 UTC (rev 37) @@ -49,7 +49,7 @@ <groupId>net.sourceforge.netcdftools</groupId> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>1.0.1-SNAPSHOT</version> + <version>0.1.4-SNAPSHOT</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-25 01:51:45
|
Revision: 36 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=36&view=rev Author: robertbridle Date: 2010-06-25 01:51:39 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] prepare for next development iteration Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-25 01:51:28 UTC (rev 35) +++ trunk/pom.xml 2010-06-25 01:51:39 UTC (rev 36) @@ -49,7 +49,7 @@ <groupId>net.sourceforge.netcdftools</groupId> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>1.0.0</version> + <version>1.0.1-SNAPSHOT</version> <name>netcdf-tools</name> <description>A set of tools for creating netCDF files.</description> <url>http://netcdftools.sourceforge.net/</url> @@ -58,9 +58,9 @@ <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> - <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-1.0.0</connection> - <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/tags/netcdf-tools-1.0.0</developerConnection> - <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/tags/netcdf-tools-1.0.0</url> + <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> + <developerConnection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk/</developerConnection> + <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> </scm> <distributionManagement> <site> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |