We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce8d34f commit 7f2f0caCopy full SHA for 7f2f0ca
config/gradle/common.gradle
@@ -119,7 +119,16 @@ spotbugsMain {
119
}
120
121
122
-// TODO: Temporary until javadoc has been fixed for Java 8 everywhere
123
-javadoc {
+tasks.javadoc {
+ // Disable doclint messages about missing "@param" or "@return" tags.
124
+ options.addBooleanOption("Xdoclint:all,-missing", true)
125
+
126
+ // Omit package qualifiers for some of the most common types.
127
+ options.noQualifiers(
128
+ "java.lang", "java.util.*", "org.joml",
129
+ "org.terasology.engine.entitySystem.entity"
130
+ )
131
132
+ // TODO: Temporary until javadoc has been fixed for Java 8 everywhere
133
failOnError = false
134
0 commit comments