nl.littlerobots.version-catalog-update
Owner: Hugo Visser
Provides tasks to format and update the version catalog file with the latest dependency versions.
https://github.com/littlerobots/version-catalog-update-plugin
Sources: https://github.com/littlerobots/version-catalog-update-plugin.git
Version 0.8.5 (latest)
Created 24 October 2024.
Provides tasks to format and update the version catalog file with the latest dependency versions.
Add this plugin to your build using the plugins DSL:
plugins {
id("nl.littlerobots.version-catalog-update") version "0.8.5"
}
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("nl.littlerobots.version-catalog-update:nl.littlerobots.version-catalog-update.gradle.plugin:0.8.5") }
It can then be applied in the precompiled script plugin:plugins { id("nl.littlerobots.version-catalog-update") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("nl.littlerobots.version-catalog-update:nl.littlerobots.version-catalog-update.gradle.plugin:0.8.5") } } apply(plugin = "nl.littlerobots.version-catalog-update")
- Applying plugins to all subprojects .