Fix build error
This commit is contained in:
parent
6bba6d073b
commit
d9bceb3a80
|
@ -70,8 +70,8 @@ ext {
|
|||
nexusPublishing {
|
||||
repositories {
|
||||
sonatype {
|
||||
username = project.property( 'hibernatePublishUsername' )
|
||||
password = project.property( 'hibernatePublishPassword' )
|
||||
username = project.hasProperty( 'hibernatePublishUsername' ) ? project.property( 'hibernatePublishUsername' ) : null
|
||||
password = project.hasProperty( 'hibernatePublishPassword' ) ? project.property( 'hibernatePublishPassword' ) : null
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue