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)
0.8.5
Created 24 October 2024.
Provides tasks to format and update the version catalog file with the latest dependency versions.
Using the plugins DSL:
plugins {
id("nl.littlerobots.version-catalog-update") version "0.8.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("nl.littlerobots.vcu:plugin:0.8.5")
}
}
apply(plugin = "nl.littlerobots.version-catalog-update")
Using the plugins DSL:
plugins {
id "nl.littlerobots.version-catalog-update" version "0.8.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "nl.littlerobots.vcu:plugin:0.8.5"
}
}
apply plugin: "nl.littlerobots.version-catalog-update"