Fix build error
This commit is contained in:
parent
4b2492cf30
commit
7f0300d415
|
@ -69,8 +69,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