Archived
1
0
Fork 0
This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
uranos/uranos-packet-codecs/build.gradle.kts

33 lines
522 B
Kotlin

plugins {
kotlin("jvm")
}
group = rootProject.group
version = rootProject.version
repositories {
mavenCentral()
jcenter()
}
dependencies {
api(project(":uranos-packets"))
api(project(":uranos-nbt"))
// Netty
api("io.netty:netty-buffer:_")
// Other
api("com.google.guava:guava:_")
// Testing
testImplementation(Testing.Strikt.core)
testImplementation(Testing.junit.api)
testRuntimeOnly(Testing.junit.engine)
}
tasks {
test {
useJUnitPlatform()
}
}