InterviewSolution
| 1. |
What is the use of the Maven Wagon plugin? |
|
Answer» The Maven Wagon Plugin, as its NAME suggests, allows you to access numerous Maven Wagon functionalities. To transfer resources to and from Maven repositories, Maven Wagon offers a layer of abstraction over the core transport protocols. Maven Wagon's unified API includes implementations for SEVEN transports. The following picture depicts the architecture of the Maven Wagon: The plugin allows you to use the wagon to upload resources from your build to a remote SITE, get resources from a repository and list the contents of a repository. Finally, it may merge a Maven repository to another in a generic fashion by merging the upload and download capabilities. |
|