From: <rob...@us...> - 2010-06-18 04:37:54
|
Revision: 10 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=10&view=rev Author: robertbridle Date: 2010-06-18 04:37:48 +0000 (Fri, 18 Jun 2010) Log Message: ----------- ANDSWRON-618 - Add mailing lists to pom.xml and exclude attributes.txt from having licence header inserted. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-18 02:30:40 UTC (rev 9) +++ trunk/pom.xml 2010-06-18 04:37:48 UTC (rev 10) @@ -6,6 +6,7 @@ <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> <issueManagement> <system>SourceForge Trac</system> <url>http://sourceforge.net/tracker/?group_id=328958</url> @@ -47,6 +48,22 @@ <comments>A business-friendly OSS license</comments> </license> </licenses> + <mailingLists> + <mailingList> + <name>Project SVN Changes Notification List</name> + <subscribe>https://lists.sourceforge.net/mailman/listinfo/netcdftools-commit</subscribe> + <unsubscribe>https://lists.sourceforge.net/mailman/listinfo/netcdftools-commit</unsubscribe> + <archive>https://sourceforge.net/mailarchive/forum.php?forum_name=netcdftools-commit</archive> + <post>net...@li...</post> + </mailingList> + <mailingList> + <name>Project Users List</name> + <subscribe>https://lists.sourceforge.net/mailman/listinfo/netcdftools-users</subscribe> + <unsubscribe>https://lists.sourceforge.net/mailman/listinfo/netcdftools-users</unsubscribe> + <archive>https://sourceforge.net/mailarchive/forum.php?forum_name=netcdftools-users</archive> + <post>net...@li...</post> + </mailingList> + </mailingLists> <build> <plugins> @@ -89,6 +106,7 @@ <header>config/header.txt</header> <excludes> <exclude>patched-netcdf-library/FileWriter.java</exclude> + <exclude>attributes.txt</exclude> <exclude>src/main/resources/LICENSE.txt</exclude> <exclude>src/main/resources/NOTICE.txt</exclude> </excludes> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-18 04:52:38
|
Revision: 11 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=11&view=rev Author: robertbridle Date: 2010-06-18 04:52:32 +0000 (Fri, 18 Jun 2010) Log Message: ----------- ANDSWRON-618 - Add plugin to reference username/password SCM values from settings.xml file. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-18 04:37:48 UTC (rev 10) +++ trunk/pom.xml 2010-06-18 04:52:32 UTC (rev 11) @@ -220,6 +220,17 @@ </plugin> --> + <!-- Used to reference username/password settings from a settings.xml file stored locally --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-scm-plugin</artifactId> + <version>1.0</version> + <configuration> + <username>${scm.username}</username> + <password>${scm.password}</password> + </configuration> + </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-18 05:23:09
|
Revision: 12 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=12&view=rev Author: robertbridle Date: 2010-06-18 05:23:03 +0000 (Fri, 18 Jun 2010) Log Message: ----------- ANDSWRON-618 - Add echo debug statements in pom.xml to show the username/password SCM values from settings.xml file being used. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-18 04:52:32 UTC (rev 11) +++ trunk/pom.xml 2010-06-18 05:23:03 UTC (rev 12) @@ -224,12 +224,34 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-plugin</artifactId> - <version>1.0</version> + <version>1.1</version> <configuration> <username>${scm.username}</username> <password>${scm.password}</password> </configuration> </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.1</version> + <executions> + <execution> + <phase>deploy</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <tasks> + <echo>Using SCM credentials</echo> + <echo>[scm.username] ${scm.username}</echo> + <echo>[scm.password] ${scm.password}</echo> + </tasks> + </configuration> + </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-21 05:36:46
|
Revision: 14 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=14&view=rev Author: robertbridle Date: 2010-06-21 05:36:40 +0000 (Mon, 21 Jun 2010) Log Message: ----------- ANDSWRON-681 - Added task to create a SourceForge shell whenever we try and perform a site-deploy. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-21 04:56:47 UTC (rev 13) +++ trunk/pom.xml 2010-06-21 05:36:40 UTC (rev 14) @@ -1,6 +1,6 @@ <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</groupId> + <groupId>net.sourceforge.netcdftools</groupId> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> <version>0.1.4-SNAPSHOT</version> @@ -252,6 +252,32 @@ </executions> </plugin> + <!-- 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> + <execution> + <phase>pre-site</phase> + <goals> + <goal>exec</goal> + </goals> + </execution> + </executions> + <configuration> + <executable>plink</executable> + <arguments> + <argument>-ssh</argument> + <argument>-pw</argument> + <argument>${scm.password}</argument> + <argument>-P</argument> + <argument>22</argument> + <argument>${scm.username},net...@sh...</argument> + <argument>create</argument> + </arguments> + </configuration> + </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-21 06:13:31
|
Revision: 15 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=15&view=rev Author: robertbridle Date: 2010-06-21 06:13:25 +0000 (Mon, 21 Jun 2010) Log Message: ----------- ANDSWRON-618 - Remove configuration from pom.xml that performs site deploy, this will now be done manually. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-21 05:36:40 UTC (rev 14) +++ trunk/pom.xml 2010-06-21 06:13:25 UTC (rev 15) @@ -17,10 +17,12 @@ <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> </scm> <distributionManagement> + <!-- <site> <id>sourceforge.net</id> <url>scp://shell.sourceforge.net/home/groups/n/ne/netcdftools/htdocs</url> </site> + --> <repository> <id>releases</id> <url>http://junk-yf:8085/nexus/content/repositories/releases</url> @@ -252,8 +254,9 @@ </executions> </plugin> - <!-- Run script to create SourceForge shell so that site can be uploaded via SCP --> - <plugin> + <!-- WE NOW MANUALLY PERFORM A SITE DEPLOY --> + <!-- 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> @@ -277,7 +280,7 @@ <argument>create</argument> </arguments> </configuration> - </plugin> + </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-21 06:41:09
|
Revision: 16 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=16&view=rev Author: robertbridle Date: 2010-06-21 06:41:03 +0000 (Mon, 21 Jun 2010) Log Message: ----------- ANDSWRON-618 - Include <site>scp://...</site>, so that a user can manually perform mvn site-deploy. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-21 06:13:25 UTC (rev 15) +++ trunk/pom.xml 2010-06-21 06:41:03 UTC (rev 16) @@ -17,12 +17,10 @@ <url>http://netcdftools.svn.sourceforge.net/viewvc/netcdftools/trunk</url> </scm> <distributionManagement> - <!-- <site> <id>sourceforge.net</id> <url>scp://shell.sourceforge.net/home/groups/n/ne/netcdftools/htdocs</url> </site> - --> <repository> <id>releases</id> <url>http://junk-yf:8085/nexus/content/repositories/releases</url> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-23 05:09:19
|
Revision: 24 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=24&view=rev Author: robertbridle Date: 2010-06-23 05:09:11 +0000 (Wed, 23 Jun 2010) Log Message: ----------- ANDSWRON-681 - 1.) Updated maven-release-plugin 2.0-beta-9 to overcome bug when tagging a release (http://jira.codehaus.org/browse/SCM-406) 2.) Updated scm plugin to 1.3 see point 1. 3.) Tidy up - removed commented out commands. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-23 02:55:17 UTC (rev 23) +++ trunk/pom.xml 2010-06-23 05:09:11 UTC (rev 24) @@ -35,9 +35,6 @@ <targetJdk>1.6</targetJdk> <jar.outputDirectory> ${project.build.directory} - <!-- - \\junk-yf\autobuild_website\netcdf-tools\dist\${buildType} - --> </jar.outputDirectory> </properties> <licenses> @@ -74,6 +71,7 @@ <target>1.6</target> </configuration> </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> @@ -224,7 +222,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-plugin</artifactId> - <version>1.1</version> + <version>1.3</version> <configuration> <username>${scm.username}</username> <password>${scm.password}</password> @@ -278,7 +276,13 @@ <argument>create</argument> </arguments> </configuration> - </plugin> --> + </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> + </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-23 05:14:10
|
Revision: 25 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=25&view=rev Author: robertbridle Date: 2010-06-23 05:14:03 +0000 (Wed, 23 Jun 2010) Log Message: ----------- ANDSWRON-618 - REVIEW - Fixed issue management URL and commented out maven-changes-plugin for time-being since it does not support SourceForge's Trac. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-23 05:09:11 UTC (rev 24) +++ trunk/pom.xml 2010-06-23 05:14:03 UTC (rev 25) @@ -9,7 +9,7 @@ <url>http://netcdftools.sourceforge.net/</url> <issueManagement> <system>SourceForge Trac</system> - <url>http://sourceforge.net/tracker/?group_id=328958</url> + <url>https://sourceforge.net/apps/trac/netcdftools/</url> </issueManagement> <scm> <connection>scm:svn:https://netcdftools.svn.sourceforge.net/svnroot/netcdftools/trunk</connection> @@ -369,6 +369,8 @@ <range>60</range> </configuration> </plugin> + <!-- Maven changes plugin does not currently support SourceForge's Trac --> + <!-- <plugin> <artifactId>maven-changes-plugin</artifactId> <version>2.1</version> @@ -385,6 +387,7 @@ </issueLinkTemplate> </configuration> </plugin> + --> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.3</version> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-23 07:42:12
|
Revision: 27 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=27&view=rev Author: robertbridle Date: 2010-06-23 07:42:03 +0000 (Wed, 23 Jun 2010) Log Message: ----------- ANDSWRON-618 - Removed unused buildType property from pom.xml. Note: Hudson has been updated to no longer pass this property, i.e. "-DbuildType=dev" Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-23 06:17:07 UTC (rev 26) +++ trunk/pom.xml 2010-06-23 07:42:03 UTC (rev 27) @@ -31,7 +31,6 @@ </snapshotRepository> </distributionManagement> <properties> - <buildType>dev</buildType> <targetJdk>1.6</targetJdk> <jar.outputDirectory> ${project.build.directory} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-23 08:29:56
|
Revision: 28 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=28&view=rev Author: robertbridle Date: 2010-06-23 08:29:49 +0000 (Wed, 23 Jun 2010) Log Message: ----------- ANDSWRON-618 - Tell release:perform to only run deploy goal instead of site-deploy. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-23 07:42:03 UTC (rev 27) +++ trunk/pom.xml 2010-06-23 08:29:49 UTC (rev 28) @@ -281,6 +281,9 @@ <plugin> <artifactId>maven-release-plugin</artifactId> <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> </plugins> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rob...@us...> - 2010-06-24 01:53:28
|
Revision: 32 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=32&view=rev Author: robertbridle Date: 2010-06-24 01:53:22 +0000 (Thu, 24 Jun 2010) Log Message: ----------- ANDSWRON-659 - Use exec-maven-plugin to perform automatic upload of generated project site to SourceForge. Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-24 01:51:23 UTC (rev 31) +++ trunk/pom.xml 2010-06-24 01:53:22 UTC (rev 32) @@ -1,3 +1,49 @@ +<!-- + +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. + + 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" + +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. + +<settings> + <servers> + <server> + <id>snapshots</id> + <username>-insert username here-</username> + <password>-insert password here-</password> + </server> + <server> + <id>release-sonatype</id> + <username>-insert username here-</username> + <password>-insert password here-</password> + </server> + <server> + <id>sourceforge.net</id> + <username>-insert username here-</username> + <password>-insert password here-</password> + </server> + </servers> + <profiles> + <profile> + <id>activeProfile</id> + <properties> + <scm.username>-insert username here-</scm.username> + <scm.password>-insert password here-</scm.password> + <gpg.keyname>-insert keyname here-</gpg.keyname> + <gpg.passphrase>-insert passphrase here-</gpg.passphrase> + </properties> + </profile> + </profiles> + <activeProfiles> + <activeProfile>activeProfile</activeProfile> + </activeProfiles> +</settings> + +--> <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> @@ -185,8 +231,8 @@ </executions> </plugin> - <!-- WE NO LONGER COPY THESE TO THE GENERATED SITE, WE NOW POINT THE SITE TO THE SOURCEFORGE DOWNLOAD URL --> - <!-- Include the created artifacts in the site --> + <!-- WE NOW PERFORM A MANUAL FILE RELEASE TO SOURECFORGE --> + <!-- Include the created software artifacts in the site --> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -249,41 +295,57 @@ </executions> </plugin> - <!-- WE NOW MANUALLY PERFORM A SITE DEPLOY --> <!-- Run script to create SourceForge shell so that site can be uploaded via SCP --> - <!-- <plugin> + <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> <goals> <goal>exec</goal> </goals> + <configuration> + <arguments> + <argument>-ssh</argument> + <argument>-pw</argument> + <argument>${scm.password}</argument> + <argument>-P</argument> + <argument>22</argument> + <argument>${scm.username},net...@sh...</argument> + <argument>create</argument> + </arguments> + </configuration> </execution> + <!-- Change ownership of htdocs directory so that site can be unploaded --> + <execution> + <id>change_htdocs_ownership</id> + <phase>pre-site</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <arguments> + <argument>-ssh</argument> + <argument>-pw</argument> + <argument>${scm.password}</argument> + <argument>-P</argument> + <argument>22</argument> + <argument>${scm.username},net...@sh...</argument> + <argument>chown ${scm.username} /home/groups/n/ne/netcdftools/htdocs</argument> + </arguments> + </configuration> + </execution> </executions> - <configuration> - <executable>plink</executable> - <arguments> - <argument>-ssh</argument> - <argument>-pw</argument> - <argument>${scm.password}</argument> - <argument>-P</argument> - <argument>22</argument> - <argument>${scm.username},net...@sh...</argument> - <argument>create</argument> - </arguments> - </configuration> - </plugin> --> + </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> - <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> + <version>2.0-beta-9</version> </plugin> </plugins> 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:04
|
Revision: 34 http://netcdftools.svn.sourceforge.net/netcdftools/?rev=34&view=rev Author: robertbridle Date: 2010-06-25 01:50:57 +0000 (Fri, 25 Jun 2010) Log Message: ----------- [maven-release-plugin] prepare release netcdf-tools-1.0.0 Modified Paths: -------------- trunk/pom.xml Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2010-06-24 10:06:59 UTC (rev 33) +++ trunk/pom.xml 2010-06-25 01:50:57 UTC (rev 34) @@ -49,7 +49,7 @@ <groupId>net.sourceforge.netcdftools</groupId> <artifactId>netcdf-tools</artifactId> <packaging>jar</packaging> - <version>0.1.4-SNAPSHOT</version> + <version>1.0.0</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-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> </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: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. |
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: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: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 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 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: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: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: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: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: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: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: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. |