test publish stuff

This commit is contained in:
Andrei Isvoran 2024-03-04 09:55:52 +02:00
parent 9a9867e739
commit 97291ffcae

View File

@ -84,9 +84,6 @@ tasks.test {
maxHeapSize = "1024m"
}
tasks.named<BootBuildImage>("bootBuildImage") {
environment.put("BPE_DELIM_JAVA_TOOL_OPTIONS", " ")
@ -142,4 +139,11 @@ tasks.register("generateJavaDoc", Javadoc::class) {
include(droolsImports)
}
destinationDir = file(project.findProperty("javadocDestinationDir")?.toString() ?: "")
options.memberLevel = JavadocMemberLevel.PUBLIC
(options as StandardJavadocDocletOptions).apply {
header = "Redaction Service ${project.version}"
footer = "Redaction Service ${project.version}"
title = "API Documentation for Redaction Service ${project.version}"
}
}