I want to execute gradle build without executing the unit tests. I tried:
gradle build
$ gradle -Dskip.tests build
That doesn\'t seem to
You can add the following lines to build.gradle, **/* excludes all the tests.
build.gradle
**/*
test { exclude '**/*' }