You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by og...@apache.org on 2008/09/23 02:07:28 UTC

svn commit: r698041 - in /maven/sandbox/trunk/wagon/wagon-mercury: pom.xml src/main/resources/META-INF/plexus/components.xml

Author: ogusakov
Date: Mon Sep 22 17:07:27 2008
New Revision: 698041

URL: http://svn.apache.org/viewvc?rev=698041&view=rev
Log:
updated protocol to http/https/dav instead of mttp/mttps

Modified:
    maven/sandbox/trunk/wagon/wagon-mercury/pom.xml
    maven/sandbox/trunk/wagon/wagon-mercury/src/main/resources/META-INF/plexus/components.xml

Modified: maven/sandbox/trunk/wagon/wagon-mercury/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/wagon/wagon-mercury/pom.xml?rev=698041&r1=698040&r2=698041&view=diff
==============================================================================
--- maven/sandbox/trunk/wagon/wagon-mercury/pom.xml (original)
+++ maven/sandbox/trunk/wagon/wagon-mercury/pom.xml Mon Sep 22 17:07:27 2008
@@ -19,6 +19,9 @@
 
     <nexus-security-enabled>false</nexus-security-enabled>
 
+    <distMgmtSnapshotsName>CI Snapshot Repository</distMgmtSnapshotsName>
+    <distMgmtSnapshotsUrl>http://repository.sonatype.org/content/repositories/maven.snapshots</distMgmtSnapshotsUrl>
+
     <bundle-expanded-dir>target</bundle-expanded-dir>
     <config-expanded-dir>target/test-nexus-config</config-expanded-dir>
 
@@ -40,6 +43,15 @@
     <nexus-control-port>33002</nexus-control-port>
   </properties>
 
+  
+  <distributionManagement>
+    <snapshotRepository>
+      <id>sona-maven-snapshots</id>
+      <name>${distMgmtSnapshotsName}</name>
+      <url>${distMgmtSnapshotsUrl}</url>
+    </snapshotRepository>
+  </distributionManagement>
+
   <build>
 
     <resources>
@@ -97,10 +109,6 @@
         <configuration>
           <source>1.5</source>
           <target>1.5</target>
-          <includes>
-            <include>**/*.java</include>
-            <include>**/*.properties</include>
-          </includes>
         </configuration>
       </plugin>
       
@@ -222,10 +230,12 @@
       
   
   <dependencies>
+    
     <dependency>
       <groupId>org.apache.maven.wagon</groupId>
       <artifactId>wagon-provider-api</artifactId>
     </dependency>
+    
     <dependency>
       <groupId>org.apache.maven.wagon</groupId>
       <artifactId>wagon-provider-test</artifactId>

Modified: maven/sandbox/trunk/wagon/wagon-mercury/src/main/resources/META-INF/plexus/components.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/wagon/wagon-mercury/src/main/resources/META-INF/plexus/components.xml?rev=698041&r1=698040&r2=698041&view=diff
==============================================================================
--- maven/sandbox/trunk/wagon/wagon-mercury/src/main/resources/META-INF/plexus/components.xml (original)
+++ maven/sandbox/trunk/wagon/wagon-mercury/src/main/resources/META-INF/plexus/components.xml Mon Sep 22 17:07:27 2008
@@ -21,13 +21,19 @@
     <components>
       <component>
         <role>org.apache.maven.wagon.Wagon</role>
-        <role-hint>mttp</role-hint>
+        <role-hint>http</role-hint>
         <implementation>org.apache.maven.wagon.mercury.MercuryWagon</implementation>
         <instantiation-strategy>per-lookup</instantiation-strategy>
       </component>
       <component>
         <role>org.apache.maven.wagon.Wagon</role>
-        <role-hint>mttps</role-hint>
+        <role-hint>https</role-hint>
+        <implementation>org.apache.maven.wagon.mercury.MercuryWagon</implementation>
+        <instantiation-strategy>per-lookup</instantiation-strategy>
+      </component>
+      <component>
+        <role>org.apache.maven.wagon.Wagon</role>
+        <role-hint>dav</role-hint>
         <implementation>org.apache.maven.wagon.mercury.MercuryWagon</implementation>
         <instantiation-strategy>per-lookup</instantiation-strategy>
       </component>