Skip to content

Commit

Permalink
fix: javadoc 2
Browse files Browse the repository at this point in the history
  • Loading branch information
sylv256 committed Nov 24, 2024
1 parent e57f35d commit fd039e8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
9 changes: 9 additions & 0 deletions buildSrc/src/main/kotlin/conventions.common.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,15 @@ tasks {
}
exclude("\\.cache")
}

javadoc {
(options as StandardJavadocDocletOptions)
.tags(
"apiNote:a:API Note:",
"implSpec:a:Implementation Requirements:",
"implNote:a:Implementation Note:"
)
}
}

publishing {
Expand Down
11 changes: 0 additions & 11 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,3 @@ publishMods {
allowEmptyFiles = true
}
}

tasks {
javadoc {
(options as StandardJavadocDocletOptions)
.tags(
"apiNote:a:API Note:",
"implSpec:a:Implementation Requirements:",
"implNote:a:Implementation Note:"
)
}
}

0 comments on commit fd039e8

Please sign in to comment.