复制任务的 Gradle 排除模块
我有一个复制任务集如下:
I have a Copy task set as follow:
task copyToLib( type: Copy ) {
into "$buildDir/myapp/lib"
from configurations.runtime
// We only want jars files to go in lib folder
exclude "*.exe"
exclude "*.bat"
exclude "*.cmd"
exclude "*.dll"
// We exclude some lib
exclude group: "org.slf4j", name: "slf4j-api", version: "1.6.2"
}
我收到以下错误:
Could not find method exclude() for arguments [{group=org.slf4j, name=slf4j-api, version=1.6.2}] on task ':copyToLib' of type org.gradle.api.tasks.Copy
我觉得这只是一个语法问题,有什么提示吗?
I have the feeling that it's only a syntax issue, any hint?
推荐答案
按组排除:排除组:org.slf4j
按模块排除:排除模块:slf4j-api
按文件名排除:exclude { it.file.name.contains('slf4j-api') }
排除文件:exclude "slf4j-api.jar"
您可以按组和模块排除,但需要像这样进入配置排除.然后它会在复制之前限制配置.
You can exclude by group and module but it needs to go into configurations exclude like this. Then it's gonna restrict the configuration before copying.
task copyToLib( type: Copy ) {
into "$buildDir/myapp/lib"
from configurations.runtime {
exclude group: 'org.slf4j'
}
// We only want jars files to go in lib folder
exclude "*.exe"
exclude "*.bat"
exclude "*.cmd"
exclude "*.dll"
}
并记得确保目录存在 $buildDir/myapp/lib
也许不是排除所有其他文件,而是只包含 jars?
And maybe instead of excluding all other files just include jars?
相关文章