Skip to content

Commit

Permalink
Disable unnecessary javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
object-Object committed Mar 18, 2024
1 parent cda2e4a commit 60eebc7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,16 @@ subprojects {
}
}

allprojects { gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.compilerArgs << "-Xmaxerrs" << "1000" } } }
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "1000"
}
}

// disable most javadoc warnings
javadoc.options.addStringOption('Xdoclint:none', '-quiet')
}

compileKotlin {
kotlinOptions {
Expand Down

0 comments on commit 60eebc7

Please sign in to comment.