Gradle build without tests

gradle, java, testing

Solution

You should use the `-x` command line argument which excludes any task.

Try:

gradle build -x test 

Update:

The link in Peter's comment changed. Here is the diagram from the Gradle user's guide

Problem

I want to execute `gradle build` without executing the unit tests. I tried: ``` gradle -Dskip.tests build ``` That doesn't seem to do anything. Is there some other command I could use?

Original source