Skip to content

Commit 21b016b

Browse files
committed
Release 4.0
1 parent fa26cb3 commit 21b016b

File tree

7 files changed

+37
-30
lines changed

7 files changed

+37
-30
lines changed

README.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,6 @@ Hypixel Public API (Java)
55
This is a Java implementation of the Hypixel API. For discussing the API, requesting help or suggestions you can use the
66
GitHub [Discussions](https://github.com/HypixelDev/PublicAPI/discussions).
77

8-
## Note:
9-
10-
We are currently in the process of merging and prepping to release the Public API 4.0 client. Until then, you should
11-
continue to use 3.0.0 with the following:
12-
13-
```xml
14-
15-
<repository>
16-
<id>Hypixel</id>
17-
<url>https://repo.hypixel.net/repository/Hypixel/</url>
18-
</repository>
19-
20-
<dependency>
21-
<groupId>net.hypixel</groupId>
22-
<artifactId>HypixelAPI</artifactId>
23-
<version>3.0.0</version>
24-
</dependency>
25-
```
26-
278
### Documentation
289

2910
Hypixel Public API documentation can be found at [https://api.hypixel.net/](https://api.hypixel.net/). Java

hypixel-api-core/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,17 @@
22
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xmlns="http://maven.apache.org/POM/4.0.0"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>hypixel-api</artifactId>
7+
<groupId>net.hypixel</groupId>
8+
<version>4.0</version>
9+
</parent>
510
<modelVersion>4.0.0</modelVersion>
611

7-
<groupId>net.hypixel</groupId>
812
<artifactId>hypixel-api-core</artifactId>
9-
<version>4.0-SNAPSHOT</version>
1013

1114
<properties>
15+
<maven.deploy.skip>false</maven.deploy.skip>
1216
<maven.compiler.target>1.8</maven.compiler.target>
1317
<maven.compiler.source>1.8</maven.compiler.source>
1418
</properties>

hypixel-api-example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hypixel-api</artifactId>
77
<groupId>net.hypixel</groupId>
8-
<version>4.0-SNAPSHOT</version>
8+
<version>4.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>net.hypixel</groupId>
3434
<artifactId>hypixel-api-transport-apache</artifactId>
35-
<version>4.0-SNAPSHOT</version>
35+
<version>4.0</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>com.konghq</groupId>

hypixel-api-transport-apache/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@
55
<parent>
66
<artifactId>hypixel-api</artifactId>
77
<groupId>net.hypixel</groupId>
8-
<version>4.0-SNAPSHOT</version>
8+
<version>4.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>hypixel-api-transport-apache</artifactId>
1313

14+
<properties>
15+
<maven.deploy.skip>false</maven.deploy.skip>
16+
<maven.compiler.target>1.8</maven.compiler.target>
17+
<maven.compiler.source>1.8</maven.compiler.source>
18+
</properties>
19+
1420
<build>
1521
<plugins>
1622
<plugin>
@@ -28,7 +34,7 @@
2834
<dependency>
2935
<groupId>net.hypixel</groupId>
3036
<artifactId>hypixel-api-core</artifactId>
31-
<version>4.0-SNAPSHOT</version>
37+
<version>4.0</version>
3238
</dependency>
3339
<dependency>
3440
<groupId>org.apache.httpcomponents</groupId>

hypixel-api-transport-reactor/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@
55
<parent>
66
<artifactId>hypixel-api</artifactId>
77
<groupId>net.hypixel</groupId>
8-
<version>4.0-SNAPSHOT</version>
8+
<version>4.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>hypixel-api-transport-reactor</artifactId>
1313

14+
<properties>
15+
<maven.deploy.skip>false</maven.deploy.skip>
16+
<maven.compiler.target>1.8</maven.compiler.target>
17+
<maven.compiler.source>1.8</maven.compiler.source>
18+
</properties>
19+
1420
<build>
1521
<plugins>
1622
<plugin>
@@ -40,7 +46,7 @@
4046
<dependency>
4147
<groupId>net.hypixel</groupId>
4248
<artifactId>hypixel-api-core</artifactId>
43-
<version>4.0-SNAPSHOT</version>
49+
<version>4.0</version>
4450
</dependency>
4551
<dependency>
4652
<groupId>io.projectreactor.netty</groupId>

hypixel-api-transport-unirest/pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@
55
<parent>
66
<artifactId>hypixel-api</artifactId>
77
<groupId>net.hypixel</groupId>
8-
<version>4.0-SNAPSHOT</version>
8+
<version>4.0</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>hypixel-api-transport-unirest</artifactId>
1313

14+
<properties>
15+
<maven.deploy.skip>false</maven.deploy.skip>
16+
<maven.compiler.target>1.8</maven.compiler.target>
17+
<maven.compiler.source>1.8</maven.compiler.source>
18+
</properties>
19+
1420
<build>
1521
<plugins>
1622
<plugin>
@@ -28,7 +34,7 @@
2834
<dependency>
2935
<groupId>net.hypixel</groupId>
3036
<artifactId>hypixel-api-core</artifactId>
31-
<version>4.0-SNAPSHOT</version>
37+
<version>4.0</version>
3238
</dependency>
3339
<dependency>
3440
<groupId>com.konghq</groupId>

pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@
77
<groupId>net.hypixel</groupId>
88
<artifactId>hypixel-api</artifactId>
99
<packaging>pom</packaging>
10-
<version>4.0-SNAPSHOT</version>
10+
<version>4.0</version>
11+
12+
<properties>
13+
<maven.deploy.skip>true</maven.deploy.skip>
14+
</properties>
1115

1216
<modules>
1317
<module>hypixel-api-core</module>

0 commit comments

Comments
 (0)