Provide no-op default for publishing when not set
This commit is contained in:
parent
b9e02411bf
commit
0e4155ac35
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue