Maintenance Tasks Added

This commit is contained in:
shabinder 2021-05-18 20:25:07 +05:30
parent e7a983fe00
commit 6fbd933b8f

View File

@ -0,0 +1,36 @@
plugins {
kotlin("jvm")
kotlin("plugin.serialization")
application
}
group = "com.shabinder"
version = "1.0"
repositories {
mavenCentral()
}
application {
mainClassName = "MainKt"
}
dependencies {
implementation("io.ktor:ktor-client-core:1.5.4")
implementation("io.ktor:ktor-client-apache:1.5.4")
implementation("io.ktor:ktor-client-serialization:1.5.4")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.1")
// testDeps
testImplementation(kotlin("test-junit"))
}
tasks.test {
useJUnit()
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
kotlinOptions {
jvmTarget = "1.8"
useIR = true
}
}