I use ant (http://ant.apache.org/). You can create a task that zips up
all your stuff, or just ftp's it to a server. Ant and the Ant editor
are built into eclipse (just make a file called build.xml - then right
 click on it to run)

For example, here is an ant tast to build a source zip file of all the
stuff in a project:

<project name="test" default="srcit" basedir=".">
        
        <property name="app-filename" value="test" />
        <property name="app-version" value="0.3.0" />
        
        <!-- build a source distribution -->
        <target name="srcit">
                <zip destfile="${app-filename}_${app-version}_src.zip"
                        basedir="."
                        includes="**/*.js,**/*.cfm,**/*.cfc,build.xml"
                />
        </target>

</project>

I dont have an ftp on off hand but you get the idea. For a list of
tasks see that apache link

Cheers,
Rob

On Thu, 17 Mar 2005 11:21:44 -0500, jonese <[EMAIL PROTECTED]> wrote:
> Just a quick question and if possible a point to tell how to do this.
> 
> I have Eclipse installed, i have CFEclipse Installed (latest nightly
> build), i have the VSS Plugin Installed.
> 
> What I want to do is develop locally and then deploy to a development
> testing server. I have my VSS to use my local computer as the place to
> pull the files down to, and it will check-in and checkout AOK but i
> can't figure out how to get the files form my local machine up to our
> development server.
> 
> I know this is a REALLY basic question but i'm VERY new to Eclipse / 
> CFEclipse.
> 
> any help is appreciated!
> jonese
> 
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:199140
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to