27 lines
403 B
Kotlin
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()
|
|
}
|
|
}
|