Skip to content

Commit

Permalink
Enhance javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
cstamas committed May 28, 2024
1 parent 3a4c1da commit 367070a
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,8 @@ public class ShadeMojo extends AbstractMojo {
private boolean skip;

/**
* Extra JAR files to infuse into shaded result.
* Extra JAR files to infuse into shaded result. Accepts list of files that must exists. If any of specified
* files does not exist (or is not a file), Mojo will fail.
* <p>
* One can add here "extra JARs", to be worked into the resulting shaded JAR. The listed JAR files must exist.
* Extra JARs will be processed in same way as main JAR (if any): applied relocation, resource transformers
Expand All @@ -408,7 +409,9 @@ public class ShadeMojo extends AbstractMojo {
private List<File> extraJars;

/**
* Extra Artifacts to infuse into shaded result.
* Extra Artifacts to infuse into shaded result. Accepts list of GAVs in form of
* {@code <groupId>:<artifactId>[:<extension>[:<classifier>]]:<version>} that will be resolved. If any of them
* cannot be resolved, Mojo will fail.
* <p>
* One can add here "extra Artifacts" to be worked into the resulting shaded JAR. The artifacts will be resolved
* (not transitively), and will be processed in same way as dependency JARs (if any): regarding relocation,
Expand Down

0 comments on commit 367070a

Please sign in to comment.