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 6bba6d0 commit d9bceb3
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 @@ -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
}
}
}
Expand Down

0 comments on commit d9bceb3

Please sign in to comment.