From 0b794b4e924cf2fa69e84c4cf241b67ff7833839 Mon Sep 17 00:00:00 2001 From: Devin Bileck <603793+devinbileck@users.noreply.github.com> Date: Tue, 13 Nov 2018 22:55:21 -0800 Subject: [PATCH] Update to latest shadow plugin version 4.0.2 Updating to the latest shadow plugin version will resolve the following deprecation warning: > Task :desktop:shadowJar UP-TO-DATE Registering invalid inputs and outputs via TaskInputs and TaskOutputs methods has been deprecated. This is scheduled to be removed in Gradle 5.0. A problem was found with the configuration of task ':desktop:shadowJar'. See: https://github.com/johnrengelman/shadow/issues/336 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8855fa1fee..a94362df90 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { dependencies { classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.5' classpath 'com.google.gradle:osdetector-gradle-plugin:1.6.0' - classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4' + classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.2' classpath files('gradle/witness/gradle-witness.jar') classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.5.10.RELEASE' }