This is an automated email from the ASF dual-hosted git repository.
dimas pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 93d36ebd7 Increase javadoc visibility in `:polaris-async-vertx` (#2745)
93d36ebd7 is described below
commit 93d36ebd7b82a79941ef5a718603380040d1dc43
Author: Dmitri Bourlatchkov <[email protected]>
AuthorDate: Tue Oct 21 09:33:18 2025 -0400
Increase javadoc visibility in `:polaris-async-vertx` (#2745)
This is to fix javadoc error: `No public or protected classes found to
document`
---
persistence/nosql/async/vertx/build.gradle.kts | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/persistence/nosql/async/vertx/build.gradle.kts
b/persistence/nosql/async/vertx/build.gradle.kts
index 358b2e05a..72475f9b5 100644
--- a/persistence/nosql/async/vertx/build.gradle.kts
+++ b/persistence/nosql/async/vertx/build.gradle.kts
@@ -52,4 +52,7 @@ dependencies {
testImplementation(testFixtures(project(":polaris-async-api")))
}
-tasks.withType<Javadoc> { isFailOnError = false }
+tasks.withType<Javadoc> {
+ isFailOnError = false
+ options.memberLevel = JavadocMemberLevel.PACKAGE
+}