This commit is contained in:
Telesphoreo 2022-04-01 14:31:05 -05:00
parent 986a9c6f22
commit 228b67a592
1 changed files with 2 additions and 6 deletions

View File

@ -124,13 +124,9 @@ 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 = <Nexus username>
plexPassword = <Nexus password>
*/
credentials {
username plexUser
password plexPassword
username = System.getenv("plexUser")
password = System.getenv("plexPassword")
}
}
}