diff --git a/build.gradle b/build.gradle index 70b4215..9d3ffe0 100644 --- a/build.gradle +++ b/build.gradle @@ -71,3 +71,12 @@ tasks.withType(JavaCompile) { } +///////////////////////////// +//// Gradle Wrapper Configuration. +/// Run this task, then refresh the gradle project +///////////////////////////// +task updateWrapper(type: Wrapper) { + gradleVersion = '4.10.2' + distributionUrl = distributionUrl.replace("bin", "all") + setDistributionType(Wrapper.DistributionType.ALL) +}