Flaxoos / gradle-version-collector

Script to collect gradle dependency versions to a central file

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gradle-version-collector

Script to collect gradle dependency versions to a central file

The script will go over all the gradle.kts files and move any version definitions to a Versions.kt file to be placed in your buildSrc directory

so

implementation("com.stuff:thing:1.2.3")

will change to

implementation("com.stuff:thing:$thingVersion")

and your Versions file will contain an entry

const val thingVersion = "1.2.3"

About

Script to collect gradle dependency versions to a central file


Languages

Language:Kotlin 100.0%