Provide no-op default for publishing when not set

This commit is contained in:
Justin Abrahms 2022-04-28 21:12:00 -07:00
parent b9e02411bf
commit 0e4155ac35
1 changed files with 2 additions and 2 deletions

View File

@ -88,8 +88,8 @@ publishing {
repositories { repositories {
maven { maven {
credentials { credentials {
username = ossrhUsername username = project.findProperty('ossrhUsername') ?: 'anon'
password = ossrhPassword password = project.findProperty('ossrhPassword') ?: 'no-op'
} }
url = repo_url url = repo_url