This is an automated email from the ASF dual-hosted git repository. ntimofeev pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cayenne.git
commit f1bc36cfb52ba4fa11b029a28cdce8e02833eca1 Author: Nikita Timofeev <stari...@gmail.com> AuthorDate: Fri Nov 19 11:12:38 2021 +0300 CAY-2711 JDK 17 compatibility - fix javadoc options --- pom.xml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2bbabbc..ecbf932 100644 --- a/pom.xml +++ b/pom.xml @@ -1666,14 +1666,23 @@ </properties> </profile> <profile> - <id>java9-javadoc-html5</id> + <id>java9-javadoc-html5-no-modules</id> <activation> - <jdk>[9,)</jdk> + <jdk>[9,14)</jdk> </activation> <properties> <javadoc.additionalOptions>-html5 --no-module-directories</javadoc.additionalOptions> </properties> </profile> + <profile> + <id>java14-javadoc-html5</id> + <activation> + <jdk>[14,)</jdk> + </activation> + <properties> + <javadoc.additionalOptions>-html5</javadoc.additionalOptions> + </properties> + </profile> </profiles> <reporting>