File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -194,6 +194,22 @@ Project
194
194
</plugin>
195
195
+-----+
196
196
197
+ Occasionally, automatic modules need to import named modules. For example,
198
+
199
+ +-----+
200
+ error: package org.w3c.dom is not visible
201
+ (package org.w3c.dom is declared in module java.xml, but module foobar does not read it)
202
+ +-----+
203
+
204
+ can be solved by adding the relevant --add-modules options to the plugin configuration:
205
+
206
+ +-----+
207
+ <additionalOptions>
208
+ <option>--add-modules</option>
209
+ <option>java.xml</option>
210
+ </additionalOptions>
211
+ +-----+
212
+
197
213
The Javadoc plugin contains several <<<aggregate>>> goals to be use with an aggregator project. Here is the full list
198
214
of all <<<aggregate>>> goals:
199
215
You can’t perform that action at this time.
0 commit comments