We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddca51e commit 41dbab7Copy full SHA for 41dbab7
.github/workflows/build.yml
@@ -30,4 +30,4 @@ jobs:
30
restore-keys: ${{ runner.os }}-maven-
31
32
- name: Build with Maven
33
- run: mvn --no-transfer-progress --batch-mode -Dmaven.javadoc.skip=true verify
+ run: mvn --no-transfer-progress --batch-mode verify
pom.xml
@@ -145,6 +145,10 @@
145
<plugin>
146
<groupId>org.apache.maven.plugins</groupId>
147
<artifactId>maven-javadoc-plugin</artifactId>
148
+ <configuration>
149
+ <!-- needed to fix javadoc on java 11+ https://github.com/joel-costigliola/assertj-core/issues/1403 -->
150
+ <source>8</source>
151
+ </configuration>
152
<executions>
153
<execution>
154
<id>attach-javadocs</id>
0 commit comments