What kind of deployment is usually used and what is possible? [message #34046] |
Fri, 06 July 2007 08:20 |
Eclipse User |
|
|
|
Originally posted by: newsgroup.elferen.nl
As many I think I am switching from Zend/Dreamweaver to Eclipse PDT.
I've used Eclipse a lot for Java development and love it.
But there is one feature that is still missing that i think is possible
to solve, but sadly all my googling and searching hasn't solved it.
Auto upload on save.
Currently I have an Ant script that needs 2 more things before i can
work comfy.
1. Auto upload on saving my file
2. Only upload the changed files
My current script is:
<project name="testProject" default="upload">
<target name="upload" description="upload the files to the server">
<ftp server="domain.nl"
depends="yes"
port="21"
remotedir="/var/www/test"
userid="user"
password="password"
passive="yes">
<fileset dir="">
<exclude name="**/*.project*" />
<exclude name=".externalToolBuilders/" />
<include name="**/*.*" />
</fileset>
</ftp>
</target>
</project>
I've got the upload working, but only when i manually execute the script.
thanks in advance
|
|
|
|
Powered by
FUDForum. Page generated in 0.03521 seconds