Search Gradle plugins

org.novokrest.gradle-check-version

A plugin to check used version of gradle in project and compare it with latest stable version of gradle available in public repository.

https://github.com/novokrest

Sources: https://github.com/novokrest/gradle-check-version-plugin.git

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.novokrest.gradle-check-version") version "0.2.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.novokrest.gradle-check-version:org.novokrest.gradle-check-version.gradle.plugin:0.2.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.novokrest.gradle-check-version")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.novokrest.gradle-check-version:org.novokrest.gradle-check-version.gradle.plugin:0.2.0")
      }
    }
    
    apply(plugin = "org.novokrest.gradle-check-version")
  • Applying plugins to all subprojects .