Revision: 5781
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=5781&view=rev
Author: manningr
Date: 2010-08-09 22:41:14 +0000 (Mon, 09 Aug 2010)
Log Message:
-----------
relocated upload of UpdateSite to squirrel-sql.net to a profile which can be activated with -DuploadUpdateSite. This way, we don't overwhelm Rob's server with new artifacts anytime hudson does a CI build.
Modified Paths:
--------------
trunk/sql12/squirrelsql-update-site/pom.xml
Modified: trunk/sql12/squirrelsql-update-site/pom.xml
===================================================================
--- trunk/sql12/squirrelsql-update-site/pom.xml 2010-08-09 22:38:09 UTC (rev 5780)
+++ trunk/sql12/squirrelsql-update-site/pom.xml 2010-08-09 22:41:14 UTC (rev 5781)
@@ -288,7 +288,7 @@
</properties>
<build>
<plugins>
- <!-- Set the squirrelsql.version property if it has not already been set. -->
+ <!-- Set the squirrelsql.version property if it has not already been set. -->
<plugin>
<groupId>net.sf.squirrel-sql</groupId>
<artifactId>squirrelsql-version-plugin</artifactId>
@@ -388,30 +388,6 @@
</includes>
</configuration>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>wagon-maven-plugin</artifactId>
- <version>${wagon-plugin-version}</version>
- <configuration>
- <serverId>update-site-ftp-server</serverId>
- <!-- property update.site.ftp.server defined in settings.xml installer profile -->
- <url>ftp://${update.site.ftp.server}</url>
- </configuration>
- <executions>
- <execution>
- <id>ftp-upload-release</id>
- <phase>deploy</phase>
- <goals>
- <goal>upload</goal>
- </goals>
- <configuration>
- <fromDir>target/release</fromDir>
- <!-- property update.site.path defined in settings.xml installer profile -->
- <toDir>${update.site.path}</toDir>
- </configuration>
- </execution>
- </executions>
- </plugin>
</plugins>
<extensions>
<extension>
@@ -421,4 +397,42 @@
</extension>
</extensions>
</build>
+ <profiles>
+ <profile>
+ <id>uploadUpdateSite</id>
+ <activation>
+ <property>
+ <name>uploadUpdateSite</name>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>wagon-maven-plugin</artifactId>
+ <version>${wagon-plugin-version}</version>
+ <configuration>
+ <serverId>update-site-ftp-server</serverId>
+ <!-- property update.site.ftp.server defined in settings.xml installer profile -->
+ <url>ftp://${update.site.ftp.server}</url>
+ </configuration>
+ <executions>
+ <execution>
+ <id>ftp-upload-release</id>
+ <phase>deploy</phase>
+ <goals>
+ <goal>upload</goal>
+ </goals>
+ <configuration>
+ <fromDir>target/release</fromDir>
+ <!-- property update.site.path defined in settings.xml installer profile -->
+ <toDir>${update.site.path}</toDir>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|