From 65e7c6ca42814157f5b677df3ed8d5e0bdef86ca Mon Sep 17 00:00:00 2001 From: Smirnov Danil Date: Wed, 11 May 2016 19:28:31 +0300 Subject: [PATCH 1/5] Fix https proxy handling --- .../intercept/ConnectSuccessInterceptor.java | 10 ++++++ .../netty/resolver/HostsFileParserTest.java | 2 +- pom.xml | 31 ++++--------------- 3 files changed, 17 insertions(+), 26 deletions(-) diff --git a/client/src/main/java/org/asynchttpclient/netty/handler/intercept/ConnectSuccessInterceptor.java b/client/src/main/java/org/asynchttpclient/netty/handler/intercept/ConnectSuccessInterceptor.java index 8da166e208..051c8f8199 100644 --- a/client/src/main/java/org/asynchttpclient/netty/handler/intercept/ConnectSuccessInterceptor.java +++ b/client/src/main/java/org/asynchttpclient/netty/handler/intercept/ConnectSuccessInterceptor.java @@ -18,6 +18,7 @@ import java.io.IOException; +import org.asynchttpclient.Realm; import org.asynchttpclient.Request; import org.asynchttpclient.RequestBuilder; import org.asynchttpclient.netty.NettyResponseFuture; @@ -28,6 +29,8 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import static org.asynchttpclient.Dsl.realm; + public class ConnectSuccessInterceptor { private static final Logger LOGGER = LoggerFactory.getLogger(ConnectSuccessInterceptor.class); @@ -54,6 +57,13 @@ public boolean exitAfterHandlingConnect(// Uri requestUri = request.getUri(); LOGGER.debug("Connecting to proxy {} for scheme {}", proxyServer, requestUri.getScheme()); + if (future.getProxyRealm() != null && future.getProxyRealm().getScheme() == Realm.AuthScheme.BASIC) { + Realm newBasicRealm = realm(future.getProxyRealm()) + .setUsePreemptiveAuth(false) + .build(); + future.setProxyRealm(newBasicRealm); + } + channelManager.upgradeProtocol(channel.pipeline(), requestUri); future.setReuseChannel(true); future.setConnectAllowed(false); diff --git a/netty-bp/resolver/src/test/java/io/netty/resolver/HostsFileParserTest.java b/netty-bp/resolver/src/test/java/io/netty/resolver/HostsFileParserTest.java index dfa7a495e5..bc059107b9 100644 --- a/netty-bp/resolver/src/test/java/io/netty/resolver/HostsFileParserTest.java +++ b/netty-bp/resolver/src/test/java/io/netty/resolver/HostsFileParserTest.java @@ -44,7 +44,7 @@ public void testParse() throws IOException { Map entries = HostsFileParser.parse(new BufferedReader(new StringReader(hostsString))); - assertEquals("Expected 6 entries", 6, entries.size()); + assertEquals("Expected 7 entries", 7, entries.size()); assertEquals("127.0.0.1", entries.get("host1").getHostAddress()); assertEquals("192.168.0.1", entries.get("host2").getHostAddress()); assertEquals("192.168.0.2", entries.get("host3").getHostAddress()); diff --git a/pom.xml b/pom.xml index 9e6c6f6ded..754ce9c016 100644 --- a/pom.xml +++ b/pom.xml @@ -1,9 +1,9 @@ - org.sonatype.oss - oss-parent - 9 + ru.headhunter.commons + common-pom + 1.25 4.0.0 org.asynchttpclient @@ -18,9 +18,9 @@ http://github.com/AsyncHttpClient/async-http-client - https://github.com/AsyncHttpClient/async-http-client - scm:git:git@github.com:AsyncHttpClient/async-http-client.git - scm:git:git@github.com:AsyncHttpClient/async-http-client.git + https://github.com/Aulust/async-http-client + scm:git:git@github.com:Aulust/async-http-client.git + scm:git:git@github.com:Aulust/async-http-client.git jira @@ -214,25 +214,6 @@ - - - sonatype-nexus-staging - Sonatype Release - http://oss.sonatype.org/service/local/staging/deploy/maven2 - - - - sonatype-nexus-snapshots - sonatype-nexus-snapshots - ${distMgmtSnapshotsUrl} - - - - - maven.java.net - https://maven.java.net/content/repositories/releases - - netty-bp client From 648c9aeb776475bf4ac85efa18b0b63f22c7ac14 Mon Sep 17 00:00:00 2001 From: Smirnov Danil Date: Wed, 11 May 2016 19:35:27 +0300 Subject: [PATCH 2/5] [maven-release-plugin] prepare release async-http-client-project-2.0.3-HH1 --- client/pom.xml | 2 +- extras/guava/pom.xml | 2 +- extras/jdeferred/pom.xml | 2 +- extras/pom.xml | 2 +- extras/registry/pom.xml | 2 +- extras/rxjava/pom.xml | 2 +- extras/simple/pom.xml | 2 +- netty-bp/codec-dns/pom.xml | 2 +- netty-bp/pom.xml | 2 +- netty-bp/resolver-dns/pom.xml | 2 +- netty-bp/resolver/pom.xml | 2 +- pom.xml | 5 +++-- 12 files changed, 14 insertions(+), 13 deletions(-) diff --git a/client/pom.xml b/client/pom.xml index 331f9a7387..35f984f6fb 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-SNAPSHOT + 2.0.3-HH1 4.0.0 async-http-client diff --git a/extras/guava/pom.xml b/extras/guava/pom.xml index c9a623458f..ba33af77e0 100644 --- a/extras/guava/pom.xml +++ b/extras/guava/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-extras-parent - 2.0.3-SNAPSHOT + 2.0.3-HH1 4.0.0 async-http-client-extras-guava diff --git a/extras/jdeferred/pom.xml b/extras/jdeferred/pom.xml index de2940e411..c6290025a6 100644 --- a/extras/jdeferred/pom.xml +++ b/extras/jdeferred/pom.xml @@ -18,7 +18,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-SNAPSHOT + 2.0.3-HH1 async-http-client-extras-jdeferred Asynchronous Http Client JDeferred Extras diff --git a/extras/pom.xml b/extras/pom.xml index b6010479c5..b13ed22c35 100644 --- a/extras/pom.xml +++ b/extras/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-SNAPSHOT + 2.0.3-HH1 4.0.0 async-http-client-extras-parent diff --git a/extras/registry/pom.xml b/extras/registry/pom.xml index feccfef7cb..ea35b82ce2 100644 --- a/extras/registry/pom.xml +++ b/extras/registry/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-extras-parent - 2.0.3-SNAPSHOT + 2.0.3-HH1 4.0.0 async-http-client-extras-registry diff --git a/extras/rxjava/pom.xml b/extras/rxjava/pom.xml index 41eda1bc66..9bf2ad56d2 100644 --- a/extras/rxjava/pom.xml +++ b/extras/rxjava/pom.xml @@ -3,7 +3,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-SNAPSHOT + 2.0.3-HH1 async-http-client-extras-rxjava Asynchronous Http Client RxJava Extras diff --git a/extras/simple/pom.xml b/extras/simple/pom.xml index dbf5b1513c..f82a0bf572 100644 --- a/extras/simple/pom.xml +++ b/extras/simple/pom.xml @@ -3,7 +3,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-SNAPSHOT + 2.0.3-HH1 async-http-client-extras-simple Asynchronous Http Simple Client diff --git a/netty-bp/codec-dns/pom.xml b/netty-bp/codec-dns/pom.xml index 996f355de8..c7fe3e90ff 100644 --- a/netty-bp/codec-dns/pom.xml +++ b/netty-bp/codec-dns/pom.xml @@ -20,7 +20,7 @@ org.asynchttpclient netty-bp - 2.0.3-SNAPSHOT + 2.0.3-HH1 netty-codec-dns diff --git a/netty-bp/pom.xml b/netty-bp/pom.xml index ad585866ff..f23bfb9e5a 100644 --- a/netty-bp/pom.xml +++ b/netty-bp/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-SNAPSHOT + 2.0.3-HH1 4.0.0 netty-bp diff --git a/netty-bp/resolver-dns/pom.xml b/netty-bp/resolver-dns/pom.xml index 3b80289e5c..be6fa1ee75 100644 --- a/netty-bp/resolver-dns/pom.xml +++ b/netty-bp/resolver-dns/pom.xml @@ -9,7 +9,7 @@ org.asynchttpclient netty-bp - 2.0.3-SNAPSHOT + 2.0.3-HH1 netty-resolver-dns diff --git a/netty-bp/resolver/pom.xml b/netty-bp/resolver/pom.xml index 85c8396306..d8881144f5 100644 --- a/netty-bp/resolver/pom.xml +++ b/netty-bp/resolver/pom.xml @@ -20,7 +20,7 @@ org.asynchttpclient netty-bp - 2.0.3-SNAPSHOT + 2.0.3-HH1 netty-resolver diff --git a/pom.xml b/pom.xml index 754ce9c016..65200c577e 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ org.asynchttpclient async-http-client-project Asynchronous Http Client Project - 2.0.3-SNAPSHOT + 2.0.3-HH1 pom The Async Http Client (AHC) library's purpose is to allow Java @@ -21,7 +21,8 @@ https://github.com/Aulust/async-http-client scm:git:git@github.com:Aulust/async-http-client.git scm:git:git@github.com:Aulust/async-http-client.git - + async-http-client-project-2.0.3-HH1 + jira https://issues.sonatype.org/browse/AHC From 6372503a5da795b3a6c8f120d6b8f144edeba0ad Mon Sep 17 00:00:00 2001 From: Smirnov Danil Date: Wed, 11 May 2016 19:36:15 +0300 Subject: [PATCH 3/5] [maven-release-plugin] prepare for next development iteration --- client/pom.xml | 2 +- extras/guava/pom.xml | 2 +- extras/jdeferred/pom.xml | 2 +- extras/pom.xml | 2 +- extras/registry/pom.xml | 2 +- extras/rxjava/pom.xml | 2 +- extras/simple/pom.xml | 2 +- netty-bp/codec-dns/pom.xml | 2 +- netty-bp/pom.xml | 2 +- netty-bp/resolver-dns/pom.xml | 2 +- netty-bp/resolver/pom.xml | 2 +- pom.xml | 4 ++-- 12 files changed, 13 insertions(+), 13 deletions(-) diff --git a/client/pom.xml b/client/pom.xml index 35f984f6fb..32a76c0144 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT 4.0.0 async-http-client diff --git a/extras/guava/pom.xml b/extras/guava/pom.xml index ba33af77e0..ba54972a74 100644 --- a/extras/guava/pom.xml +++ b/extras/guava/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-extras-parent - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT 4.0.0 async-http-client-extras-guava diff --git a/extras/jdeferred/pom.xml b/extras/jdeferred/pom.xml index c6290025a6..182b34b8a5 100644 --- a/extras/jdeferred/pom.xml +++ b/extras/jdeferred/pom.xml @@ -18,7 +18,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT async-http-client-extras-jdeferred Asynchronous Http Client JDeferred Extras diff --git a/extras/pom.xml b/extras/pom.xml index b13ed22c35..8046d8051f 100644 --- a/extras/pom.xml +++ b/extras/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT 4.0.0 async-http-client-extras-parent diff --git a/extras/registry/pom.xml b/extras/registry/pom.xml index ea35b82ce2..961013d759 100644 --- a/extras/registry/pom.xml +++ b/extras/registry/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-extras-parent - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT 4.0.0 async-http-client-extras-registry diff --git a/extras/rxjava/pom.xml b/extras/rxjava/pom.xml index 9bf2ad56d2..31b50034a2 100644 --- a/extras/rxjava/pom.xml +++ b/extras/rxjava/pom.xml @@ -3,7 +3,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT async-http-client-extras-rxjava Asynchronous Http Client RxJava Extras diff --git a/extras/simple/pom.xml b/extras/simple/pom.xml index f82a0bf572..92935697e2 100644 --- a/extras/simple/pom.xml +++ b/extras/simple/pom.xml @@ -3,7 +3,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT async-http-client-extras-simple Asynchronous Http Simple Client diff --git a/netty-bp/codec-dns/pom.xml b/netty-bp/codec-dns/pom.xml index c7fe3e90ff..53108eb523 100644 --- a/netty-bp/codec-dns/pom.xml +++ b/netty-bp/codec-dns/pom.xml @@ -20,7 +20,7 @@ org.asynchttpclient netty-bp - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT netty-codec-dns diff --git a/netty-bp/pom.xml b/netty-bp/pom.xml index f23bfb9e5a..705323191a 100644 --- a/netty-bp/pom.xml +++ b/netty-bp/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT 4.0.0 netty-bp diff --git a/netty-bp/resolver-dns/pom.xml b/netty-bp/resolver-dns/pom.xml index be6fa1ee75..e31e988346 100644 --- a/netty-bp/resolver-dns/pom.xml +++ b/netty-bp/resolver-dns/pom.xml @@ -9,7 +9,7 @@ org.asynchttpclient netty-bp - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT netty-resolver-dns diff --git a/netty-bp/resolver/pom.xml b/netty-bp/resolver/pom.xml index d8881144f5..5bfb5889aa 100644 --- a/netty-bp/resolver/pom.xml +++ b/netty-bp/resolver/pom.xml @@ -20,7 +20,7 @@ org.asynchttpclient netty-bp - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT netty-resolver diff --git a/pom.xml b/pom.xml index 65200c577e..23bc9b2b36 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ org.asynchttpclient async-http-client-project Asynchronous Http Client Project - 2.0.3-HH1 + 2.0.3-HH2-SNAPSHOT pom The Async Http Client (AHC) library's purpose is to allow Java @@ -21,7 +21,7 @@ https://github.com/Aulust/async-http-client scm:git:git@github.com:Aulust/async-http-client.git scm:git:git@github.com:Aulust/async-http-client.git - async-http-client-project-2.0.3-HH1 + HEAD jira From a06d56940e940357e49a874e97cb9d731a33fca3 Mon Sep 17 00:00:00 2001 From: Smirnov Danil Date: Wed, 11 May 2016 20:46:13 +0300 Subject: [PATCH 4/5] [maven-release-plugin] prepare release async-http-client-project-2.0.3-HH2 --- client/pom.xml | 2 +- extras/guava/pom.xml | 2 +- extras/jdeferred/pom.xml | 2 +- extras/pom.xml | 2 +- extras/registry/pom.xml | 2 +- extras/rxjava/pom.xml | 2 +- extras/simple/pom.xml | 2 +- netty-bp/codec-dns/pom.xml | 2 +- netty-bp/pom.xml | 2 +- netty-bp/resolver-dns/pom.xml | 2 +- netty-bp/resolver/pom.xml | 2 +- pom.xml | 4 ++-- 12 files changed, 13 insertions(+), 13 deletions(-) diff --git a/client/pom.xml b/client/pom.xml index 32a76c0144..da30396581 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 4.0.0 async-http-client diff --git a/extras/guava/pom.xml b/extras/guava/pom.xml index ba54972a74..c9da29b563 100644 --- a/extras/guava/pom.xml +++ b/extras/guava/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-extras-parent - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 4.0.0 async-http-client-extras-guava diff --git a/extras/jdeferred/pom.xml b/extras/jdeferred/pom.xml index 182b34b8a5..2fab79597c 100644 --- a/extras/jdeferred/pom.xml +++ b/extras/jdeferred/pom.xml @@ -18,7 +18,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 async-http-client-extras-jdeferred Asynchronous Http Client JDeferred Extras diff --git a/extras/pom.xml b/extras/pom.xml index 8046d8051f..02259c27d6 100644 --- a/extras/pom.xml +++ b/extras/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 4.0.0 async-http-client-extras-parent diff --git a/extras/registry/pom.xml b/extras/registry/pom.xml index 961013d759..e5ead83319 100644 --- a/extras/registry/pom.xml +++ b/extras/registry/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-extras-parent - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 4.0.0 async-http-client-extras-registry diff --git a/extras/rxjava/pom.xml b/extras/rxjava/pom.xml index 31b50034a2..98ee63e280 100644 --- a/extras/rxjava/pom.xml +++ b/extras/rxjava/pom.xml @@ -3,7 +3,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 async-http-client-extras-rxjava Asynchronous Http Client RxJava Extras diff --git a/extras/simple/pom.xml b/extras/simple/pom.xml index 92935697e2..952436603d 100644 --- a/extras/simple/pom.xml +++ b/extras/simple/pom.xml @@ -3,7 +3,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 async-http-client-extras-simple Asynchronous Http Simple Client diff --git a/netty-bp/codec-dns/pom.xml b/netty-bp/codec-dns/pom.xml index 53108eb523..ef8d6b8e58 100644 --- a/netty-bp/codec-dns/pom.xml +++ b/netty-bp/codec-dns/pom.xml @@ -20,7 +20,7 @@ org.asynchttpclient netty-bp - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 netty-codec-dns diff --git a/netty-bp/pom.xml b/netty-bp/pom.xml index 705323191a..4dc8be18e2 100644 --- a/netty-bp/pom.xml +++ b/netty-bp/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 4.0.0 netty-bp diff --git a/netty-bp/resolver-dns/pom.xml b/netty-bp/resolver-dns/pom.xml index e31e988346..df29070791 100644 --- a/netty-bp/resolver-dns/pom.xml +++ b/netty-bp/resolver-dns/pom.xml @@ -9,7 +9,7 @@ org.asynchttpclient netty-bp - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 netty-resolver-dns diff --git a/netty-bp/resolver/pom.xml b/netty-bp/resolver/pom.xml index 5bfb5889aa..d52b8a9f46 100644 --- a/netty-bp/resolver/pom.xml +++ b/netty-bp/resolver/pom.xml @@ -20,7 +20,7 @@ org.asynchttpclient netty-bp - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 netty-resolver diff --git a/pom.xml b/pom.xml index 23bc9b2b36..e7b50b2daf 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ org.asynchttpclient async-http-client-project Asynchronous Http Client Project - 2.0.3-HH2-SNAPSHOT + 2.0.3-HH2 pom The Async Http Client (AHC) library's purpose is to allow Java @@ -21,7 +21,7 @@ https://github.com/Aulust/async-http-client scm:git:git@github.com:Aulust/async-http-client.git scm:git:git@github.com:Aulust/async-http-client.git - HEAD + async-http-client-project-2.0.3-HH2 jira From f71913402320dd3e2b153d4c1864f4586fcb5f17 Mon Sep 17 00:00:00 2001 From: Smirnov Danil Date: Wed, 11 May 2016 20:46:19 +0300 Subject: [PATCH 5/5] [maven-release-plugin] prepare for next development iteration --- client/pom.xml | 2 +- extras/guava/pom.xml | 2 +- extras/jdeferred/pom.xml | 2 +- extras/pom.xml | 2 +- extras/registry/pom.xml | 2 +- extras/rxjava/pom.xml | 2 +- extras/simple/pom.xml | 2 +- netty-bp/codec-dns/pom.xml | 2 +- netty-bp/pom.xml | 2 +- netty-bp/resolver-dns/pom.xml | 2 +- netty-bp/resolver/pom.xml | 2 +- pom.xml | 4 ++-- 12 files changed, 13 insertions(+), 13 deletions(-) diff --git a/client/pom.xml b/client/pom.xml index da30396581..d14e8315f1 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT 4.0.0 async-http-client diff --git a/extras/guava/pom.xml b/extras/guava/pom.xml index c9da29b563..18b15db7fe 100644 --- a/extras/guava/pom.xml +++ b/extras/guava/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-extras-parent - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT 4.0.0 async-http-client-extras-guava diff --git a/extras/jdeferred/pom.xml b/extras/jdeferred/pom.xml index 2fab79597c..6f299af7e1 100644 --- a/extras/jdeferred/pom.xml +++ b/extras/jdeferred/pom.xml @@ -18,7 +18,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT async-http-client-extras-jdeferred Asynchronous Http Client JDeferred Extras diff --git a/extras/pom.xml b/extras/pom.xml index 02259c27d6..e0bb800728 100644 --- a/extras/pom.xml +++ b/extras/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT 4.0.0 async-http-client-extras-parent diff --git a/extras/registry/pom.xml b/extras/registry/pom.xml index e5ead83319..57b72e1bc5 100644 --- a/extras/registry/pom.xml +++ b/extras/registry/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-extras-parent - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT 4.0.0 async-http-client-extras-registry diff --git a/extras/rxjava/pom.xml b/extras/rxjava/pom.xml index 98ee63e280..2a845feb32 100644 --- a/extras/rxjava/pom.xml +++ b/extras/rxjava/pom.xml @@ -3,7 +3,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT async-http-client-extras-rxjava Asynchronous Http Client RxJava Extras diff --git a/extras/simple/pom.xml b/extras/simple/pom.xml index 952436603d..d1b141be6b 100644 --- a/extras/simple/pom.xml +++ b/extras/simple/pom.xml @@ -3,7 +3,7 @@ async-http-client-extras-parent org.asynchttpclient - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT async-http-client-extras-simple Asynchronous Http Simple Client diff --git a/netty-bp/codec-dns/pom.xml b/netty-bp/codec-dns/pom.xml index ef8d6b8e58..f3eaa30758 100644 --- a/netty-bp/codec-dns/pom.xml +++ b/netty-bp/codec-dns/pom.xml @@ -20,7 +20,7 @@ org.asynchttpclient netty-bp - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT netty-codec-dns diff --git a/netty-bp/pom.xml b/netty-bp/pom.xml index 4dc8be18e2..eee35a09e3 100644 --- a/netty-bp/pom.xml +++ b/netty-bp/pom.xml @@ -2,7 +2,7 @@ org.asynchttpclient async-http-client-project - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT 4.0.0 netty-bp diff --git a/netty-bp/resolver-dns/pom.xml b/netty-bp/resolver-dns/pom.xml index df29070791..a5f4f0dafe 100644 --- a/netty-bp/resolver-dns/pom.xml +++ b/netty-bp/resolver-dns/pom.xml @@ -9,7 +9,7 @@ org.asynchttpclient netty-bp - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT netty-resolver-dns diff --git a/netty-bp/resolver/pom.xml b/netty-bp/resolver/pom.xml index d52b8a9f46..0531a3c580 100644 --- a/netty-bp/resolver/pom.xml +++ b/netty-bp/resolver/pom.xml @@ -20,7 +20,7 @@ org.asynchttpclient netty-bp - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT netty-resolver diff --git a/pom.xml b/pom.xml index e7b50b2daf..a4e774b55e 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ org.asynchttpclient async-http-client-project Asynchronous Http Client Project - 2.0.3-HH2 + 2.0.3-HH3-SNAPSHOT pom The Async Http Client (AHC) library's purpose is to allow Java @@ -21,7 +21,7 @@ https://github.com/Aulust/async-http-client scm:git:git@github.com:Aulust/async-http-client.git scm:git:git@github.com:Aulust/async-http-client.git - async-http-client-project-2.0.3-HH2 + HEAD jira