HHH-18912 - Fix ORM release process
This commit is contained in:
parent
60ff229ca1
commit
6354326257
13
build.gradle
13
build.gradle
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue