SpotiFlyer/maintenance-tasks/build.gradle.kts

35 lines
574 B
Plaintext
Raw Permalink Normal View History

2021-05-18 16:55:07 +02:00
plugins {
kotlin("jvm")
kotlin("plugin.serialization")
2021-05-18 17:06:30 +02:00
id("ktlint-setup")
2021-05-18 16:55:07 +02:00
application
}
group = "com.shabinder"
version = "1.0"
repositories {
mavenCentral()
}
application {
2021-05-18 21:31:09 +02:00
mainClass.set("MainKt")
applicationName = "maintenance"
2021-05-18 16:55:07 +02:00
}
dependencies {
with(deps) {
implementation(slf4j.simple)
implementation(bundles.ktor)
implementation(ktor.client.apache)
implementation(kotlinx.serialization.json)
2021-09-02 19:57:17 +02:00
// testDep
testImplementation(kotlin.kotlinTestJunit)
}
2021-05-18 16:55:07 +02:00
}
tasks.test {
useJUnit()
}