mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-22324 Exclude tools/build from jdk > 8
This commit is contained in:
parent
0cc2d9ed4c
commit
2207e2c3df
1 changed files with 14 additions and 1 deletions
|
@ -24,7 +24,6 @@
|
|||
<module>main</module>
|
||||
<module>demos</module>
|
||||
<module>samples</module>
|
||||
<module>tools/build</module>
|
||||
<module>tools/misc</module>
|
||||
</modules>
|
||||
|
||||
|
@ -328,6 +327,20 @@
|
|||
</build>
|
||||
</profile>
|
||||
|
||||
<!-- The tools/build module depends on the old tools.jar (jdk 1.8)
|
||||
The com.sun.javadoc package was deprecated in Java 11, and has been removed for Java 17.
|
||||
JDK 11 does not include tools.jar anymore. The code must be updated, see migration guide at
|
||||
https://docs.oracle.com/en/java/javase/11/docs/api/jdk.javadoc/jdk/javadoc/doclet/package-summary.html#migration
|
||||
-->
|
||||
<profile>
|
||||
<id>old_jdk_taglet</id>
|
||||
<activation>
|
||||
<jdk>[1.7,1.8]</jdk>
|
||||
</activation>
|
||||
<modules>
|
||||
<module>tools/build</module>
|
||||
</modules>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
|
|
Loading…
Add table
Reference in a new issue