From e9177b4d49e04510d80795801365b0adeda28a05 Mon Sep 17 00:00:00 2001 From: Steven Tracey Date: Wed, 2 Feb 2022 22:15:30 -0500 Subject: [PATCH] Misspelling --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index e3b2543..bb156b4 100644 --- a/build.gradle +++ b/build.gradle @@ -17,8 +17,8 @@ dependencies { implementation group: 'org.json', name: 'json', version: '20210307' } -task setEnv(type: Exec) { - environment "VERSION", "1.0" +task setEnv { + Commandline "VERSION", "1.0" } apply plugin: 'maven-publish' @@ -26,7 +26,7 @@ apply plugin: 'maven-publish' publishing { publications{ publish(MavenPublication) { - artifact("target/DeepJ-$version" + ".jar") { + artifact("target/DeepJ-$version" + "-all.jar") { extension 'jar' } }