Skip to content

Commit

Permalink
fix: javadoc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
szysas committed Sep 25, 2024
1 parent 2d05518 commit 6898674
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: gradle/actions/setup-gradle@v4

- name: Build with Gradle
run: ./gradlew build jacocoTestReport -i
run: ./gradlew build jacocoTestReport javadoc -i
- uses: codecov/codecov-action@v4
if: matrix.java == '21'
env:
Expand Down
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ subprojects {
}
}

withType<Javadoc> {
(options as CoreJavadocOptions).addBooleanOption("Xdoclint:accessibility,html,syntax,reference", true)
}

create<Jar>("sourceJar") {
archiveClassifier.set("sources")
from(projSourceSets["main"].allSource)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* - RFC 7959 (Block-Wise Transfers)
* - draft-ietf-core-observe-09
* - RFC 9175 (Echo, Request-Tag, and Token Processing)
* <p/>
* <p>
* And custom:
* <pre>
* +-----+---+---+---+---+----------------+--------+--------+----------+
Expand Down

0 comments on commit 6898674

Please sign in to comment.