# Gradle Upgrade Interactive
Every time I am using yarn, I really enjoy yarn upgrade-interactive
,
that lists the outdated dependencies and let's me easily choose what to upgrade.
Inspired by yarn, I built gradle-upgrade-interactive
,
an interactive CLI for Gradle (opens new window) projects that allows upgrading dependencies and the Gradle wrapper.
To get the data for the outdated dependencies, the gradle-versions-plugin is required.
build.gradle
plugins {
id "com.github.ben-manes.versions" version "0.33.0"
}
Install the CLI
npm i -g gradle-upgrade-interactive
Now you can simply run gradle-upgrade-interactive
in your Gradle projects.
Package can be found on npmjs (opens new window).
Source can be found at Github (opens new window).
If you like this post, feel free to follow me or hit me up on Twitter (opens new window).