diff options
| author | Fabian Mastenbroek <fabianishere@outlook.com> | 2018-07-11 23:38:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-11 23:38:40 +0200 |
| commit | 5fb2d1cb376d94540b6dff9ff769bbd56bcab153 (patch) | |
| tree | a16c87718b83c3ba12e46496a266878848f29bb8 /gradlew | |
| parent | bc814ab5b5a4becf3dbc5f796a165955c0305d70 (diff) | |
| parent | 8c7e208233c86614ac29157efba24e3a57d7f21c (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-x | gradlew | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 " " } |
