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.14
0.2.14
Created 28 May 2020.
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.14"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("se.patrikerdes:gradle-use-latest-versions-plugin:0.2.14") } } apply(plugin = "se.patrikerdes.use-latest-versions")
- Applying plugins to all subprojects .