Skip to content

Commit a4db8bb

Browse files
committed
Release 1.4
Signed-off-by: Alexander Brandes <[email protected]>
1 parent 8cb304f commit a4db8bb

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ repositories {
2727
}
2828
2929
dependencies {
30-
compileOnly("com.intellectualsites.http:HTTP4J:1.4")
30+
implementation("com.intellectualsites.http:HTTP4J:1.4")
3131
}
3232
```
3333

34+
Ensure to relocate HTTP4J using the [shadow](https://github.com/johnrengelman/shadow) plugin to your classpath.
35+
3436
```xml
3537
<dependency>
3638
<groupId>com.intellectualsites.http</groupId>
@@ -41,7 +43,7 @@ dependencies {
4143

4244
### Code
4345

44-
**JavaDocs:** [https://javadoc.io/doc/com.intellectualsites.http4j/HTTP4J](https://javadoc.io/doc/com.intellectualsites.http4j/HTTP4J)
46+
**JavaDocs:** [https://javadocs.dev/com.intellectualsites.http/HTTP4J/](https://javadoc.io/doc/com.intellectualsites.http4j/HTTP4J)
4547

4648
All requests are done using an instance of `com.intellectualsites.http.HttpClient`:
4749

@@ -98,7 +100,7 @@ By using `onException(exception -> {})` you are able to modify the behaviour.
98100

99101
#### Examples
100102

101-
More examples can be found in [HttpClientTest.java](https://github.com/Incendo/HTTP4J/blob/master/src/test/java/com/intellectualsites/http/HttpClientTest.java)
103+
More examples can be found in [HttpClientTest.java](https://github.com/IntellectualSites/HTTP4J/blob/main/src/test/java/com/intellectualsites/http/HttpClientTest.java)
102104

103105
## Projects using HTTP4J:
104106

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ tasks.compileJava.configure {
3838
}
3939

4040
group = "com.intellectualsites.http"
41-
version = "1.4-SNAPSHOT"
41+
version = "1.4"
4242

4343
java {
4444
withSourcesJar()

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)