From 1be419aa9e692a66acdfceb98919a7e874c686e8 Mon Sep 17 00:00:00 2001 From: zontreck Date: Fri, 6 Sep 2024 13:01:05 -0700 Subject: [PATCH] Move ENV to global context --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 361a61f..b9aff6a 100644 --- a/build.gradle +++ b/build.gradle @@ -9,11 +9,12 @@ plugins { group = "dev.zontreck" archivesBaseName = "LibAC" - +def ENV = System.getenv() java { sourceCompatibility = JavaLanguageVersion.of(8) toolchain.languageVersion = JavaLanguageVersion.of(8) + withSourcesJar() withJavadocJar() } @@ -57,7 +58,6 @@ publishing { maven { url = "https://git.zontreck.com/api/packages/AriasCreations/maven" name = "ariascreations" - def ENV = System.getenv() credentials { username = ENV.MVN_USER