👩‍✈️
Jodd HTTP
  • Jodd HTTP
  • Installation
  • Using the Client
  • Connection
  • HttpSession
  • HttpTunnel
  • FAQ
  • Contact
Powered by GitBook
On this page
Export as PDF

Installation

Tips on how to install Jodd HTTP library in your app

Jodd HTTP is released on Maven Central. You can use the following snippets to add it to your project:

<dependency>
  <groupId>org.jodd</groupId>
  <artifactId>jodd-http</artifactId>
  <version>x.x.x</version>
</dependency>
implementation 'org.jodd:jodd-http:x.x.x'
implementation("org.jodd:jodd-http:x.x.x")
libraryDependencies += "org.jodd" % "jodd-http" % "x.x.x"
<dependency org="org.jodd" name="jodd-http" rev="x.x.x" />
[org.jodd/jodd-http "x.x.x"]
'org.jodd:jodd-http:jar:x.x.x'

That is all!

Snapshots

Jodd HTTP snapshots are published on Maven Central Snapshot repo.

Snapshots are released manually. Feel free to contact me if you need a new SNAPSHOT release sooner.

PreviousJodd HTTPNextUsing the Client

Last updated 2 years ago