搜索Gradle插件

io.github.jeffalder.tomlconverter

所有者: Jeff Alder

提取构建Gradle的依赖项和约束,设置TOML文件,并在build.gradle中替换条目。

https://github.com/jeffalder/toml-converter-plugin

来源: https://github.com/jeffalder/toml-converter-plugin

版本 1.0.0 (最新)

1.0.0

创建于2023年1月11日。

提取构建Gradle的依赖项和约束,设置TOML文件,并在build.gradle中替换条目。

使用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"

了解如何将插件应用到子项目