com.rickbusarow.gradle-dependency-sync
Owner: Rick Busarow
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.4 (latest)
0.11.4
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"