plugins { kotlin("jvm") version "1.9.20" } group = "org.example" version = "1.0-SNAPSHOT" repositories { mavenCentral() } dependencies { testImplementation(kotlin("test")) implementation("io.ktor:ktor-server-core-jvm:2.3.6") implementation("io.ktor:ktor-server-netty-jvm:2.3.6") implementation("io.ktor:ktor-server-status-pages-jvm:2.3.6") implementation("io.ktor:ktor-server-default-headers-jvm:2.3.6") implementation("io.ktor:ktor-server-html-builder:2.3.6") implementation("org.jetbrains.kotlin-wrappers:kotlin-css:1.0.0-pre.650") } tasks.test { useJUnitPlatform() } kotlin { jvmToolchain(8) }