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.
Sources: https://github.com/novokrest/gradle-check-version-plugin.git
Version 0.2.0 (latest)
0.2.0
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.novokrest.gradle-check-version") version "0.2.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.org.novokrest.plugins:gradle-check-version-plugin:0.2.0") } } apply(plugin = "org.novokrest.gradle-check-version")
- Applying plugins to all subprojects .