Correct asynchttpclient-scenario case and supported versions. (#68)
This commit is contained in:
parent
b169ef3cdd
commit
bbbdef1805
|
|
@ -27,7 +27,7 @@ metrics based on the tracing data.
|
|||
* [Spring RestTemplete](https://github.com/spring-projects/spring-framework) 4.x
|
||||
* [Jetty Client](http://www.eclipse.org/jetty/) 9
|
||||
* [Apache httpcomponent AsyncClient](https://hc.apache.org/httpcomponents-asyncclient-4.1.x/) 4.x
|
||||
* [AsyncHttpClient](https://github.com/AsyncHttpClient/async-http-client) 2.x
|
||||
* [AsyncHttpClient](https://github.com/AsyncHttpClient/async-http-client) 2.1+
|
||||
* JRE HttpURLConnection (Optional²)
|
||||
* HTTP Gateway
|
||||
* [Spring Cloud Gateway](https://spring.io/projects/spring-cloud-gateway) 2.0.2.RELEASE -> 3.x (Optional²)
|
||||
|
|
|
|||
|
|
@ -31,9 +31,7 @@
|
|||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<compiler.version>1.8</compiler.version>
|
||||
<async-http-client.version>2.10.0</async-http-client.version>
|
||||
<test.framework.version>4.1.2</test.framework.version>
|
||||
<docker.image.version>${test.framework.version}</docker.image.version>
|
||||
<test.framework.version>2.10.0</test.framework.version>
|
||||
<spring-boot.version>1.5.9.RELEASE</spring-boot.version>
|
||||
<lombok.version>1.18.20</lombok.version>
|
||||
<log4j.version>2.8.1</log4j.version>
|
||||
|
|
@ -62,8 +60,7 @@
|
|||
<dependency>
|
||||
<groupId>org.asynchttpclient</groupId>
|
||||
<artifactId>async-http-client</artifactId>
|
||||
<version>${async-http-client.version}</version>
|
||||
<scope>provided</scope>
|
||||
<version>${test.framework.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.logging.log4j</groupId>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
2.0.0
|
||||
2.1.0
|
||||
2.2.0
|
||||
2.3.0
|
||||
|
|
|
|||
Loading…
Reference in New Issue