docs: Update issue template to 1.18

This commit is contained in:
NotMyFault
2021-12-05 23:29:28 +01:00
parent 3ed369de19
commit 2a40f52dea
7 changed files with 17 additions and 21 deletions

View File

@ -73,7 +73,7 @@ allprojects {
plugins.withId("java") {
the<JavaPluginExtension>().toolchain {
languageVersion.set(JavaLanguageVersion.of(16))
languageVersion.set(JavaLanguageVersion.of(17))
}
}
@ -236,7 +236,7 @@ tasks {
val rootOptions = aggregatedJavadocs.options as StandardJavadocDocletOptions
val subOptions = task.options as StandardJavadocDocletOptions
rootOptions.links(*subOptions.links.orEmpty().minus(rootOptions.links.orEmpty()).toTypedArray())
rootOptions.links(*subOptions.links.orEmpty().minus(rootOptions.links.orEmpty().toSet()).toTypedArray())
}
}
}