使用Gradle通过scp复制一堆文件有什么干净而优雅的方式?
我目前看到的两种方式是:
有没有更好(更明显)的方法来解决这个问题?
答案 0 :(得分:21)
原问题发表几年后,我喜欢the Gradle SSH Plugin。广泛的documentation:
的小引用我们可以在会话闭包中描述SSH操作。
GeneratePass() { lowertab = NULL; ll=0; } void GeneratePass::CreateList() { if(ll<1 || ll > 1024*1024*1024) throw "Invalid length"; lowertab = new char[ll]; .... <your code here> }
会话结束时可以使用以下方法。
session(remotes.web01) { // Execute a command def result = execute 'uptime' // Any Gradle methods or properties are available in a session closure copy { from "src/main/resources/example" into "$buildDir/tmp" } // Also Groovy methods or properties are available in a session closure println result }
- 执行命令。execute
- 在后台执行命令。executeBackground
- 使用sudo支持执行命令。executeSudo
- 执行shell。shell
- 将文件或目录放入远程主机。put
- 从远程主机获取文件或目录。
...并允许,例如:
get
答案 1 :(得分:10)
从我使用的项目到SCP文件到EC2服务器。 jar文件有本地文件,是我项目的一部分,我忘记了从哪里得到它们。可能有一种更简洁的方式来完成所有这些,但我喜欢在我的构建脚本中非常明确。
configurations {
sshAntTask
}
dependencies {
sshAntTask fileTree(dir:'buildSrc/lib', include:'jsch*.jar')
sshAntTask fileTree(dir:'buildSrc/lib', include:'ant-jsch*.jar')
}
ant.taskdef(
name: 'scp',
classname: 'org.apache.tools.ant.taskdefs.optional.ssh.Scp',
classpath: configurations.sshAntTask.asPath)
task uploadDbServer() {
doLast {
ant.scp(
file: '...',
todir: '...',
keyfile: '...' )
}
}