Get the Nexus credentials from the environment

This commit is contained in:
Andrew Steinborn
2020-07-04 03:35:08 -04:00
parent 4469a89aaa
commit 81aed2cd1d

View File

@@ -93,9 +93,10 @@ publishing {
repositories { repositories {
maven { maven {
credentials { credentials {
username project.findProperty('nexusUsername') ?: '' username System.getenv("NEXUS_USERNAME")
password project.findProperty('nexusPassword') ?: "" password System.getenv("NEXUS_PASSWORD")
} }
name = 'velocity-nexus' name = 'velocity-nexus'
def base = 'https://nexus.velocitypowered.com/repository/velocity-artifacts' def base = 'https://nexus.velocitypowered.com/repository/velocity-artifacts'
def releasesRepoUrl = "$base-releases/" def releasesRepoUrl = "$base-releases/"