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.1.0

Created 22 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.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.novokrest.gradle-check-version:gradle-check-version-plugin:0.1.0")
  }
}

apply(plugin = "org.novokrest.gradle-check-version")

Using the plugins DSL:

plugins {
  id "org.novokrest.gradle-check-version" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.novokrest.gradle-check-version:gradle-check-version-plugin:0.1.0"
  }
}

apply plugin: "org.novokrest.gradle-check-version"

Learn how to apply plugins to subprojects