Landon,
I use some shell scripts and my maven script to do the build. If you
have cygwin on your windows box you can use these
The update script goes something like this.
#!/bin/bash
for module in *; do
if [ -d $module ]; then
cd $module
svn update
cd ..
fi
done
Then the build script goes something like this
#!/bin/bash
MODULES="
openjump \
rs-jump-all \
"
for module in $MODULES; do
cd $module
echo "[INFO]$module"
mvn -Dmaven.test.skip=true install
cd ..
done
You may want to put the keyword clean before install to make sure you
don't have any old code hanging around in the build.
Then all you need to do is have another script to copy them to the ftp
site. If you can get the ssh access then using the scp command or the
rsync command makes it very easy to do.
Paul
*Paul Austin*
/President/CEO/
Revolution Systems Inc.
+1 (604) 288-4304 x201
www.revolsys.com <http://www.revolsys.com>
Sunburned Surveyor wrote:
If anyone has Ant Tasks that they use to [1] update an source code
tree from an SVN repository, and [2] upload a zip file to an FTP site,
could you shoot them my way. I'm going to work on modifying my Ant
script to automatically update and then commit a build of OpenJUMP to
my website. I'll tinker with this while Paul and/or Larry work on
setting up the nightly build on their web site, if they choose to do
so.
I will also read through the ANT documentation for this information,
but I think some real life examples will help me get the kinks ironed
out.
The Sunburned Surveyor
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel