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 9dc8c314e Increase javadoc visibility in `nosql/realms` (#3029)
9dc8c314e is described below
commit 9dc8c314ed40be5682f5199dfd71fd9c01a0691e
Author: Dmitri Bourlatchkov <[email protected]>
AuthorDate: Tue Nov 11 13:21:28 2025 -0500
Increase javadoc visibility in `nosql/realms` (#3029)
This is to fix javadoc error: `No public or protected classes found to
document`
---
persistence/nosql/realms/impl/build.gradle.kts | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/persistence/nosql/realms/impl/build.gradle.kts
b/persistence/nosql/realms/impl/build.gradle.kts
index 2c5c360ec..99e6dcda2 100644
--- a/persistence/nosql/realms/impl/build.gradle.kts
+++ b/persistence/nosql/realms/impl/build.gradle.kts
@@ -53,4 +53,7 @@ dependencies {
testCompileOnly(libs.jakarta.enterprise.cdi.api)
}
-tasks.withType<Javadoc> { isFailOnError = false }
+tasks.withType<Javadoc> {
+ isFailOnError = false
+ options.memberLevel = JavadocMemberLevel.PACKAGE
+}