Search Gradle plugins

Version 0.11.0

Created 05 July 2021.

Automatically sync dependency declarations between a build.gradle.kts file and a .toml file

Using the plugins DSL:

plugins {
  id("com.rickbusarow.gradle-dependency-sync") version "0.11.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.rickbusarow.gradle-dependency-sync:gradle-dependency-sync-plugin:0.11.0")
  }
}

apply(plugin = "com.rickbusarow.gradle-dependency-sync")

Using the plugins DSL:

plugins {
  id "com.rickbusarow.gradle-dependency-sync" version "0.11.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.rickbusarow.gradle-dependency-sync:gradle-dependency-sync-plugin:0.11.0"
  }
}

apply plugin: "com.rickbusarow.gradle-dependency-sync"

Learn how to apply plugins to subprojects