27 lines
529 B
Kotlin
27 lines
529 B
Kotlin
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "ch.polgrabia.demos"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("ch.qos.logback:logback-classic:1.5.6")
|
|
implementation(group = "io.netty", name = "netty-all", version = "4.1.112.Final")
|
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
} |