From 986a9c6f2200c107246f0552834a5282c46af7bc Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Fri, 1 Apr 2022 14:28:15 -0500 Subject: [PATCH] lets see if we can do this --- build.gradle | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 4475448..463c503 100644 --- a/build.gradle +++ b/build.gradle @@ -124,9 +124,13 @@ publishing { def releasesRepoUrl = uri("https://nexus.telesphoreo.me/repository/plex-release/") def snapshotsRepoUrl = uri("https://nexus.telesphoreo.me/repository/plex-snapshots/") url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl + /* Place a file in your root .gradle folder named "gradle.properties" with the following + plexUser = + plexPassword = + */ credentials { - username System.getenv("plexUser") - password System.getenv("plexPassword") + username plexUser + password plexPassword } } }