You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
464 B
Kotlin
22 lines
464 B
Kotlin
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")
|
|
implementation("io.arrow-kt:arrow-fx:$arrowVersion")
|
|
}
|
|
|
|
application {
|
|
mainClassName = "moe.kageru.spektacle.SpektacleKt"
|
|
}
|