Skip to content

Commit 41dbab7

Browse files
authored
fix Javadoc generation (#116)
1 parent ddca51e commit 41dbab7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
restore-keys: ${{ runner.os }}-maven-
3131

3232
- name: Build with Maven
33-
run: mvn --no-transfer-progress --batch-mode -Dmaven.javadoc.skip=true verify
33+
run: mvn --no-transfer-progress --batch-mode verify

pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,10 @@
145145
<plugin>
146146
<groupId>org.apache.maven.plugins</groupId>
147147
<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>
148152
<executions>
149153
<execution>
150154
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)