subprojects
クロージャーには次のものがあります。
configurations {
all*.exclude group: 'com.sun.jersey', module: 'jersey-bundle'
}
しかしgradlew dependencies
、まだ含まれてjersey-bundle
います。これを修正するために何をする必要がありますか?
subprojects
クロージャーには次のものがあります。
configurations {
all*.exclude group: 'com.sun.jersey', module: 'jersey-bundle'
}
しかしgradlew dependencies
、まだ含まれてjersey-bundle
います。これを修正するために何をする必要がありますか?
問題は、configurations
クロージャーが実行された時点で、all
構成がないことです。使用する:
configurations.all {
exclude group: 'com.sun.jersey', module: 'jersey-bundle'
}
この目的のために、 Resolution Rules Pluginの Deny および Exclude ルールを使用できます。ルールを再利用する方法を提供するため、会社内のすべてのプロジェクトが、依存関係を除外するために必要な正確な呪文を知っている必要はありません。