We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb2833b commit 5bf9bb2Copy full SHA for 5bf9bb2
buildSrc/src/main/groovy/org/hibernate/build/HibernateBuildPlugin.groovy
@@ -43,6 +43,9 @@ class HibernateBuildPlugin implements Plugin<Project> {
43
if ( java6HomeDirSetting == null ) {
44
java6HomeDirSetting = System.getProperty( "JAVA6_HOME" );
45
}
46
+ if ( java6HomeDirSetting == null ) {
47
+ java6HomeDirSetting = System.getenv( "JAVA6_HOME" );
48
+ }
49
50
if ( java6HomeDirSetting != null ) {
51
project.logger.info( "Using JAVA6_HOME setting [${java6HomeDirSetting}]" )
0 commit comments