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 15031cc commit 3622c04Copy full SHA for 3622c04
plexus-java/src/main/java/org/codehaus/plexus/languages/java/jpms/ResolvePathsRequest.java
@@ -235,11 +235,22 @@ public boolean isIncludeAllProviders()
235
return includeAllProviders;
236
}
237
238
+ /**
239
+ *
240
+ * @return <code>true</code> if the result will include all static dependencies
241
+ * @since 1.0.5
242
+ */
243
public boolean isIncludeStatic()
244
{
245
return includeStatic;
246
247
248
249
250
+ * @param includeStatic <code>true</code> if the result must include all static dependencies
251
+ * @return this request
252
253
254
public ResolvePathsRequest<T> setIncludeStatic( boolean includeStatic )
255
256
this.includeStatic = includeStatic;
0 commit comments