Search Gradle plugins

com.rickbusarow.gradle-dependency-sync

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

https://github.com/RBusarow/gradle-dependency-sync

Sources: https://github.com/RBusarow/gradle-dependency-sync

Version 0.11.2

0.11.2

Created 28 July 2021.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.rickbusarow.gradle-dependency-sync:gradle-dependency-sync-plugin:0.11.2")
      }
    }
    
    apply(plugin = "com.rickbusarow.gradle-dependency-sync")
  • Applying plugins to all subprojects .