gpt4 book ai didi

Gradle 1.2 : Exclude directory under resources sourceSets

转载 作者:行者123 更新时间:2023-12-04 02:34:03 26 4
gpt4 key购买 nike

我有开发相关目录src/main/resources/certs/test这是一个外部库所需要的。这有一些在生产构建中不需要的证书文件。

目前,我在 build.gradle 中使用以下块排除该目录下的所有内容:

sourceSets {
main {
resources {
exclude '**/test/*'
}
}
}

这做得很好,但留下丑陋的空目录 test躺在那里。我有哪些选项可以在最终 war 中不包含此目录?

我试过排除 '**/test' ,但它根本不起作用。

我使用 war 插件和 Gradle 1.2

最佳答案

使用 Gradle 1.1,这对我有用:

apply plugin: 'war'

sourceSets {
main {
resources {
exclude '**/test/*'
exclude 'certs/test'
}
}
}

关于 Gradle 1.2 : Exclude directory under resources sourceSets,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12617827/

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