mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
44 lines
1.9 KiB
Kotlin
44 lines
1.9 KiB
Kotlin
|
/*
|
||
|
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
* of this software and associated documentation files (the "Software"), to deal
|
||
|
* in the Software without restriction, including without limitation the rights
|
||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
* copies of the Software, and to permit persons to whom the Software is
|
||
|
* furnished to do so, subject to the following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be included in
|
||
|
* all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
|
* THE SOFTWARE.
|
||
|
*
|
||
|
* @author GeyserMC
|
||
|
* @link https://github.com/GeyserMC/Geyser
|
||
|
*/
|
||
|
|
||
|
object Versions {
|
||
|
const val jacksonVersion= "2.12.4"
|
||
|
const val fastutilVersion= "8.5.2"
|
||
|
const val nettyVersion= "4.1.66.Final"
|
||
|
const val guavaVersion= "29.0-jre"
|
||
|
const val nbtVersion= "2.1.0"
|
||
|
const val websocketVersion= "1.5.1"
|
||
|
const val protocolVersion= "0cd24c0"
|
||
|
const val raknetVersion= "1.6.28-SNAPSHOT"
|
||
|
const val mcauthlibVersion= "6c99331"
|
||
|
const val mcprotocollibversion= "6a23a780"
|
||
|
const val packetlibVersion= "2.1-SNAPSHOT"
|
||
|
const val adventureVersion= "4.9.3"
|
||
|
const val eventVersion= "3.0.0"
|
||
|
const val junitVersion= "4.13.1"
|
||
|
const val checkerQualVersion= "3.19.0"
|
||
|
const val cumulusVersion = "1.0-SNAPSHOT"
|
||
|
const val log4jVersion = "2.17.1"
|
||
|
}
|