se.patrikerdes.use-latest-versions
Owner: Patrik Erdes
A plugin that updates the versions of your dependencies in your gradle project to the latest available versions.
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.4
0.2.4
Created 27 October 2018.
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("se.patrikerdes.use-latest-versions") version "0.2.4"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("se.patrikerdes:gradle-use-latest-versions-plugin:0.2.4") } } apply(plugin = "se.patrikerdes.use-latest-versions")
- Applying plugins to all subprojects .