Revision: 5779
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=5779&view=rev
Author: manningr
Date: 2010-08-09 22:34:24 +0000 (Mon, 09 Aug 2010)
Log Message:
-----------
Fixed source installer artifact name so that it can be found by sftp.
Modified Paths:
--------------
trunk/sql12/installer/squirrelsql-macosx-installer/pom.xml
trunk/sql12/installer/squirrelsql-other-installer/src/main/resources/batch.txt
Added Paths:
-----------
trunk/sql12/installer/squirrelsql-macosx-installer/src/main/resources/batch.txt
Modified: trunk/sql12/installer/squirrelsql-macosx-installer/pom.xml
===================================================================
--- trunk/sql12/installer/squirrelsql-macosx-installer/pom.xml 2010-08-09 00:36:08 UTC (rev 5778)
+++ trunk/sql12/installer/squirrelsql-macosx-installer/pom.xml 2010-08-09 22:34:24 UTC (rev 5779)
@@ -499,6 +499,27 @@
</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>
</project>
\ No newline at end of file
Added: trunk/sql12/installer/squirrelsql-macosx-installer/src/main/resources/batch.txt
===================================================================
--- trunk/sql12/installer/squirrelsql-macosx-installer/src/main/resources/batch.txt (rev 0)
+++ trunk/sql12/installer/squirrelsql-macosx-installer/src/main/resources/batch.txt 2010-08-09 22:34:24 UTC (rev 5779)
@@ -0,0 +1,4 @@
+cd ${file.release.path}
+mkdir ${squirrelsql.version}
+cd ${squirrelsql.version}
+put target/${project.build.finalName}-standard.jar ${upload-server-path}
Modified: trunk/sql12/installer/squirrelsql-other-installer/src/main/resources/batch.txt
===================================================================
--- trunk/sql12/installer/squirrelsql-other-installer/src/main/resources/batch.txt 2010-08-09 00:36:08 UTC (rev 5778)
+++ trunk/sql12/installer/squirrelsql-other-installer/src/main/resources/batch.txt 2010-08-09 22:34:24 UTC (rev 5779)
@@ -1,4 +1,4 @@
cd ${file.release.path}
mkdir ${squirrelsql.version}
cd ${squirrelsql.version}
-put target/${project.build.finalName} ${upload-server-path}
+put target/${project.build.finalName}-standard.jar ${upload-server-path}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|