搜索 Gradle 插件

版本 0.5.0 (最新)

0.5.0

创建于 2021 年 2 月 12 日。

一个自动通知您可以更新的插件的 Gradle 插件。

使用插件 DSL

plugins {
  id("be.vbgn.plugin-updates") version "0.5.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("be.vbgn.gradle:plugin-updates-plugin:0.5.0")
  }
}

apply(plugin = "be.vbgn.plugin-updates")

使用插件 DSL

plugins {
  id "be.vbgn.plugin-updates" version "0.5.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "be.vbgn.gradle:plugin-updates-plugin:0.5.0"
  }
}

apply plugin: "be.vbgn.plugin-updates"

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