org.muehlbachler.gradle.plugin.dependency-update-notifier
Notifies GitLab about new dependency updates. Requires the com.github.ben-manes.versions plugin!
https://muhlba91.github.io/gradle-dependency-update-notifier
Sources: https://github.com/muhlba91/gradle-dependency-update-notifier
Version 1.2.0
Created 14 May 2019.
                Dependency update notifier, parsing the output of the "com.github.ben-manes.versions" plugin!
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("org.muehlbachler.gradle.plugin.dependency-update-notifier") version "1.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.muehlbachler.gradle.plugin.dependency-update-notifier:org.muehlbachler.gradle.plugin.dependency-update-notifier.gradle.plugin:1.2.0") }It can then be applied in the precompiled script plugin:plugins { id("org.muehlbachler.gradle.plugin.dependency-update-notifier") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.muehlbachler.gradle.plugin.dependency-update-notifier:org.muehlbachler.gradle.plugin.dependency-update-notifier.gradle.plugin:1.2.0") } } apply(plugin = "org.muehlbachler.gradle.plugin.dependency-update-notifier")
- Applying plugins to all subprojects .