如何从 Kotlin DSL build.gradle 中的所有依赖项中排除库?
Posted
技术标签:
【中文标题】如何从 Kotlin DSL build.gradle 中的所有依赖项中排除库?【英文标题】:How to exclude library from all dependencies in Kotlin DSL build.gradle? 【发布时间】:2019-10-15 22:09:01 【问题描述】:我开始从 build.gradle
(Groovy) 迁移到 build.gradle.kts
(Kotlin DSL)。问题是com.google.common.util.concurrent.ListenableFuture
(来自com.google.guava
)存在于几个依赖项中。由于该构建失败并出现java.lang.RuntimeException: Duplicate class ...
错误。
以前(当我在 Groovy 中有 build.gradle
时)这个问题是用这个 sn-p 解决的:
configurations
all*.exclude group: 'com.google.guava', module: 'listenablefuture'
但我无法使用 Kotlin DSL 找到类似的东西。 您能否为上述 sn-p 提供 Kotlin 替代方案,或者就如何处理此问题提出任何其他解决方案?
【问题讨论】:
【参考方案1】:这适用于 Gradle Kotlin DSL:
configurations
all
exclude(group = "com.google.guava", module = "listenablefuture")
【讨论】:
【参考方案2】:这可能有效(虽然我还没有尝试过):
configurations.forEach it.exclude("com.google.guava", "listenablefuture")
【讨论】:
以上是关于如何从 Kotlin DSL build.gradle 中的所有依赖项中排除库?的主要内容,如果未能解决你的问题,请参考以下文章
如何启用 Spring Security kotlin DSL?
从API到DSL —— 使用 Kotlin 特性为爬虫框架进一步封装
gradle kotlin dsl:如何创建使用插件类的共享函数?