adventOfCode2019/build.gradle.kts
2019-12-01 12:24:52 -05:00

34 lines
No EOL
746 B
Kotlin

plugins {
kotlin("jvm") version "1.3.61"
application
kotlin("kapt") version "1.3.61"
}
group = "dev.acicchetti"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
jcenter()
maven {
url = uri("https://dl.bintray.com/arrow-kt/arrow-kt/")
}
}
val arrowVersion = "0.10.3"
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("io.arrow-kt:arrow-core:$arrowVersion")
implementation("io.arrow-kt:arrow-syntax:$arrowVersion")
implementation("io.arrow-kt:arrow-optics:$arrowVersion")
kapt("io.arrow-kt:arrow-meta:$arrowVersion")
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
}