I want to execute gradle build
without executing the unit tests. I tried:
$ gradle -Dskip.tests build
That doesn\'t seem to
Try:
gradle assemble
To list all available tasks for your project, try:
gradle tasks
UPDATE:
This may not seem the most correct answer at first, but read carefully gradle tasks
output or docs.
Build tasks
-----------
assemble - Assembles the outputs of this project.
build - Assembles and tests this project.