-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (27 loc) · 874 Bytes
/
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
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.10'
}
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation 'org.eclipse.jgit:org.eclipse.jgit:4.9.0.201710071750-r'
implementation 'org.eclipse.jdt:org.eclipse.jdt.core:3.12.3'
implementation 'com.google.guava:guava:22.0'
implementation 'com.google.googlejavaformat:google-java-format:1.7'
implementation 'com.opencsv:opencsv:5.0'
implementation 'com.github.javaparser:javaparser-core:3.15.5'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'org.apache.commons:commons-csv:1.5'
testCompile 'junit:junit:4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}