Skip to content

Commit 1a4420e

Browse files
committed
Fix javadoc site report
1 parent dfad5af commit 1a4420e

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

pom.xml

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213
<id>generate-javadoc-site-report</id>
214214
<phase>site</phase>
215215
<goals>
216-
<goal>javadoc</goal>
216+
<goal>aggregate</goal>
217217
</goals>
218218
</execution>
219219
</executions>
@@ -229,6 +229,34 @@
229229
</plugins>
230230
</build>
231231

232+
<reporting>
233+
<plugins>
234+
<plugin>
235+
<!-- maven-site-plugin 3.3 requires maven-project-info-reports-plugin < 3.0 -->
236+
<artifactId>maven-project-info-reports-plugin</artifactId>
237+
<version>2.9</version>
238+
</plugin>
239+
<plugin>
240+
<artifactId>maven-javadoc-plugin</artifactId>
241+
<reportSets>
242+
<reportSet>
243+
<id>aggregate</id>
244+
<inherited>false</inherited>
245+
<reports>
246+
<report>aggregate</report>
247+
</reports>
248+
</reportSet>
249+
<reportSet>
250+
<id>default</id>
251+
<reports>
252+
<report>javadoc</report>
253+
</reports>
254+
</reportSet>
255+
</reportSets>
256+
</plugin>
257+
</plugins>
258+
</reporting>
259+
232260
<profiles>
233261
<profile>
234262
<id>release</id>

0 commit comments

Comments
 (0)