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.1

Created 10 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.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.rickbusarow.gradle-dependency-sync:com.rickbusarow.gradle-dependency-sync.gradle.plugin:0.11.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.rickbusarow.gradle-dependency-sync")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.rickbusarow.gradle-dependency-sync:com.rickbusarow.gradle-dependency-sync.gradle.plugin:0.11.1")
      }
    }
    
    apply(plugin = "com.rickbusarow.gradle-dependency-sync")
  • Applying plugins to all subprojects .