gpt4 book ai didi

groovy - 如何在 Gradle 中创建路径 jar

转载 作者:行者123 更新时间:2023-12-02 08:18:40 26 4
gpt4 key购买 nike

在 Windows 环境中运行 groovyc 时,在我的情况下,由于类路径的长度,我遇到了问题。我想通过创建一个路径 jar 来解决这个问题,然后将该 jar 放在 cp 上。如何创建一个包含在 gradle 中自动指定的所有类路径条目的路径 jar,然后将该 jar 添加到 cp 中?

最佳答案

这是一个经过测试的解决方案:

task pathingJar(type: Jar) {
appendix = "pathing"
doFirst {
manifest {
attributes "Class-Path": configurations.compile.files.join(" ")
}
}
}

compileGroovy {
dependsOn(pathingJar)
classpath = files(pathingJar.archivePath)
}

根据您的具体要求,您可能需要对此进行一些调整。例如,如果您有用 Groovy 编写的测试,则还需要一个用于测试编译类路径的路径 Jar。在这种情况下,您需要按如下方式重复上述配置:

task testPathingJar(type: Jar) {
appendix = "testPathing"
doFirst {
manifest {
attributes "Class-Path": configurations.testCompile.files.join(" ")
}
}
}

compileTestGroovy {
dependsOn(testPathingJar)
classpath = files(testPathingJar.archivePath)
}

关于groovy - 如何在 Gradle 中创建路径 jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5434482/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com