You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2011/10/31 16:23:23 UTC

svn commit: r1195516 - /maven/sandbox/trunk/wagon/wagon-benchmarks/wagon-benchmarks-http-lightweight/src/main/resources/META-INF/plexus/components.xml

Author: olamy
Date: Mon Oct 31 15:23:22 2011
New Revision: 1195516

URL: http://svn.apache.org/viewvc?rev=1195516&view=rev
Log:
fix component declaration

Modified:
    maven/sandbox/trunk/wagon/wagon-benchmarks/wagon-benchmarks-http-lightweight/src/main/resources/META-INF/plexus/components.xml

Modified: maven/sandbox/trunk/wagon/wagon-benchmarks/wagon-benchmarks-http-lightweight/src/main/resources/META-INF/plexus/components.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/wagon/wagon-benchmarks/wagon-benchmarks-http-lightweight/src/main/resources/META-INF/plexus/components.xml?rev=1195516&r1=1195515&r2=1195516&view=diff
==============================================================================
--- maven/sandbox/trunk/wagon/wagon-benchmarks/wagon-benchmarks-http-lightweight/src/main/resources/META-INF/plexus/components.xml (original)
+++ maven/sandbox/trunk/wagon/wagon-benchmarks/wagon-benchmarks-http-lightweight/src/main/resources/META-INF/plexus/components.xml Mon Oct 31 15:23:22 2011
@@ -23,11 +23,23 @@ under the License.
       <role>org.apache.maven.wagon.providers.http.LightweightHttpWagon</role>
       <implementation>org.apache.maven.wagon.providers.http.LightweightHttpWagon</implementation>
       <instantiation-strategy>per-lookup</instantiation-strategy>
+      <requirements>
+        <requirement>
+          <role>org.apache.maven.wagon.providers.http.LightweightHttpWagonAuthenticator</role>
+          <field-name>authenticator</field-name>
+        </requirement>
+      </requirements>
     </component>
     <component>
       <role>org.apache.maven.wagon.providers.http.LightweightHttpsWagon</role>
       <implementation>org.apache.maven.wagon.providers.http.LightweightHttpsWagon</implementation>
       <instantiation-strategy>per-lookup</instantiation-strategy>
+      <requirements>
+        <requirement>
+          <role>org.apache.maven.wagon.providers.http.LightweightHttpWagonAuthenticator</role>
+          <field-name>authenticator</field-name>
+        </requirement>
+      </requirements>
     </component>
 
   </components>