I've read the source code of maven-dependency-plugin and there is a component.xml, I know this file is for pluxes container to locate load the plugin, can anybody tell me the detail meaning of component.xml, or give a document about the component.xml tags meaning, thanks!
<component-set> > <components> <!-- UnArchiver --> <component> <role>org.codehaus.plexus.archiver.UnArchiver</role> <role-hint>swc</role-hint> <!-- there is no implementaion of SWCUnArchiver, but ZipUnArchive will do the job --> <implementation>org.codehaus.plexus.archiver.zip.ZipUnArchiver</implementation> <instantiation-strategy>per-lookup</instantiation-strategy> </component> </components> </component-set>
