mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-11-14 19:34:58 -05:00
30 lines
637 B
Text
30 lines
637 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)
|
|
|
|
// 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)
|
|
}
|