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 ec9c46b commit a542742Copy full SHA for a542742
pom.xml
@@ -365,6 +365,17 @@
365
<siteDirectory>${project.build.directory}/site-src</siteDirectory>
366
</configuration>
367
</plugin>
368
+ <!-- We are not modular yet but use automatic module names, javadoc plugin has well known incorrect determination of modular, patch it -->
369
+ <plugin>
370
+ <groupId>org.apache.maven.plugins</groupId>
371
+ <artifactId>maven-javadoc-plugin</artifactId>
372
+ <configuration>
373
+ <additionalOptions combine.children="append">
374
+ <option>--add-modules</option>
375
+ <option>java.sql</option>
376
+ </additionalOptions>
377
+ </configuration>
378
+ </plugin>
379
</plugins>
380
381
<resources>
0 commit comments