搜索 Gradle 插件

版本 0.1.0(最新版)

0.1.0

创建日期:17 October 2023。

显示可用的依赖更新

使用 plugins DSL

plugins {
  id("io.github.beatbrot.dependency-report") version "0.1.0"
}

使用 遗产插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.beatbrot:gradle-dependency-report:0.1.0")
  }
}

apply(plugin = "io.github.beatbrot.dependency-report")

使用 plugins DSL

plugins {
  id "io.github.beatbrot.dependency-report" version "0.1.0"
}

使用 遗产插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.beatbrot:gradle-dependency-report:0.1.0"
  }
}

apply plugin: "io.github.beatbrot.dependency-report"

了解如何将插件应用于子项目