import gradle.kotlin.dsl.accessors._b43a41b3a2c24e7f863347686afebb31.versionCatalogs plugins { id("java-library") id("net.risesoft.y9.management") id("net.risesoft.y9.java-publish") } group = "net.risesoft" val versionCatalog = versionCatalogs.named("libs") val y9version = versionCatalog.findVersion("y9-version") if(y9version.isPresent) { version = y9version.get().displayName } else { version = "v9.7.0-SNAPSHOT" } java { sourceCompatibility = JavaVersion.VERSION_21 toolchain { languageVersion.set(JavaLanguageVersion.of(21)) } withJavadocJar() withSourcesJar() } tasks.withType { //sourceCompatibility = JavaVersion.VERSION_21.toString() //targetCompatibility = JavaVersion.VERSION_21.toString() options.encoding = "UTF-8" val compilerArgs = options.compilerArgs compilerArgs.add("-parameters") compilerArgs.add("-Xlint:all") compilerArgs.add("-Xdiags:verbose") } tasks.withType { //enabled = false isFailOnError = false val doclet = options as StandardJavadocDocletOptions doclet.encoding = "UTF-8" doclet.docEncoding = "UTF-8" doclet.addBooleanOption("html5", true) //doclet.addStringOption("Xdoclint:all,-missing", "-quiet") doclet.addStringOption("Xdoclint:none", "-quiet") // 禁用所有文档检查 } tasks.test { useJUnitPlatform() //exclude("**/*") } tasks.withType { // OR tasks.test { onlyIf { properties["testsEnabled"].toString().toBoolean() } //enabled = false }