source: other-projects/trunk/gs3-release-maker/tasks/sshtaskdef/test.xml@ 14627

Last change on this file since 14627 was 14627, checked in by oranfry, 17 years ago

initial import of the gs3-release-maker

File size: 935 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2
3<!-- =================================================================== -->
4<!-- Build file for client components -->
5<!-- -->
6<!-- =================================================================== -->
7
8<project name="SCP test" default="package" basedir=".">
9
10 <taskdef name="scp" classname="org.apache.tools.ant.taskdefs.optional.SCP"/>
11 <taskdef name="sshexec" classname="org.apache.tools.ant.taskdefs.optional.SSHExec"/>
12
13 <target name="package" depends="">
14<!--
15 <scp host="gcdev06.grandcentral.com"
16 username="engines" password="engines"
17 destdir="/gc"
18 src="."
19 includes="test.xml"/>
20-->
21 <sshexec host="gcdev06.grandcentral.com"
22 username="engines" password="engines"
23 exec="touch ~engines/foo" />
24 </target>
25
26</project>
Note: See TracBrowser for help on using the repository browser.