io.github.solneo.dependency-conflict-analyzer
Owner: Daniil Ch.
Help find conflict in gradle
https://github.com/Solneo/dependency-conflict-analyzer
Sources: https://github.com/Solneo/dependency-conflict-analyzer
Version 1.0.2 (latest)
1.0.2
Created 09 September 2022.
Help find conflict in gradle
Using the plugins DSL:
plugins {
id("io.github.solneo.dependency-conflict-analyzer") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.solneo:dependency-conflict-analyzer:1.0.2")
}
}
apply(plugin = "io.github.solneo.dependency-conflict-analyzer")
Using the plugins DSL:
plugins {
id "io.github.solneo.dependency-conflict-analyzer" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.solneo:dependency-conflict-analyzer:1.0.2"
}
}
apply plugin: "io.github.solneo.dependency-conflict-analyzer"