Search Gradle plugins

Version 0.11.4 (latest)

Created 30 October 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.4"
}

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.4")
  }
}

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

Using the plugins DSL:

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

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.4"
  }
}

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

Learn how to apply plugins to subprojects