From 2ff7d84a0b1255ad6fa5f420188be49e1ac054d7 Mon Sep 17 00:00:00 2001 From: Juraj Michalek Date: Fri, 22 Nov 2013 22:04:17 +0100 Subject: [PATCH] add info about Gradle wrapper --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index e86af97..e4ad94e 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,22 @@ How to run: cd build/binaries/mainExecutable ./hellomuni + +Gradle with wrapper +------------------- + +In gradle/hellomuni example you have to download and install Gradle manually. +Gradle projects are often sometimes with wrapper which downloads all necessary file with Gradle. +It's sufficient to start wrapper and then you can work with local instance of Gradle. +This is useful when you want to fix version of Gradle or simplify bootstrap process. + +How to run: + + cd gradle/hello-with-wrapper + ./gradlew mainExecutable (or .\gradle.bat mainExecutable for PowerShell) + cd build/binaries/mainExecutable + ./hello-with-wrapper + Minunit testing ---------------