From 56f1eef107ae2720dedc52045975a7d4453c8deb Mon Sep 17 00:00:00 2001 From: Robert Greathouse Date: Tue, 29 Jul 2025 11:41:21 -0500 Subject: [PATCH 1/2] chore: Add javadoc generation to PR job --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4b3dfa..a7343bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: architecture: x64 - name: Compile - run: ./gradlew compileJava + run: ./gradlew compileJava javadoc test: needs: [ compile ] From 752225606093e9cc707612b0ed0f8bc46b146a3c Mon Sep 17 00:00:00 2001 From: Robert Greathouse Date: Tue, 29 Jul 2025 13:01:12 -0500 Subject: [PATCH 2/2] Ignore javadoc linting --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index b7bd21a..b636863 100644 --- a/build.gradle +++ b/build.gradle @@ -35,6 +35,10 @@ java { withJavadocJar() } +javadoc { + options.addStringOption('Xdoclint:none', '-quiet') // Ignore error when `
{@code` is in the javadoc
+}
+
 test {
     useJUnitPlatform()
     testLogging {