Make isJava8 true or false, print out result in "init"

Some CI-builds with Java 11+ seem to still run as "JDK 8" builds...

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1889879 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2021-05-14 06:41:20 +00:00
parent f260abab3b
commit 5d719b9016
1 changed files with 3 additions and 1 deletions

View File

@ -68,7 +68,7 @@ under the License.
<contains string="${java.vendor}" substring="IBM" casesensitive="false"/>
</condition>
<condition property="isJava8">
<condition property="isJava8" else="false">
<equals arg1="${ant.java.version}" arg2="1.8"/>
</condition>
@ -615,6 +615,8 @@ under the License.
<echo message="Using Ant: ${ant.version} from ${ant.home}, Ant detected Java ${ant.java.version} (may be different than actual Java sometimes...)" />
<echo message="Using Java: ${java.version}/${java.runtime.version}/${java.vm.version}/${java.vm.name} from ${java.vm.vendor} on ${os.name}: ${os.version}" />
<echo message="Building Apache POI version ${version.id} and RC: ${release.rc}, isJava8: ${isJava8}" />
<echo if:true="${isJava8}">Compiling for Java 8</echo>
<echo unless:true="${isJava8}">Compiling for Java 9+</echo>
<loadresource property="RELEASE_TAG">
<string>REL_${version.id}</string>