http_client_jetty
http_client.md implementation using the Jetty HTTP Client library.
️⚠️ Warning
WebSockets are not supported on GraalVM native images at the moment.
Install the Dependency
=== "build.gradle"
```groovy
implementation("com.hexagontk.http:http_client_jetty:$hexagonVersion")
```
Content copied to clipboard
=== "pom.xml"
```xml
com.hexagontk.http http_client_jetty $hexagonVersion
```
Content copied to clipboard
For WebSockets support, import also:
=== "build.gradle"
```groovy
implementation("org.eclipse.jetty.websocket:jetty-websocket-jetty-client:$jettyVersion")
```
Content copied to clipboard
=== "pom.xml"
```xml
org.eclipse.jetty.websocket jetty-websocket-jetty-client $jettyVersion
```
Content copied to clipboard