netbeans - 构建后的scp

时间:2009-09-08 09:55:37

标签: netbeans build scp

我想使用Netbeans在构建后使用scp将文件复制到远程服务器。

我现在手动做的是:

  1. 清理并建造主项目
  2. scp dist / project.jar login @ dest /...../......
  3. 是否有某种方法可以自动执行此任务?我试着查看build.xml文件,但它看起来真的像我不想搞砸。

    由于

    尼古拉

2 个答案:

答案 0 :(得分:1)

我使用WinSCP执行与此类似的操作。我监视本地目录以查找文件,它会自动传输更改文件。

答案 1 :(得分:0)

这是可能的,请参阅ant网站上的scp任务:http://ant.apache.org/manual/Tasks/scp.html

网站上的一个例子:

Copy a set of files to a directory
<scp todir="user:password@somehost:/home/chuck">
    <fileset dir="src_dir">
         <include name="**/*.java"/>
     </fileset>
</scp>

<scp todir="user:password@somehost:/home/chuck">
    <fileset dir="src_dir" excludes="**/*.java"/>
</scp>

您可以在构建任务中核心密码,但这不是一个好主意。最好使用公钥。