29 lines
731 B
Kotlin
29 lines
731 B
Kotlin
val kotlin_version: String by project
|
|
val logback_version: String by project
|
|
|
|
plugins {
|
|
kotlin("jvm") version "2.3.0"
|
|
id("io.ktor.plugin") version "3.4.1"
|
|
}
|
|
|
|
group = "org.hydev"
|
|
version = "0.0.1"
|
|
|
|
application {
|
|
mainClass = "org.hydev.ApplicationKt"
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.openfolder:kotlin-asyncapi-ktor:3.1.3")
|
|
implementation("io.ktor:ktor-server-core-jvm")
|
|
implementation("io.ktor:ktor-server-netty")
|
|
implementation("ch.qos.logback:logback-classic:$logback_version")
|
|
implementation("io.ktor:ktor-server-core")
|
|
testImplementation("io.ktor:ktor-server-test-host")
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
|
|
}
|