mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 17:01:16 +00:00
ICU-13594 support icu4j on jdk through v12
X-SVN-Rev: 40928
This commit is contained in:
parent
25950362de
commit
96c54b5e71
1 changed files with 15 additions and 0 deletions
|
@ -102,10 +102,25 @@
|
|||
<matches string="${java.version}" pattern="9((-.|\.\d).*)?"/>
|
||||
</condition>
|
||||
|
||||
<condition property="is.java10">
|
||||
<matches string="${java.version}" pattern="10((-.|\.\d).*)?"/>
|
||||
</condition>
|
||||
|
||||
<condition property="is.java11">
|
||||
<matches string="${java.version}" pattern="11((-.|\.\d).*)?"/>
|
||||
</condition>
|
||||
|
||||
<condition property="is.java12">
|
||||
<matches string="${java.version}" pattern="12((-.|\.\d).*)?"/>
|
||||
</condition>
|
||||
|
||||
<condition property="is.java8.plus">
|
||||
<or>
|
||||
<isset property="is.java8"/>
|
||||
<isset property="is.java9"/>
|
||||
<isset property="is.java10"/>
|
||||
<isset property="is.java11"/>
|
||||
<isset property="is.java12"/>
|
||||
</or>
|
||||
</condition>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue