Skip to content

Instantly share code, notes, and snippets.

@shravankb
Forked from jiffle/GradleCheatsheet.md
Created April 21, 2021 05:53
Show Gist options
  • Select an option

  • Save shravankb/b3217fa67f153cf49a9f4c1cd89b5f61 to your computer and use it in GitHub Desktop.

Select an option

Save shravankb/b3217fa67f153cf49a9f4c1cd89b5f61 to your computer and use it in GitHub Desktop.
Cheatsheet of Gradle Commands and Config

Command Cheatsheet

  • Convert Maven build to gradle

    gradle init

  • Initialise new project folder structure (Java example)

    gradle init --type java-library

  • List all projects in the build

    gradle -q projects

  • List all properties on the build

gradle -q properties

  • List build configuration model

    gradle -q model

  • Execute one integration test:

    ./gradlew integrationTest --tests=*SomeTestClass

  • Execute tasks parallel:

    ./gradlew clean build --parallel

  • Skip test:

    gradle build -x test

  • Include console and logging output for container code and tests

    gradle functionalTest --info

  • Run application tests with debugger agent

    gradle test --debug-jvm

  • Refresh dependencies

    ./gradlew clean build --refresh-dependencies

  • View dependencies for specific jar (and configuration)

    gradle my-sub-project:dependencyInsight --configuration testCompile --dependency hamcrest-core

  • Run in custom environment

    -Dspring.profiles.active=dev

Configuration Cheatsheet

  • Better logging in tests:
test {
    testLogging {
        exceptionFormat = 'full'
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment