configured publishing.repositories

pull/1254/head
Nicholas Albion 2023-09-06 13:13:36 +10:00
parent c3f319d7c2
commit cac75be05b
1 changed files with 10 additions and 0 deletions

View File

@ -109,4 +109,14 @@ publishing {
}
}
}
repositories {
maven {
url = 'https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/'
credentials {
username = System.getenv("MAVEN_USERNAME")
password = System.getenv("MAVEN_PASSWORD")
}
}
}
}