From 97eca62ad2d9c4d9286b813b4cf7baa4332d3cd8 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 13 May 2019 12:04:39 +0200 Subject: [PATCH] Updated to use gradle utils for updates --- build.gradle.kts | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 942bc74..7441f9e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -27,7 +27,8 @@ plugins { id("com.gradle.plugin-publish") version "0.10.1" id("com.dorkbox.Licensing") version "1.4" - id("com.dorkbox.VersionUpdate") version "1.4" + id("com.dorkbox.VersionUpdate") version "1.4.1" + id("com.dorkbox.GradleUtils") version "1.0" kotlin("jvm") version "1.3.21" } @@ -175,12 +176,3 @@ pluginBundle { } } } - -/////////////////////////////// -////// Gradle Wrapper Configuration. -///// Run this task, then refresh the gradle project -/////////////////////////////// -task("wrapperUpdate") { - gradleVersion = "5.3" - distributionUrl = distributionUrl.replace("bin", "all") -}