File tree Expand file tree Collapse file tree 9 files changed +32
-13
lines changed
src/main/java/net/hypixel/api/http
hypixel-api-transport-apache
hypixel-api-transport-unirest Expand file tree Collapse file tree 9 files changed +32
-13
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,25 @@ Hypixel Public API (Java)
3
3
This is a Java implementation of the Hypixel API. For discussing the API, requesting help or suggestions you can use the
4
4
GitHub [ Discussions] ( https://github.com/HypixelDev/PublicAPI/discussions ) .
5
5
6
+ ## Note:
7
+
8
+ We are currently in the process of merging and prepping to release the Public API 4.0 client. Until then, you should
9
+ continue to use 3.0.0 with the following:
10
+
11
+ ``` xml
12
+
13
+ <repository >
14
+ <id >Hypixel</id >
15
+ <url >https://repo.hypixel.net/repository/Hypixel/</url >
16
+ </repository >
17
+
18
+ <dependency >
19
+ <groupId >net.hypixel</groupId >
20
+ <artifactId >HypixelAPI</artifactId >
21
+ <version >3.0.0</version >
22
+ </dependency >
23
+ ```
24
+
6
25
### Documentation
7
26
8
27
Hypixel Public API documentation can be found at [ https://api.hypixel.net/ ] ( https://api.hypixel.net/ ) . Java
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >net.hypixel</groupId >
8
8
<artifactId >hypixel-api-core</artifactId >
9
- <version >4.0.0 -SNAPSHOT</version >
9
+ <version >4.0-SNAPSHOT</version >
10
10
11
11
<properties >
12
12
<maven .compiler.target>1.8</maven .compiler.target>
Original file line number Diff line number Diff line change 4
4
5
5
public interface HypixelHttpClient {
6
6
7
- String DEFAULT_USER_AGENT = "Hypixel PublicAPI/4.0.0 " ;
7
+ String DEFAULT_USER_AGENT = "Hypixel PublicAPI/4.0" ;
8
8
9
9
CompletableFuture <HypixelHttpResponse > makeRequest (String url );
10
10
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >hypixel-api</artifactId >
7
7
<groupId >net.hypixel</groupId >
8
- <version >4.0.0 -SNAPSHOT</version >
8
+ <version >4.0-SNAPSHOT</version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
32
32
<dependency >
33
33
<groupId >net.hypixel</groupId >
34
34
<artifactId >hypixel-api-transport-apache</artifactId >
35
- <version >4.0.0 -SNAPSHOT</version >
35
+ <version >4.0-SNAPSHOT</version >
36
36
</dependency >
37
37
<dependency >
38
38
<groupId >com.konghq</groupId >
Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ Hypixel Public API - Apache Transport
7
7
<dependency >
8
8
<groupId >net.hypixel</groupId >
9
9
<artifactId >hypixel-api-transport-apache</artifactId >
10
- <version >4.0.0 </version >
10
+ <version >4.0</version >
11
11
</dependency >
12
12
```
13
13
14
14
Can also be included with Gradle.
15
15
16
16
``` gradle
17
17
dependencies {
18
- implementation 'net.hypixel:hypixel-api-transport-apache:4.0.0 '
18
+ implementation 'net.hypixel:hypixel-api-transport-apache:4.0'
19
19
}
20
20
```
21
21
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >hypixel-api</artifactId >
7
7
<groupId >net.hypixel</groupId >
8
- <version >4.0.0 -SNAPSHOT</version >
8
+ <version >4.0-SNAPSHOT</version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
28
28
<dependency >
29
29
<groupId >net.hypixel</groupId >
30
30
<artifactId >hypixel-api-core</artifactId >
31
- <version >4.0.0 -SNAPSHOT</version >
31
+ <version >4.0-SNAPSHOT</version >
32
32
</dependency >
33
33
<dependency >
34
34
<groupId >org.apache.httpcomponents</groupId >
Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ Hypixel Public API - Unirest Transport
7
7
<dependency >
8
8
<groupId >net.hypixel</groupId >
9
9
<artifactId >hypixel-api-transport-unirest</artifactId >
10
- <version >4.0.0 </version >
10
+ <version >4.0</version >
11
11
</dependency >
12
12
```
13
13
14
14
Can also be included with Gradle.
15
15
16
16
``` gradle
17
17
dependencies {
18
- implementation 'net.hypixel:hypixel-api-transport-unirest:4.0.0 '
18
+ implementation 'net.hypixel:hypixel-api-transport-unirest:4.0'
19
19
}
20
20
```
21
21
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >hypixel-api</artifactId >
7
7
<groupId >net.hypixel</groupId >
8
- <version >4.0.0 -SNAPSHOT</version >
8
+ <version >4.0-SNAPSHOT</version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
28
28
<dependency >
29
29
<groupId >net.hypixel</groupId >
30
30
<artifactId >hypixel-api-core</artifactId >
31
- <version >4.0.0 -SNAPSHOT</version >
31
+ <version >4.0-SNAPSHOT</version >
32
32
</dependency >
33
33
<dependency >
34
34
<groupId >com.konghq</groupId >
Original file line number Diff line number Diff line change 7
7
<groupId >net.hypixel</groupId >
8
8
<artifactId >hypixel-api</artifactId >
9
9
<packaging >pom</packaging >
10
- <version >4.0.0 -SNAPSHOT</version >
10
+ <version >4.0-SNAPSHOT</version >
11
11
12
12
<modules >
13
13
<module >hypixel-api-core</module >
You can’t perform that action at this time.
0 commit comments