关于使用ANT进行两台机器间的COPY及远程启动服务

build.xml
<target name="copy">
  
   <scp todir="${user}:${password}@${somehost}:${dist3.dir}" trust="true">
   <fileset dir="${src_dir}" includes="http://www.ygblog.com/*.jar"/>
  </scp>
  
  <scp todir="${user}:${password}@${somehost}:${dist2.dir}" trust="true">
   <fileset dir="${src_dir}" includes="http://www.ygblog.com/*.jar"/>
  </scp>
  

  </target>
  
  <target name="renew">
   <sshexec host="${ftp.server}"
      username="${ftp.user}"
      password="${ftp.password}"
      trust="true"
      fail="no"
      command="/usr/sbin/stopappsvr.sh;/usr/sbin/startsvr.sh"/>
  <echo>done</echo>
  </target>


setenv.bat
user=用户名
password=密码
somehost=远程电脑IP
src_dir=本地文件夹
dist2.dir=远程文件夹
dist3.dir=远程文件夹2
computer_name=远程电脑名称

你可能感兴趣的:(xml,ant)