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