From 2f8aff2f3887f71e88d9f8da20f08d0e6e53d368 Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Tue, 12 May 2020 17:46:34 +0200 Subject: [PATCH] Add instructions on how to run a full build with all tests --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8dafcf625..c1c5371aa 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,15 @@ Clone the git repository using the URL on the Github home page: $ cd spring-batch ## Command Line -Gradle is the build tool used for Spring Batch. You can perform a full build of Spring Batch via the command: + +Gradle is the build tool used for Spring Batch. You can build the project via the command: $ ./gradlew build +If you want to perform a full build with all integration tests, ensure you have Docker installed then run: + + $ ./gradlew build -Palltests + ## Spring Tool Suite (STS) In STS (or any Eclipse distro or other IDE with Gradle support), import the module directories as existing projects. They should compile and the tests should run with no additional steps.