12

使用 Gradle 通过 scp 复制一堆文件的干净优雅的方法是什么?

我目前看到的两种方式是:

有没有更好(更明显)的方法来解决这个问题?

4

2 回答 2

26

在最初的问题发生几年后,我喜欢Gradle SSH Plugin其广泛文档的一小段引述:

我们可以在会话关闭中描述 SSH 操作。

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- 在后台执行命令。
  • executeSudo- 执行带有 sudo 支持的命令。
  • shell- 执行一个外壳。
  • put- 将文件或目录放入远程主机。
  • get- 从远程主机获取文件或目录。

...并允许,例如:

task deploy(dependsOn: war) << {
  ssh.run {
    session(remotes.staging) {
      put from: war.archivePath.path, into: '/webapps'
      execute 'sudo service tomcat restart'
    }
  }
}
于 2015-06-14T18:54:11.360 回答
13

从我使用的一个项目到 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: '...' )
  }
}
于 2012-11-03T01:54:05.333 回答