Revision: 5780
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=5780&view=rev
Author: manningr
Date: 2010-08-09 22:38:09 +0000 (Mon, 09 Aug 2010)
Log Message:
-----------
relocated upload of installers to sourceforge to a profile which can be activated with -DuploadInstallers. This way, we don't overwhelm SF's file release system with new artifacts anytime hudson does a CI build.
Modified Paths:
--------------
trunk/sql12/installer/squirrelsql-macosx-installer/pom.xml
trunk/sql12/installer/squirrelsql-other-installer/pom.xml
Modified: trunk/sql12/installer/squirrelsql-macosx-installer/pom.xml
===================================================================
--- trunk/sql12/installer/squirrelsql-macosx-installer/pom.xml 2010-08-09 22:34:24 UTC (rev 5779)
+++ trunk/sql12/installer/squirrelsql-macosx-installer/pom.xml 2010-08-09 22:38:09 UTC (rev 5780)
@@ -499,27 +499,40 @@
</execution>
</executions>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>1.2</version>
- <executions>
- <execution>
- <configuration>
- <executable>sftp</executable>
- <arguments>
- <argument>-b</argument>
- <argument>target/classes/batch.txt</argument>
- <argument>${file.release.server}</argument>
- </arguments>
- </configuration>
- <phase>deploy</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
+ <profiles>
+ <profile>
+ <activation>
+ <property>
+ <name>uploadInstallers</name>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.2</version>
+ <executions>
+ <execution>
+ <configuration>
+ <executable>sftp</executable>
+ <arguments>
+ <argument>-b</argument>
+ <argument>target/classes/batch.txt</argument>
+ <argument>${file.release.server}</argument>
+ </arguments>
+ </configuration>
+ <phase>deploy</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>
\ No newline at end of file
Modified: trunk/sql12/installer/squirrelsql-other-installer/pom.xml
===================================================================
--- trunk/sql12/installer/squirrelsql-other-installer/pom.xml 2010-08-09 22:34:24 UTC (rev 5779)
+++ trunk/sql12/installer/squirrelsql-other-installer/pom.xml 2010-08-09 22:38:09 UTC (rev 5780)
@@ -502,27 +502,41 @@
</execution>
</executions>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>1.2</version>
- <executions>
- <execution>
- <configuration>
- <executable>sftp</executable>
- <arguments>
- <argument>-b</argument>
- <argument>target/classes/batch.txt</argument>
- <argument>${file.release.server}</argument>
- </arguments>
- </configuration>
- <phase>deploy</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
+ <profiles>
+ <profile>
+ <activation>
+ <property>
+ <name>uploadInstallers</name>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.2</version>
+ <executions>
+ <execution>
+ <configuration>
+ <executable>sftp</executable>
+ <arguments>
+ <argument>-b</argument>
+ <argument>target/classes/batch.txt</argument>
+ <argument>${file.release.server}</argument>
+ </arguments>
+ </configuration>
+ <phase>deploy</phase>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ </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.
|