Search Gradle plugins

io.github.jeffalder.tomlconverter

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 1.0.0 (latest)

Created 11 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 "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.jeffalder:toml-converter-plugin:1.0.0")
  }
}

apply(plugin = "io.github.jeffalder.tomlconverter")

Using the plugins DSL:

plugins {
  id "io.github.jeffalder.tomlconverter" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.jeffalder:toml-converter-plugin:1.0.0"
  }
}

apply plugin: "io.github.jeffalder.tomlconverter"

Learn how to apply plugins to subprojects