31 lines
692 B
Plaintext
31 lines
692 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.9.21"
|
|
}
|
|
|
|
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")
|
|
|
|
implementation("com.jcraft:jsch:0.1.55")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(8)
|
|
} |