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-nbt/build.gradle.kts

27 lines
403 B
Kotlin

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