org.novokrest.gradle-check-version
Owner:
Konstantin Novokreshchenov
A plugin to check used version of gradle in project and compare it with latest stable version of gradle available in public repository.
Version 0.2.0 (latest)
Created 23 December 2019.
A plugin to check used version of gradle in project and compare it with latest stable version of gradle available in public repository.
Using the plugins DSL:
plugins {
id("org.novokrest.gradle-check-version") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.novokrest.plugins:gradle-check-version-plugin:0.2.0")
}
}
apply(plugin = "org.novokrest.gradle-check-version")
Using the plugins DSL:
plugins {
id "org.novokrest.gradle-check-version" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.novokrest.plugins:gradle-check-version-plugin:0.2.0"
}
}
apply plugin: "org.novokrest.gradle-check-version"