Skip to content

Commit 28a9bd9

Browse files
authored
Add Maven dependency for JDK HttpClient; update versions
1 parent 7ed420e commit 28a9bd9

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

articles/java/sdk/http-client-pipeline.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The following example shows you how to exclude the Netty dependency from a real
3636
<dependency>
3737
<groupId>com.azure</groupId>
3838
<artifactId>azure-security-keyvault-secrets</artifactId>
39-
<version>4.2.2.</version>
39+
<version>4.9.4</version>
4040
<exclusions>
4141
<exclusion>
4242
<groupId>com.azure</groupId>
@@ -45,10 +45,18 @@ The following example shows you how to exclude the Netty dependency from a real
4545
</exclusions>
4646
</dependency>
4747

48+
<!-- OkHttp -->
4849
<dependency>
4950
<groupId>com.azure</groupId>
5051
<artifactId>azure-core-http-okhttp</artifactId>
51-
<version>1.3.3</version>
52+
<version>1.12.10</version>
53+
</dependency>
54+
55+
<!-- JDK 11 HttpClient -->
56+
<dependency>
57+
<groupId>com.azure</groupId>
58+
<artifactId>azure-core-http-jdk-httpclient</artifactId>
59+
<version>1.0.3</version>
5260
</dependency>
5361
```
5462

0 commit comments

Comments
 (0)