搜索 Gradle 插件

版本 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"

学习如何将插件应用到子项目中