File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,6 @@ configure([rootProject] + javaProjects) { project ->
86
86
" https://docs.oracle.com/en/java/javase/17/docs/api/" ,
87
87
" https://jakarta.ee/specifications/platform/11/apidocs/" ,
88
88
" https://docs.jboss.org/hibernate/orm/5.6/javadocs/" ,
89
- " https://eclipse.dev/aspectj/doc/released/aspectj5rt-api" ,
90
89
" https://www.quartz-scheduler.org/api/2.3.0/" ,
91
90
" https://fasterxml.github.io/jackson-core/javadoc/2.14/" ,
92
91
" https://fasterxml.github.io/jackson-databind/javadoc/2.14/" ,
Original file line number Diff line number Diff line change @@ -76,9 +76,9 @@ javadoc {
76
76
options. header = project. name
77
77
options. use = true
78
78
options. links(project. ext. javadocLinks)
79
- // Check for syntax during linting. 'none' doesn't seem to work in suppressing
80
- // all linting warnings all the time (see/link references most notably).
81
- options. addStringOption (" Xdoclint:syntax" , " -quiet " )
79
+ // Check for syntax during linting.
80
+ options . setOutputLevel( JavadocOutputLevel . QUIET )
81
+ options. addBooleanOption (" Xdoclint:syntax" , true )
82
82
83
83
// Suppress warnings due to cross-module @see and @link references.
84
84
// Note that global 'api' task does display all warnings, and
You can’t perform that action at this time.
0 commit comments