io.github.pemistahl.version-catalog-linter
Owner: Peter M. Stahl
A plugin for checking and formatting version catalog TOML files
https://github.com/pemistahl/version-catalog-linter-gradle-plugin
Sources: https://github.com/pemistahl/version-catalog-linter-gradle-plugin.git
Version 1.0.3 (latest)
1.0.3
Created 31 January 2024.
A plugin for checking and formatting version catalog TOML files
Using the plugins DSL:
plugins {
id("io.github.pemistahl.version-catalog-linter") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.pemistahl:version-catalog-linter-gradle-plugin:1.0.3")
}
}
apply(plugin = "io.github.pemistahl.version-catalog-linter")
Using the plugins DSL:
plugins {
id "io.github.pemistahl.version-catalog-linter" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.pemistahl:version-catalog-linter-gradle-plugin:1.0.3"
}
}
apply plugin: "io.github.pemistahl.version-catalog-linter"