Skip to content

Commit

Permalink
Release 4.0
Browse files Browse the repository at this point in the history
ConnorLinfoot committed Jul 26, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent fa26cb3 commit 21b016b
Showing 7 changed files with 37 additions and 30 deletions.
19 changes: 0 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -5,25 +5,6 @@ Hypixel Public API (Java)
This is a Java implementation of the Hypixel API. For discussing the API, requesting help or suggestions you can use the
GitHub [Discussions](https://github.com/HypixelDev/PublicAPI/discussions).

## Note:

We are currently in the process of merging and prepping to release the Public API 4.0 client. Until then, you should
continue to use 3.0.0 with the following:

```xml

<repository>
<id>Hypixel</id>
<url>https://repo.hypixel.net/repository/Hypixel/</url>
</repository>

<dependency>
<groupId>net.hypixel</groupId>
<artifactId>HypixelAPI</artifactId>
<version>3.0.0</version>
</dependency>
```

### Documentation

Hypixel Public API documentation can be found at [https://api.hypixel.net/](https://api.hypixel.net/). Java
8 changes: 6 additions & 2 deletions hypixel-api-core/pom.xml
Original file line number Diff line number Diff line change
@@ -2,13 +2,17 @@
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>hypixel-api</artifactId>
<groupId>net.hypixel</groupId>
<version>4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>net.hypixel</groupId>
<artifactId>hypixel-api-core</artifactId>
<version>4.0-SNAPSHOT</version>

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
4 changes: 2 additions & 2 deletions hypixel-api-example/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<parent>
<artifactId>hypixel-api</artifactId>
<groupId>net.hypixel</groupId>
<version>4.0-SNAPSHOT</version>
<version>4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

@@ -32,7 +32,7 @@
<dependency>
<groupId>net.hypixel</groupId>
<artifactId>hypixel-api-transport-apache</artifactId>
<version>4.0-SNAPSHOT</version>
<version>4.0</version>
</dependency>
<dependency>
<groupId>com.konghq</groupId>
10 changes: 8 additions & 2 deletions hypixel-api-transport-apache/pom.xml
Original file line number Diff line number Diff line change
@@ -5,12 +5,18 @@
<parent>
<artifactId>hypixel-api</artifactId>
<groupId>net.hypixel</groupId>
<version>4.0-SNAPSHOT</version>
<version>4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

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

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>

<build>
<plugins>
<plugin>
@@ -28,7 +34,7 @@
<dependency>
<groupId>net.hypixel</groupId>
<artifactId>hypixel-api-core</artifactId>
<version>4.0-SNAPSHOT</version>
<version>4.0</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
10 changes: 8 additions & 2 deletions hypixel-api-transport-reactor/pom.xml
Original file line number Diff line number Diff line change
@@ -5,12 +5,18 @@
<parent>
<artifactId>hypixel-api</artifactId>
<groupId>net.hypixel</groupId>
<version>4.0-SNAPSHOT</version>
<version>4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

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

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>

<build>
<plugins>
<plugin>
@@ -40,7 +46,7 @@
<dependency>
<groupId>net.hypixel</groupId>
<artifactId>hypixel-api-core</artifactId>
<version>4.0-SNAPSHOT</version>
<version>4.0</version>
</dependency>
<dependency>
<groupId>io.projectreactor.netty</groupId>
10 changes: 8 additions & 2 deletions hypixel-api-transport-unirest/pom.xml
Original file line number Diff line number Diff line change
@@ -5,12 +5,18 @@
<parent>
<artifactId>hypixel-api</artifactId>
<groupId>net.hypixel</groupId>
<version>4.0-SNAPSHOT</version>
<version>4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

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

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>

<build>
<plugins>
<plugin>
@@ -28,7 +34,7 @@
<dependency>
<groupId>net.hypixel</groupId>
<artifactId>hypixel-api-core</artifactId>
<version>4.0-SNAPSHOT</version>
<version>4.0</version>
</dependency>
<dependency>
<groupId>com.konghq</groupId>
6 changes: 5 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -7,7 +7,11 @@
<groupId>net.hypixel</groupId>
<artifactId>hypixel-api</artifactId>
<packaging>pom</packaging>
<version>4.0-SNAPSHOT</version>
<version>4.0</version>

<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

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

0 comments on commit 21b016b

Please sign in to comment.