Skip to content

Commit

Permalink
intuit#74 Async Http Client
Browse files Browse the repository at this point in the history
  • Loading branch information
sbcd90 committed Oct 29, 2019
1 parent a9e3ea4 commit 2d98fb4
Show file tree
Hide file tree
Showing 13 changed files with 887 additions and 0 deletions.
2 changes: 2 additions & 0 deletions agent/http_client_5/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@
</tank-client>
<tank-client name="OkHttp Client 2.5">com.intuit.tank.okhttpclient.TankOkHttpClient
</tank-client>
<tank-client name="Async HttpClient">com.intuit.tank.httpclient6.TankHttpClient6
</tank-client>
</tank-http-clients>
<default-tank-client>Apache HttpClient 3.1</default-tank-client>

Expand Down
39 changes: 39 additions & 0 deletions agent/http_client_6/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>2.3.1</version>
</parent>

<artifactId>http_client_commons_6</artifactId>

<packaging>jar</packaging>
<name>Http Client for commons apache 4.5</name>

<properties>
<netty.version>4.1.42.Final</netty.version>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>api</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>agent-common</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>${netty.version}</version>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit 2d98fb4

Please sign in to comment.