Hey guys I am having a little trouble with the gradle wrapper. Is there any good way to compile all my code, compile all my tests, and run a single test. This is for a scripting command in a Jenkins pipeline.
I have used
- ./gradlew build, which runs all the tests
- ./gradlew build -x test, which compiles all main code and not allow me to run any tests
Thanks for any help