25 lines
440 B
Plaintext
25 lines
440 B
Plaintext
plugins {
|
|
application
|
|
}
|
|
|
|
group = "inr.numass"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
implementation("io.ktor:ktor-server-core:2.3.7")
|
|
implementation("io.ktor:ktor-server-netty:2.3.7")
|
|
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
application {
|
|
mainClass.set("inr.numass.webcontrol.ServerKt")
|
|
} |