60

我正在尝试通过 Gradle 任务将一个文件复制到多个目的地。我在其他网站上找到了以下内容,但在运行此任务时出现错误。

def filesToCopy = copySpec{
    from 'somefile.jar'
    rename {String fileName -> 'anotherfile.jar'}
}

task copyFile(type:Copy) {
    with filesToCopy  {
      into 'dest1/'
    }
    with filesToCopy  {
      into 'dest2/'
    }
}

错误

没有方法签名:org.gradle.api.internal.file.copy.CopySpecImpl.call() 适用于参数类型

有没有办法在一个 Gradle 任务中复制到多个目的地?

4

6 回答 6

44

如果您真的希望他们完成一项任务,请执行以下操作:

def filesToCopy = copySpec {
  from 'someFile.jar'
  rename { 'anotherfile.jar' }
}

task copyFiles << {
  ['dest1', 'dest2'].each { dest ->
    copy {
      with filesToCopy
      into dest
    }
  }
}
于 2012-11-21T13:41:27.630 回答
44

另一种方法

task myCustomTask << {

    copy {
        from 'sourcePath/folderA'
        into 'targetPath/folderA'
    }

    copy {
        from 'sourcePath/folderB'
        into 'targetPath/folderB'
    }

    copy {
        from 'sourcePath/fileA.java','sourcePath/fileB.java'
        into 'targetPath/folderC'
    }
}
于 2014-11-24T14:56:36.687 回答
22

这是 Gradle 4.1 的没有 copySpec 的一般片段。正如所指出的那样,诀窍是在闭包内部使用基础并使用相对进入(例如,从闭包中)。

task multiIntoCopy(type: Copy){
    into(projectDir) // copy into relative to this

    from("foo"){
        into("copied/foo") // will be projectDir/copied/foo
        // just standard copy stuff
        rename("a.txt", "x.txt")
    }

    from("bar"){
        into("copied/aswell/bar") //  projectDir/copied/copied/aswell/bar
    }

    from("baz") // baz folder content will get copied into projectDir

    //from("/bar"){ // this will mess things up, be very careful with the paths
    //    into("copied/aswell/bar")
    //}
}
于 2017-09-08T12:04:45.960 回答
22

具有共同的目标基本路径

如果您的目标路径共享一个公共路径前缀 ( dest_base),那么您可以使用如下内容:

def filesToCopy = copySpec {
    from 'somefile.jar'
    rename { String fileName -> 'anotherfile.jar' }
}

task copyFile(type: Copy) {
    into 'dest_base'
    into('dest1') {
      with filesToCopy
    }
    into('dest2') {
      with filesToCopy
    }
}

与使用该copy方法的其他答案相比,这种方法还保留了 Gradle 的 UP-TO-DATE 检查。

上面的代码片段会产生如下输出:

dest_base/
├── dest1
│   └── anotherfile.jar
└── dest2
    └── anotherfile.jar
于 2017-02-09T09:49:57.880 回答
14

不,没有办法做到这一点。我会为每个目标目录创建单独的 gradle 任务

def filesToCopy = copySpec{
    from 'somefile.jar'
    rename {String fileName -> 'anotherfile.jar'}
}

task copyFileDest1(type:Copy) {
    with filesToCopy
    into 'dest1/'
}

task filesToCopyDest2(type:Copy)  {
    with filesToCopy
    into 'dest2/'
}
于 2012-11-21T10:23:16.053 回答
0

我需要以特定顺序执行此操作,以便在一组文件上重写特定字符串。

task copyAtoB(dependsOn: [existingTask]) {
    doLast {
        copy {
            from("folder/a") {
                include "*.java"
            }
            // Have to use a new path for modified files
            into("folder/b")
            filter {
                String line ->
                    line.replaceAll("changeme", "to this")
            }
        }
    }
}

task overwriteFilesInAfromB(dependsOn: [copyAtoB]) {
    doLast {
        copy {
            from("folder/b") {
                include "*.java"
            }
            into("folder/a")
        }
    }
}

// Finally, delete the files in folder B
task deleteB(type: Delete, dependsOn: overwriteFilesInAfromB) {
    delete("folder/b")
}

nextTask.dependsOn(deleteB)

于 2022-02-14T21:33:45.800 回答