Skip to content

Commit

Permalink
Merge pull request #91 from sbesson/javadoc
Browse files Browse the repository at this point in the history
Activate Javadoc in CI builds
  • Loading branch information
melissalinkert authored Oct 9, 2024
2 parents d74b834 + 844c4f2 commit 334c926
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
maven_commands: test # default is install
maven_commands: test javadoc:javadoc # default is install
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,9 @@
<artifactId>maven-javadoc-plugin</artifactId>
<!-- NB: The same version declaration and configuration block also
appears in the <reporting> section, and must be kept in sync. -->
<version>3.0.1</version>
<version>3.10.0</version>
<configuration>
<failOnError>false</failOnError>
<failOnError>true</failOnError>
<links>
<link>http://docs.oracle.com/javase/8/docs/api/</link>
</links>
Expand Down

0 comments on commit 334c926

Please sign in to comment.