Skip to content

Commit

Permalink
chore: disable javdoc (for now) (#2717)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjagg authored Nov 7, 2023
1 parent 9e408a9 commit f5467de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ subprojects {
required { gradle.taskGraph.hasTask('uploadArchives') }
sign configurations.archives
}
tasks.withType(Javadoc) {
// FIXME: Fix errors rather than supressing them
failOnError = false
tasks.withType(Javadoc).all {
// disable JavaDocs until we start using them again in our website
enabled = false
}
tasks.withType(Jar) {
from(project.projectDir) {
Expand Down

0 comments on commit f5467de

Please sign in to comment.