gradle
war プラグインを使用していますWEB-INF
。war のパック中にディレクトリ内のいくつかのディレクトリを除外しようとしていますが、除外が機能していないようです。これは私が持っているものです
war {
webInf {
from 'src/main/config'
}
exclude('metadata/**')
}
これに関する解決策はありますか?
sourceSets {
main {
src {
srcDir 'config'
exclude 'metadata/**'
}
}
}
war {
// remove classes from the classpath <<<<<<<
classpath = configurations.runtime
// add them in explicitly, with the filtering applied
webInf {
into('classes') {
from sourceSets.main.classes
exclude 'org/gradle/sample/excludeme/**'
}
}
}