Search Gradle plugins

Version 0.4.2

0.4.2

Created 28 November 2019.

A gradle plugin that automatically notifies about plugins that can be updated.

Add this plugin to your build using the plugins DSL:

plugins {
  id("be.vbgn.plugin-updates.config") version "0.4.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("be.vbgn.gradle:plugin-updates-plugin:0.4.2")
      }
    }
    
    apply(plugin = "be.vbgn.plugin-updates.config")
  • Applying plugins to all subprojects .