io.github.kota65535.asdf-parse
Owner: Tomohiko Ozawa
Gradle plugin to parse asdf .tool-versions file and set the project's extra properties
https://github.com/kota65535/gradle-asdf-parse-plugin
Sources: https://github.com/kota65535/gradle-asdf-parse-plugin
Version 0.2.0 (latest)
0.2.0
Created 31 October 2023.
Gradle plugin to parse asdf .tool-versions file and set the project's extra properties
Using the plugins DSL:
plugins {
id("io.github.kota65535.asdf-parse") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kota65535.gradle.plugin:gradle-asdf-parse-plugin:0.2.0")
}
}
apply(plugin = "io.github.kota65535.asdf-parse")
Using the plugins DSL:
plugins {
id "io.github.kota65535.asdf-parse" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kota65535.gradle.plugin:gradle-asdf-parse-plugin:0.2.0"
}
}
apply plugin: "io.github.kota65535.asdf-parse"