gradle warプラグインの例:なぜmoreLibsを次のように定義する必要がありますか?説明してください:gradle howの設定が使用されています
configurations {
moreLibs
}
dependencies {
moreLibs ":otherLib:1.0"
}
war {
classpath configurations.moreLibs
webXml = file('src/someWeb.xml')
}
設定内に何かを定義できますか?
configurations {
foobar
}
私は多くの場所でこれらを見ました。誰でも説明できますか?