Update requiresUnpack documentation of unpack location
The unpack location is (largely) an implementation detail and the Repackage Mojo was the only place where it was explicity documented. Rather than updating the outdated location, this commit removes it entirely to avoid encouraging people to rely on the location. Closes gh-6624
This commit is contained in:
parent
a49f309ec1
commit
ae6182a964
|
@ -95,11 +95,10 @@ public class RepackageMojo extends AbstractDependencyFilterMojo {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Classifier to add to the artifact generated. If given, the artifact will be
|
* Classifier to add to the artifact generated. If given, the artifact will be
|
||||||
* attached with that classifier and the main artifact will be deployed as the
|
* attached with that classifier and the main artifact will be deployed as the main
|
||||||
* main artifact. If this is not given (default), it will replace the
|
* artifact. If this is not given (default), it will replace the main artifact and
|
||||||
* main artifact and only the repackaged artifact will be deployed. Attaching
|
* only the repackaged artifact will be deployed. Attaching the artifact allows to
|
||||||
* the artifact allows to deploy it alongside to
|
* deploy it alongside to the original one, see <a href=
|
||||||
* the original one, see <a href=
|
|
||||||
* "http://maven.apache.org/plugins/maven-deploy-plugin/examples/deploying-with-classifiers.html"
|
* "http://maven.apache.org/plugins/maven-deploy-plugin/examples/deploying-with-classifiers.html"
|
||||||
* > the maven documentation for more details</a>.
|
* > the maven documentation for more details</a>.
|
||||||
* @since 1.0
|
* @since 1.0
|
||||||
|
@ -128,7 +127,7 @@ public class RepackageMojo extends AbstractDependencyFilterMojo {
|
||||||
* A list of the libraries that must be unpacked from fat jars in order to run.
|
* A list of the libraries that must be unpacked from fat jars in order to run.
|
||||||
* Specify each library as a <code><dependency></code> with a
|
* Specify each library as a <code><dependency></code> with a
|
||||||
* <code><groupId></code> and a <code><artifactId></code> and they will be
|
* <code><groupId></code> and a <code><artifactId></code> and they will be
|
||||||
* unpacked at runtime in <code>$TMPDIR/spring-boot-libs</code>.
|
* unpacked at runtime.
|
||||||
* @since 1.1
|
* @since 1.1
|
||||||
*/
|
*/
|
||||||
@Parameter
|
@Parameter
|
||||||
|
|
Loading…
Reference in New Issue