Get the Nexus credentials from the environment

This commit is contained in:
Andrew Steinborn 2020-07-04 03:35:08 -04:00
parent f20c6ff3ea
commit e038a71baf

View File

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