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