de.usr42.use-latest-versions
Owner: Balthasar Biedermann
A plugin that updates the versions of your dependencies in your *.gradle files to the latest available versions. This plugin depends on the Gradle Versions Plugin.
https://github.com/patrikerdes/gradle-use-latest-versions-plugin/blob/master/README.md
Sources: https://github.com/patrikerdes/gradle-use-latest-versions-plugin
Version 0.2.13 (latest)
0.2.13
Created 25 October 2019.
A plugin that updates the versions of your dependencies in your *.gradle files to the latest available versions. This plugin depends on the Gradle Versions Plugin.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.usr42.use-latest-versions") version "0.2.13"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.usr42:gradle-use-latest-versions-plugin:0.2.13") } } apply(plugin = "de.usr42.use-latest-versions")
- Applying plugins to all subprojects .