summaryrefslogtreecommitdiff
path: root/gradlew
diff options
context:
space:
mode:
authorFabian Mastenbroek <fabianishere@outlook.com>2018-07-11 23:38:40 +0200
committerGitHub <noreply@github.com>2018-07-11 23:38:40 +0200
commit5fb2d1cb376d94540b6dff9ff769bbd56bcab153 (patch)
treea16c87718b83c3ba12e46496a266878848f29bb8 /gradlew
parentbc814ab5b5a4becf3dbc5f796a165955c0305d70 (diff)
parent8c7e208233c86614ac29157efba24e3a57d7f21c (diff)
chore: Update build toolchain (#23)
This pull requests updates the project as follows: 1. **Update Gradle version to 4.8** This allows us to make use of new features such as native JUnit 5 integration and the build cache. 2. **Update Gradle build configuration according to new changes** This change allows us to share configuration across modules and easily change the versions for shared dependencies. In addition, we now make use of the `java-library` plugin which allows for various optimizations. See https://docs.gradle.org/current/userguide/java_library_plugin.html 3. **Add support for Jacoco** We add support code coverage tracking via the latest version of Jacoco which has increasing support for Kotlin. Closes #22
Diffstat (limited to 'gradlew')
-rwxr-xr-xgradlew6
1 files changed, 3 insertions, 3 deletions
diff --git a/gradlew b/gradlew
index 4453ccea..cccdd3d5 100755
--- a/gradlew
+++ b/gradlew
@@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
-warn ( ) {
+warn () {
echo "$*"
}
-die ( ) {
+die () {
echo
echo "$*"
echo
@@ -155,7 +155,7 @@ if $cygwin ; then
fi
# Escape application args
-save ( ) {
+save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}