summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrett Porter <brett@apache.org>2009-02-25 00:11:47 +0000
committerBrett Porter <brett@apache.org>2009-02-25 00:11:47 +0000
commit12c36ed34725d658b4e38fd9104b583af3a5b320 (patch)
tree5acf7130f014607c6dc684bd4748559920e66ec0
parentae1a9ea059f60b1308c10b2ce913b1e5196ebb75 (diff)
downloadarchiva-12c36ed34725d658b4e38fd9104b583af3a5b320.tar.gz
archiva-12c36ed34725d658b4e38fd9104b583af3a5b320.zip
[MRM-1098] upgrade to wagon 1.0-beta-5 and remove workaround that was needed previously
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@747621 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--archiva-modules/archiva-base/archiva-proxy/src/main/java/org/apache/maven/archiva/proxy/DefaultRepositoryProxyConnectors.java31
-rw-r--r--pom.xml2
2 files changed, 1 insertions, 32 deletions
diff --git a/archiva-modules/archiva-base/archiva-proxy/src/main/java/org/apache/maven/archiva/proxy/DefaultRepositoryProxyConnectors.java b/archiva-modules/archiva-base/archiva-proxy/src/main/java/org/apache/maven/archiva/proxy/DefaultRepositoryProxyConnectors.java
index a6324d383..0fdf4814f 100644
--- a/archiva-modules/archiva-base/archiva-proxy/src/main/java/org/apache/maven/archiva/proxy/DefaultRepositoryProxyConnectors.java
+++ b/archiva-modules/archiva-base/archiva-proxy/src/main/java/org/apache/maven/archiva/proxy/DefaultRepositoryProxyConnectors.java
@@ -497,11 +497,6 @@ public class DefaultRepositoryProxyConnectors
return null;
}
- // MRM-631 - the lightweight wagon does not reset these - remove if we switch to httpclient based wagon
- String previousHttpProxyHost = System.getProperty( "http.proxyHost" );
- String previousHttpProxyPort = System.getProperty( "http.proxyPort" );
- String previousProxyExclusions = System.getProperty( "http.nonProxyHosts" );
-
File tmpMd5 = null;
File tmpSha1 = null;
File tmpResource = null;
@@ -550,32 +545,6 @@ public class DefaultRepositoryProxyConnectors
try
{
wagon.disconnect();
-
- // MRM-631 - the lightweight wagon does not reset these - remove if we switch to httpclient based wagon
- if ( previousHttpProxyHost != null )
- {
- System.setProperty( "http.proxyHost", previousHttpProxyHost );
- }
- else
- {
- System.getProperties().remove( "http.proxyHost" );
- }
- if ( previousHttpProxyPort != null )
- {
- System.setProperty( "http.proxyPort", previousHttpProxyPort );
- }
- else
- {
- System.getProperties().remove( "http.proxyPort" );
- }
- if ( previousProxyExclusions != null )
- {
- System.setProperty( "http.nonProxyHosts", previousProxyExclusions );
- }
- else
- {
- System.getProperties().remove( "http.nonProxyHosts" );
- }
}
catch ( ConnectionException e )
{
diff --git a/pom.xml b/pom.xml
index 856d1b197..17d742fa5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1093,7 +1093,7 @@
</dependencyManagement>
<properties>
<maven.version>2.0.8</maven.version>
- <wagon.version>1.0-beta-4</wagon.version>
+ <wagon.version>1.0-beta-5</wagon.version>
<redback.version>1.2-SNAPSHOT</redback.version>
<jetty.version>6.1.6</jetty.version>
<binder.version>0.9</binder.version>