Skip to content

netmikey/gradle-version-tool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gradle Version Tool

Build Status

A tool for managing the Gradle versions of multiple projects.

Purpose

If you use Gradle as your build system, a best practice is using the Gradle Wrapper. On a side note, you might want to check out my Gradle Wrapper delegator. If you start using Gradle and the Gradle wrapper on more and more of your projects, you might end up with a dozen or more projects, each of which bringing its own Gradle wrapper. While being autonomous is a great thing, keeping track of which project uses which Gradle version and having to maintain all of these projects and their Gradle versions by hand can get tedious, error-prone and time-consuming.

The Gradle Version Tool combines file system scanning, the Gradle Tooling API and JGit to find and list all your Gradle Wrapper-enabled projects along with their current Gradle version and the ability to auto-upgrade them.

Features

  • Scan through all directories to find Gradle Wrapper enabled projects. Projects that don't use the Gradle wrapper will be ignored.
  • Automatially retrieves information about the latest published Gradle version from GitHub
  • Analyze projects to find which Gradle version is used, whether it is up-to-date, and whether it is under Git version control
  • Automatically upgrade projects to the latest Gradle version
    • Gradle version upgrade will only be attempted it the project meets all criteria:
      • If using Git, the working directory must be clean.
      • If using Git and a remote, the current branch must be in sync with the remote repository.
      • If major-upgrades is set to false, upgrades across major Gradle versions (e.g. from 4.10.2 to 5.x) will not be attempted.
    • To validate a successful Gradle migration, the tool runs the project's build before and after the upgrade. The build must work both times for the upgrade to be considered successful.
    • Automatically commit and push changes

Usage

The general syntax of the tool is:

gradle-version-tool [options]

Options are specified in the form: --[option]=[value]

Available options are:

Option Optional Default Description
dir Yes current working directory The top directory from which the tool starts scanning down to find Gradle projects.
action Yes list One of:
  • list only list found projects and their Gradle version
  • upgrade upgrade found projects if applicable
dry-run Yes false Scan and evaluate only, don't do anything on storage.

Only applicable in upgrade mode.
major-upgrades Yes false Whether upgrades across Gradle major versions should be attempted (e.g. 4.10.2 to 5.x).

Only applicable in upgrade mode.
check-tasks Yes clean, build, assemble The comma-separated list of Gradle tasks to be used to check that the build works. They will be used before and after upgrading Gradle.

Only applicable in upgrade mode.
commit Yes true Whether the upgraded Gradle wrapper files should be committed to Git.

Only applicable in upgrade mode, for projects under Git version control for which an upgrade was successful.
push Yes true Whether the commit of the new Gradle wrapper files should be pushed to the Git remote.

Only applicable in upgrade mode, when commit is true, for projects under Git version control for which an upgrade was successful.

Examples

  • List all projects with their Gradle version

      c:\my-projects\> gradle-version-tool
    
  • See which projects would be upgraded to the latest Gradle version

      c:\my-projects\> gradle-version-tool --action=upgrade --dry-run=true
    
  • Upgrade a single project to the latest Gradle version, do a commit but don't push to the remote repository

      c:\my-projects\> gradle-version-tool \
          --dir=c:\my-projects\someproject\ \
          --action=upgrade \
          --push=false
    

About

A tool for managing the Gradle versions of multiple projects.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages