Fixed script bug

This commit is contained in:
Speiger 2024-03-29 22:26:34 +01:00
parent 6eaa992f5f
commit 0be7dba5d3
1 changed files with 6 additions and 6 deletions

View File

@ -327,19 +327,19 @@ publishing {
repositories {
maven {
if(isMavenCentral) {
def auth = System.getenv("Maven_Central_Auth").split(';');
def auth = System.getenv("Maven_Central_Auth")?.split(';');
url version.endsWith('SNAPSHOT') ? "https://s01.oss.sonatype.org/content/repositories/snapshots/" : "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
credentials {
username auth[0]
password auth[1]
username auth?[0]
password auth?[1]
}
}
else {
def auth = System.getenv("Speiger_Maven_Auth").split(';');
def auth = System.getenv("Speiger_Maven_Auth")?.split(';');
url version.endsWith('SNAPSHOT') ? "https://maven.speiger.com/repository/debug" : "https://maven.speiger.com/repository/main"
credentials(PasswordCredentials) {
username auth[0]
password auth[1]
username auth?[0]
password auth?[1]
}
}
}