From e4716faca5ea2e6abb124beefcfd669fad545aa9 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Thu, 3 Oct 2019 20:48:01 -0300 Subject: [PATCH] Change gradle build to correctly copy libs Signed-off-by: Chris Cromer --- build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7de1dc9..3137788 100644 --- a/build.gradle +++ b/build.gradle @@ -51,5 +51,8 @@ task copyDependencies(type: Copy) { into "$buildDir/libs" } -build.dependsOn(copyDependencies) +build { + dependsOn copyDependencies +} + jar.dependsOn(copyDependencies) \ No newline at end of file