0

我需要使用 Gradle 将 JAR 中的特定文件复制到 WAR 中的特定目录中。我的代码:

war.doFirst {
    for(file in classpath) {
        FileTree tree = zipTree(file)
        FileTree treeResources = tree.matching { include "META-INF/resources/*" }

        String folderName = 'destinationFolder'
        {
            treeResources.each { 
                File resources -> copy {
                    from resources
                    String dest = war.destinationDir.name + "/" + war.archiveName + "/" + folderName
                    into dest
                }
            }
        }
    }

问题:“dest”值不正确,不是在创建的 WAR 文件中,而是类似于“libs/mywar-1.0.war/destinationFolder”。

4

1 回答 1

1

你会想要这样的东西:

war {
    into("destinationFolder") {
        from { classpath.collect { zipTree(it) } }
        include "META-INF/resources/**"
    }
}
于 2013-10-03T19:17:33.017 回答