-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (35 loc) · 885 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
34
35
36
37
38
39
40
41
42
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.2.50'
id 'idea'
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
group 'net.lab0.foiegras'
version '0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'com.squareup:kotlinpoet:0.7.0'
compile 'com.squareup:javapoet:1.11.1'
compile 'com.google.guava:guava:25.0-jre'
compile 'io.kaitai:kaitai-struct-runtime:0.8'
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile 'org.ow2.asm:asm:6.2'
compile 'org.ow2.asm:asm-util:6.2'
testImplementation "org.assertj:assertj-core:3.10.0"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.2.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.2.0"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}