fix toString and upgrade httpclient version

This commit is contained in:
Olivier Lamy 2015-01-16 14:57:28 +11:00
parent b141b830d7
commit 66a67966e6
3 changed files with 14 additions and 3 deletions

View File

@ -153,4 +153,15 @@ public class WagonFactoryRequest
result = 31 * result + ( userAgent != null ? userAgent.hashCode() : 0 );
return result;
}
@Override
public String toString()
{
return "WagonFactoryRequest{" +
"protocol='" + protocol + '\'' +
", headers=" + headers +
", userAgent='" + userAgent + '\'' +
", networkProxy=" + networkProxy +
'}';
}
}

View File

@ -189,7 +189,7 @@ public class NetworkProxy
sb.append( ", host='" ).append( host ).append( '\'' );
sb.append( ", port=" ).append( port );
sb.append( ", username='" ).append( username ).append( '\'' );
sb.append( ", password='" ).append( password ).append( '\'' );
//sb.append( ", password='" ).append( password ).append( '\'' );
sb.append( ", useNtlm=" ).append( useNtlm );
sb.append( '}' );
return sb.toString();

View File

@ -87,8 +87,8 @@
<cxfVersion>2.6.15</cxfVersion>
<derbyVersion>10.10.1.1</derbyVersion>
<httpclient.version>4.3.5</httpclient.version>
<httpclient.core.version>4.3.2</httpclient.core.version>
<httpclient.version>4.3.6</httpclient.version>
<httpclient.core.version>4.4</httpclient.core.version>
<javaxMailVersion>1.4</javaxMailVersion>
<jettyVersion>8.1.14.v20131031</jettyVersion>
<guava.version>16.0.1</guava.version>