mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-11-14 19:34:58 -05:00
31 lines
631 B
Text
31 lines
631 B
Text
|
plugins {
|
||
|
id("mcprotocollib.publish-conventions")
|
||
|
}
|
||
|
|
||
|
version = "1.20.4-2-SNAPSHOT"
|
||
|
description = "MCProtocolLib is a simple library for communicating with Minecraft clients and servers."
|
||
|
|
||
|
dependencies {
|
||
|
// Minecraft related libraries
|
||
|
api(libs.opennbt)
|
||
|
api(libs.mcauthlib)
|
||
|
|
||
|
// Kyori adventure
|
||
|
api(libs.bundles.adventure)
|
||
|
|
||
|
// Math utilities
|
||
|
api(libs.bundles.math)
|
||
|
|
||
|
// Stripped down fastutil
|
||
|
api(libs.bundles.fastutil)
|
||
|
|
||
|
// Netty
|
||
|
api(libs.bundles.netty)
|
||
|
|
||
|
// Checker Framework
|
||
|
api(libs.checkerframework.qual)
|
||
|
|
||
|
// Test dependencies
|
||
|
testImplementation(libs.junit.jupiter)
|
||
|
}
|