Мы обновили проект Java до JDK 10. При запуске сценария сборки Javadoc выводит предупреждение:
javadoc: warning - You have not specified the version of HTML to use.
The default is currently HTML 4.01, but this will change to HTML5
in a future release. To suppress this warning, please specify the
version of HTML used in your documentation comments and to be
generated by this doclet, using the -html4 or -html5 options.
Для построения проекта мы используем gradle . Как мы можем указать HTML 5 (-html5
) в Gradle?
Пока что раздел javadoc нашего build.gradle
файла довольно прост:
javadoc {
include 'com/company/project/pkg/*'
}