be.vbgn.plugin-updates
                  Owner:
                  
                    
                    Lars Vierbergen
                  
                
A gradle plugin that automatically notifies about plugins that can be updated.
https://github.com/vierbergenlars/plugin-updates-gradle-plugin
Sources: https://github.com/vierbergenlars/plugin-updates-gradle-plugin
Version 0.3.1
Created 09 November 2018.
                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") version "0.3.1"
}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("be.vbgn.plugin-updates:be.vbgn.plugin-updates.gradle.plugin:0.3.1") }It can then be applied in the precompiled script plugin:plugins { id("be.vbgn.plugin-updates") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("be.vbgn.plugin-updates:be.vbgn.plugin-updates.gradle.plugin:0.3.1") } } apply(plugin = "be.vbgn.plugin-updates")
- Applying plugins to all subprojects .