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 should use the -x command line argument which excludes any task.
-x
Try:
gradle build -x test
Update:
The link in Peter's comment changed. Here is the diagram from the Gradle user's guide