3 examples for gradle

{{ score }}
  # Finds and executes gradle using the build.gradle file in the git repo.
gradle --build-file $(find $(git rev-parse --show-toplevel) -name "build.gradle"
        
{{ score }}
  # Exclude any task from execution, e.g. no tests during build
gradle build -x test
        
{{ score }}
  # Show a tree of the dependencies that ultimately get resolved when your app is compiled.
gradle -q app:dependencies --configuration compile