0
是否有排除特定版本的傳遞依賴項的方法?我目前有以下版本但似乎不支持。排除特定版本的傳遞依賴項的所有實例 - Gradle
configurations {
compile.exclude group: 'org.hibernate',module: 'hibernate-core'
}
是否有排除特定版本的傳遞依賴項的方法?我目前有以下版本但似乎不支持。排除特定版本的傳遞依賴項的所有實例 - Gradle
configurations {
compile.exclude group: 'org.hibernate',module: 'hibernate-core'
}
也許不是答案本身,而是可能會有所幫助。
搖籃中exclude條款(只支持module
和group
)和單向忽略版本來實現你的目標是從不同的角度攻擊它。如果您對排除特定版本感興趣,也許您可以決定強制推出另一個版本,這可以通過以下方式實現:
configurations.all {
resolutionStrategy {
force 'your-lib:your-ver'
}
}