You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2007/07/17 04:30:56 UTC

svn commit: r556793 - in /maven/plugins/trunk/maven-dependency-plugin/src/main/resources: ./ META-INF/ META-INF/plexus/ META-INF/plexus/components.xml

Author: brianf
Date: Mon Jul 16 19:30:51 2007
New Revision: 556793

URL: http://svn.apache.org/viewvc?view=rev&rev=556793
Log:
MDEP-99: added role hint for swc

Added:
    maven/plugins/trunk/maven-dependency-plugin/src/main/resources/
    maven/plugins/trunk/maven-dependency-plugin/src/main/resources/META-INF/
    maven/plugins/trunk/maven-dependency-plugin/src/main/resources/META-INF/plexus/
    maven/plugins/trunk/maven-dependency-plugin/src/main/resources/META-INF/plexus/components.xml

Added: maven/plugins/trunk/maven-dependency-plugin/src/main/resources/META-INF/plexus/components.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/resources/META-INF/plexus/components.xml?view=auto&rev=556793
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/src/main/resources/META-INF/plexus/components.xml (added)
+++ maven/plugins/trunk/maven-dependency-plugin/src/main/resources/META-INF/plexus/components.xml Mon Jul 16 19:30:51 2007
@@ -0,0 +1,12 @@
+<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>