Revision: 5765
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=5765&view=rev
Author: manningr
Date: 2010-08-07 00:44:39 +0000 (Sat, 07 Aug 2010)
Log Message:
-----------
Filter the absolute path to the build dir into the auto-install.xml so that squirrel-sql.sh has absolute path for SQUIRREL_HOME.
Modified Paths:
--------------
trunk/sql12/installer/squirrelsql-other-installer/pom.xml
Modified: trunk/sql12/installer/squirrelsql-other-installer/pom.xml
===================================================================
--- trunk/sql12/installer/squirrelsql-other-installer/pom.xml 2010-08-06 22:39:34 UTC (rev 5764)
+++ trunk/sql12/installer/squirrelsql-other-installer/pom.xml 2010-08-07 00:44:39 UTC (rev 5765)
@@ -346,6 +346,12 @@
<filtering>true</filtering>
</resource>
</resources>
+ <testResources>
+ <testResource>
+ <directory>src/test/resources</directory>
+ <filtering>true</filtering>
+ </testResource>
+ </testResources>
<plugins>
<!-- prepare dependencies so that izpack jar tag to pickup at compile time -->
@@ -479,8 +485,8 @@
<executable>java</executable>
<arguments>
<argument>-jar</argument>
- <argument>target/squirrelsql-other-installer-${project.version}-standard.jar</argument>
- <argument>src/test/resources/auto-install.xml</argument>
+ <argument>${project.build.directory}/squirrelsql-other-installer-${project.version}-standard.jar</argument>
+ <argument>${project.build.directory}/test-classes/auto-install.xml</argument>
</arguments>
</configuration>
<executions>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|