Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ include the core API directly and create your own instance of HypixelHTTPClient.

The Hypixel API Core implementation has the following dependencies:

* [Google Gson library - 2.8.6](https://mvnrepository.com/artifact/com.google.code.gson/gson)
* [Google Gson library - 2.9.0](https://mvnrepository.com/artifact/com.google.code.gson/gson)

Transports will also have dependencies where required.

Expand Down
4 changes: 2 additions & 2 deletions hypixel-api-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand All @@ -31,7 +31,7 @@
<dependency>
<groupId>com.konghq</groupId>
<artifactId>unirest-java</artifactId>
<version>3.11.11</version>
<version>3.13.6</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion hypixel-api-transport-apache/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ public class Main {

This transport depends on the following:

* [Google Gson library - 2.8.6](https://mvnrepository.com/artifact/com.google.code.gson/gson) (for hypixel-api-core)
* [Google Gson library - 2.9.0](https://mvnrepository.com/artifact/com.google.code.gson/gson) (for hypixel-api-core)
* [Apache HttpClient - 4.5.13](https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient)
2 changes: 1 addition & 1 deletion hypixel-api-transport-reactor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class Main {

This transport depends on the following:

* [Google Gson library - 2.8.6](https://mvnrepository.com/artifact/com.google.code.gson/gson) (for hypixel-api-core)
* [Google Gson library - 2.9.0](https://mvnrepository.com/artifact/com.google.code.gson/gson) (for hypixel-api-core)
* [Reactor Core 3.4.5](https://mvnrepository.com/artifact/io.projectreactor/reactor-core) (for reactor netty)
* Reactor Netty [(project-reactor)](https://projectreactor.io/docs):
* [Netty Core 1.0.6](https://mvnrepository.com/artifact/io.projectreactor.netty/reactor-netty-core)
Expand Down
4 changes: 2 additions & 2 deletions hypixel-api-transport-unirest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ public class Main {

This transport depends on the following:

* [Google Gson library - 2.8.6](https://mvnrepository.com/artifact/com.google.code.gson/gson) (for hypixel-api-core)
* [Unirest Java - 3.11.11](https://mvnrepository.com/artifact/com.konghq/unirest-java)
* [Google Gson library - 2.9.0](https://mvnrepository.com/artifact/com.google.code.gson/gson) (for hypixel-api-core)
* [Unirest Java - 3.13.6](https://mvnrepository.com/artifact/com.konghq/unirest-java)
2 changes: 1 addition & 1 deletion hypixel-api-transport-unirest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>com.konghq</groupId>
<artifactId>unirest-java</artifactId>
<version>3.11.11</version>
<version>3.13.6</version>
</dependency>
</dependencies>

Expand Down