File tree 1 file changed +2
-0
lines changed
maven-resolver-transport-apache/src/main/java/org/eclipse/aether/transport/apache
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change 54
54
import org .apache .http .client .HttpResponseException ;
55
55
import org .apache .http .client .ServiceUnavailableRetryStrategy ;
56
56
import org .apache .http .client .config .AuthSchemes ;
57
+ import org .apache .http .client .config .CookieSpecs ;
57
58
import org .apache .http .client .config .RequestConfig ;
58
59
import org .apache .http .client .methods .CloseableHttpResponse ;
59
60
import org .apache .http .client .methods .HttpGet ;
@@ -277,6 +278,7 @@ final class ApacheTransporter extends AbstractTransporter implements HttpTranspo
277
278
.setConnectTimeout (connectTimeout )
278
279
.setConnectionRequestTimeout (connectTimeout )
279
280
.setLocalAddress (getHttpLocalAddress (session , repository ))
281
+ .setCookieSpec (CookieSpecs .STANDARD )
280
282
.setSocketTimeout (requestTimeout )
281
283
.build ();
282
284
You can’t perform that action at this time.
0 commit comments