From 11c3b376e291aebecbdd72bb661c1debae403ea3 Mon Sep 17 00:00:00 2001 From: Graham Date: Sun, 5 Apr 2020 11:16:19 +0100 Subject: [PATCH] Set wrapper task's default distributionType to ALL Signed-off-by: Graham --- build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index bf43969676..9128d081af 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -189,3 +189,7 @@ tasks.withType { candidate.version.contains(rejectVersionRegex) } } + +tasks.wrapper { + distributionType = Wrapper.DistributionType.ALL +}