File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,29 +21,29 @@ size of the output artifacts.
21
21
22
22
Releases are published to the central repository, snapshots are published to S01 OSS Sonatype.
23
23
24
- ```
24
+ ``` kotlin
25
25
repositories {
26
26
mavenCentral()
27
27
}
28
28
29
29
dependencies {
30
- implementation("com.intellectualsites.http:HTTP4J:1.4" )
30
+ implementation(" com.intellectualsites.http:HTTP4J:VERSION )
31
31
}
32
32
```
33
33
34
- Ensure to relocate HTTP4J using the [ shadow] ( https://github.com/johnrengelman/shadow ) plugin to your classpath.
34
+ Ensure to relocate HTTP4J using the gradle shadow plugin to your classpath.
35
35
36
36
```xml
37
37
<dependency>
38
38
<groupId>com.intellectualsites.http</groupId>
39
39
<artifactId>HTTP4J</artifactId>
40
- <version >1.4 </version >
40
+ <version>VERSION </version>
41
41
</dependency>
42
42
```
43
43
44
44
### Code
45
45
46
- ** JavaDocs:** [ https://javadocs.dev/ com.intellectualsites.http/HTTP4J/ ] ( https://javadocs.dev/ com.intellectualsites.http/HTTP4J/ )
46
+ **JavaDocs:** [https://javadoc.io/doc/ com.intellectualsites.http/HTTP4J](https://javadoc.io/doc/ com.intellectualsites.http/HTTP4J)
47
47
48
48
All requests are done using an instance of `com.intellectualsites.http.HttpClient`:
49
49
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ tasks {
67
67
" implNote:a:Implementation Note:"
68
68
)
69
69
opt.links(" https://javadoc.io/doc/org.jetbrains/annotations/" + libs.annotations.get().versionConstraint.toString())
70
- opt.links(" https://www. javadoc.io/doc/com.google.code.gson/gson/" + libs.gson.get().versionConstraint.toString())
70
+ opt.links(" https://javadoc.io/doc/com.google.code.gson/gson/" + libs.gson.get().versionConstraint.toString())
71
71
opt.noTimestamp()
72
72
}
73
73
You can’t perform that action at this time.
0 commit comments