-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
44 lines (37 loc) · 1.12 KB
/
build.gradle.kts
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.3.72"
id("org.jetbrains.dokka") version "1.4.0-rc"
}
group = "io.github.elena-lyulina.ast-canonicalization"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("org.junit.jupiter:junit-jupiter-api:5.6.0")
implementation("org.junit.jupiter:junit-jupiter-engine:5.6.0")
implementation("com.github.gumtreediff", "client", "2.1.2")
implementation("com.github.gumtreediff", "client.diff", "2.1.2")
implementation("com.github.gumtreediff", "core", "2.1.2")
implementation("commons-io", "commons-io", "2.5")
testImplementation("com.github.gumtreediff", "gen.python", "2.1.2")
testImplementation(kotlin("test-junit"))
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
test {
useJUnitPlatform()
dependsOn("cleanTest")
testLogging {
events("passed", "skipped", "failed")
}
}
}