mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Explicitly set gson dependency in common
This commit is contained in:
parent
737df21495
commit
2a2e63e519
2 changed files with 2 additions and 0 deletions
|
@ -28,6 +28,7 @@ object Versions {
|
||||||
const val fastutilVersion = "8.5.2"
|
const val fastutilVersion = "8.5.2"
|
||||||
const val nettyVersion = "4.1.66.Final"
|
const val nettyVersion = "4.1.66.Final"
|
||||||
const val guavaVersion = "29.0-jre"
|
const val guavaVersion = "29.0-jre"
|
||||||
|
const val gsonVersion = "2.3.1" // Provided by Spigot 1.8.8
|
||||||
const val nbtVersion = "2.1.0"
|
const val nbtVersion = "2.1.0"
|
||||||
const val websocketVersion = "1.5.1"
|
const val websocketVersion = "1.5.1"
|
||||||
const val protocolVersion = "0bd459f"
|
const val protocolVersion = "0bd459f"
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api("org.geysermc.cumulus", "cumulus", Versions.cumulusVersion)
|
api("org.geysermc.cumulus", "cumulus", Versions.cumulusVersion)
|
||||||
|
api("com.google.code.gson", "gson", Versions.gsonVersion)
|
||||||
}
|
}
|
Loading…
Reference in a new issue