HHH-18912 - Fix ORM release process

This commit is contained in:
Steve Ebersole 2024-12-05 01:14:46 -06:00
parent 60ff229ca1
commit 6354326257
1 changed files with 12 additions and 1 deletions

View File

@ -71,7 +71,18 @@ String extractPropertyOrSetting(String name) {
if ( project.hasProperty( name) ) {
return project.property( name )
}
return System.getProperty( name )
def sysProp = System.getProperty( name )
if ( sysProp != null ) {
return sysProp
}
def envProp = System.getenv( name )
if ( envProp != null ) {
return envProp
}
return null
}
nexusPublishing {