mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-11-14 19:34:58 -05:00
ebc06dc94e
* Add slf4j * Use lombok inside tests * Fix double error printing * Remove lombok annotation
33 lines
675 B
Text
33 lines
675 B
Text
plugins {
|
|
id("mcprotocollib.publish-conventions")
|
|
}
|
|
|
|
version = "1.20.6-2-SNAPSHOT"
|
|
description = "MCProtocolLib is a simple library for communicating with Minecraft clients and servers."
|
|
|
|
dependencies {
|
|
// Minecraft related libraries
|
|
api(libs.cloudburstnbt)
|
|
api(libs.mcauthlib)
|
|
|
|
// Slf4j
|
|
api(libs.slf4j.api)
|
|
|
|
// 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)
|
|
}
|