Skip to content

Instantly share code, notes, and snippets.

@HugoMatilla
Last active February 23, 2021 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HugoMatilla/9f0e1e7de044f084e5b4aba03809927d to your computer and use it in GitHub Desktop.
Save HugoMatilla/9f0e1e7de044f084e5b4aba03809927d to your computer and use it in GitHub Desktop.
Gradle Cheat Sheet

DEPENDENCIES TREE

./gradlew app:dependencies

With only first item

./gradlew <module-name>:dependencies | grep '\-\-\-' | grep -Po '\w+.*$' | awk -F ' ' '{ print $1 }' | sort | grep -v '\{' | grep -v '\[' | uniq | grep '.\+:.\+:.\+'

RUN TESTS

./gradlew test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment