Skip to content

Commit

Permalink
Update Gson and Unirest dependencies (#521)
Browse files Browse the repository at this point in the history
* Update GSON and Unirest dependencies

* Update versions in README's
  • Loading branch information
ConnorLinfoot authored Mar 2, 2022
1 parent 5ed57ca commit 7a52912
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
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

0 comments on commit 7a52912

Please sign in to comment.