advent-of-code/2019/kt/build.gradle.kts
2019-11-24 10:45:06 +01:00

21 lines
397 B
Plaintext

val arrowVersion = "0.10.3"
plugins {
id("org.jetbrains.kotlin.jvm") version "1.3.60"
application
}
repositories {
jcenter()
maven("https://dl.bintray.com/arrow-kt/arrow-kt/")
}
dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation("io.arrow-kt:arrow-core:$arrowVersion")
}
application {
mainClassName = "moe.kageru.aoc.DayXXKt"
}