Navigation Menu

Skip to content

Commit

Permalink
JDBC-619 fix issues building javadoc on Java 9 and higher
Browse files Browse the repository at this point in the history
  • Loading branch information
mrotteveel committed May 22, 2020
1 parent ed07bb7 commit aa65594
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 0 additions & 1 deletion build/dist.xml
Expand Up @@ -10,7 +10,6 @@
version="true"
windowtitle="${Name} API"
doctitle="${Name}"
extdirs="${module.thirdparty}"
additionalparam="${javadoc.additionalparam}"
excludepackagenames="${excludedPackages}"
bottom="Copyright © 2001-${YEAR} Jaybird (Firebird JDBC/JCA) team. All rights reserved.">
Expand Down
8 changes: 7 additions & 1 deletion build/init.xml
Expand Up @@ -238,9 +238,15 @@
disabling seems to be the better option.
For details see: http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html
-->
<condition property="javadoc.additionalparam" value="-Xdoclint:none" else="">
<condition property="javadoc.additionalparam" value="">
<javaversion exactly="1.7"/>
</condition>
<condition property="javadoc.additionalparam" value="-Xdoclint:none">
<javaversion exactly="1.8"/>
</condition>
<condition property="javadoc.additionalparam" value="-Xdoclint:none --no-module-directories">
<javaversion atleast="9"/>
</condition>

</target>

Expand Down

0 comments on commit aa65594

Please sign in to comment.