Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
beikov committed Nov 28, 2022
1 parent 4b2492c commit 7f0300d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,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
}
}
}
Expand Down

0 comments on commit 7f0300d

Please sign in to comment.