io.github.solneo.dependency-conflict-analyzer
所有者: Daniil Ch.
帮助查找 Gradle 中的冲突
https://github.com/Solneo/dependency-conflict-analyzer
来源:https://github.com/Solneo/dependency-conflict-analyzer
版本 1.0.2(最新版)
1.0.2
创建于 2022 年 9 月 09 日。
帮助查找 Gradle 中的冲突
使用 插件的 DSL
plugins {
id("io.github.solneo.dependency-conflict-analyzer") version "1.0.2"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.solneo:dependency-conflict-analyzer:1.0.2")
}
}
apply(plugin = "io.github.solneo.dependency-conflict-analyzer")
使用 插件的 DSL
plugins {
id "io.github.solneo.dependency-conflict-analyzer" version "1.0.2"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.solneo:dependency-conflict-analyzer:1.0.2"
}
}
apply plugin: "io.github.solneo.dependency-conflict-analyzer"