Fixed implNote in JavaDocs (as it "technically" part of the official Java standard)

This commit is contained in:
coolGi
2023-12-24 21:42:17 +10:30
parent 7f89a1a2cc
commit 0c8717a0da
+15 -2
View File
@@ -470,8 +470,21 @@ allprojects { p ->
// this is the text that appears at the top of the overview (home) page
// and is used when bookmarking a page
javadoc.title = rootProject.mod_name + "-" + project.name
// Some annotations arent "technically" part of the official java standard,
// so we define it ourself here
javadoc {
configure( options ) {
tags(
'todo:X"',
'apiNote:a:API Note:',
'implSpec:a:Implementation Requirements:',
'implNote:a:Implementation Note:'
)
}
}
repositories {
// The central repo
mavenCentral()