io.github.jeffalder.tomlconverter
所有者: Jeff Alder
提取构建Gradle的依赖项和约束,设置TOML文件,并在build.gradle中替换条目。
https://github.com/jeffalder/toml-converter-plugin
来源: https://github.com/jeffalder/toml-converter-plugin
使用plugins DSL
plugins {
id("io.github.jeffalder.tomlconverter") version "1.0.0"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.jeffalder:toml-converter-plugin:1.0.0")
}
}
apply(plugin = "io.github.jeffalder.tomlconverter")
使用plugins DSL
plugins {
id "io.github.jeffalder.tomlconverter" version "1.0.0"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.jeffalder:toml-converter-plugin:1.0.0"
}
}
apply plugin: "io.github.jeffalder.tomlconverter"