39 lines
No EOL
888 B
Kotlin
39 lines
No EOL
888 B
Kotlin
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
id("com.github.johnrengelman.shadow") version Versions.com_github_johnrengelman_shadow_gradle_plugin
|
|
id("de.fayard.buildSrcVersions") version Versions.de_fayard_buildsrcversions_gradle_plugin
|
|
kotlin("jvm") version "1.3.31"
|
|
application
|
|
}
|
|
|
|
group = "com.anthonycicchetti"
|
|
version = "0.1.1"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib-jdk8"))
|
|
implementation(Libs.javalin)
|
|
implementation(Libs.slf4j_simple)
|
|
implementation(Libs.jackson_databind)
|
|
|
|
testImplementation(Libs.junit_jupiter)
|
|
}
|
|
|
|
application {
|
|
mainClassName = "com.anthonycicchetti.slackbot.MainKt"
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events("passed", "skipped", "failed")
|
|
}
|
|
} |