io.github.jeffalder.tomlconverter
Owner: Jeff Alder
Extracts your build gradle dependencies and constraints, sets up a Toml file, and replaces entries in build.gradle.
https://github.com/jeffalder/toml-converter-plugin
Sources: https://github.com/jeffalder/toml-converter-plugin
Version 0.0.3
0.0.3
Created 10 January 2023.
Extracts your build gradle dependencies and constraints, sets up a Toml file, and replaces entries in build.gradle.
Using the plugins DSL:
plugins {
id("io.github.jeffalder.tomlconverter") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.jeffalder:toml-converter-plugin:0.0.3")
}
}
apply(plugin = "io.github.jeffalder.tomlconverter")
Using the plugins DSL:
plugins {
id "io.github.jeffalder.tomlconverter" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.jeffalder:toml-converter-plugin:0.0.3"
}
}
apply plugin: "io.github.jeffalder.tomlconverter"