-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
44 lines (39 loc) · 1.24 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.31'
id 'application'
}
mainClassName = 'io.exercism.analyzer.kotlin.AnalyzerKt'
group 'io.exercism'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
maven { url "https://dl.bintray.com/arrow-kt/arrow-kt/" }
}
def arrow_version = "0.8.2"
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile "io.arrow-kt:arrow-core:$arrow_version"
compile "io.arrow-kt:arrow-syntax:$arrow_version"
compile "io.arrow-kt:arrow-typeclasses:$arrow_version"
compile "io.arrow-kt:arrow-data:$arrow_version"
compile "io.arrow-kt:arrow-instances-core:$arrow_version"
compile "io.arrow-kt:arrow-instances-data:$arrow_version"
compile "com.github.cretz.kastree:kastree-ast-psi:0.4.0"
compile "com.google.code.gson:gson:2.8.5"
compile "io.github.microutils:kotlin-logging:1.6.23"
compile "ch.qos.logback:logback-classic:1.0.13"
testCompile 'junit:junit:4.12'
testCompile "org.jetbrains.kotlin:kotlin-test-junit:1.3.31"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
run {
if (project.hasProperty('args')) {
args findProperty('args').split(" ")
}
}