org.novokrest.gradle-check-version
所有者: 康斯坦丁·诺沃克列什琴诺夫
一个检查项目中使用的 Gradle 版本并与公共仓库中可用的最新稳定版本进行比较的插件。
来源: https://github.com/novokrest/gradle-check-version-plugin.git
使用 插件 DSL
plugins {
id("org.novokrest.gradle-check-version") version "0.2.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.novokrest.plugins:gradle-check-version-plugin:0.2.0")
}
}
apply(plugin = "org.novokrest.gradle-check-version")
使用 插件 DSL
plugins {
id "org.novokrest.gradle-check-version" version "0.2.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.novokrest.plugins:gradle-check-version-plugin:0.2.0"
}
}
apply plugin: "org.novokrest.gradle-check-version"