-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathbuild.gradle
More file actions
64 lines (52 loc) · 1.64 KB
/
build.gradle
File metadata and controls
64 lines (52 loc) · 1.64 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
buildscript {
ext.kotlin_version = '1.1.3-2'
ext {
versions = [
hamkrest: "1.4.0.0",
junit : "1.0.0-M4",
jupiter : "5.0.0-M4",
kotlin : "1.1.2",
spek : "1.1.1",
okhttp : "2.7.5"
]
}
repositories {
jcenter()
}
dependencies {
classpath "com.netflix.nebula:nebula-kotlin-plugin:${versions.kotlin}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
}
}
apply plugin: 'kotlin'
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
repositories {
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:${versions.kotlin}"
compile 'org.slf4j:slf4j-api:1.7.24'
compile("com.squareup.okhttp:okhttp:${versions.okhttp}")
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.9'
compile group: 'com.fasterxml.jackson.module', name: 'jackson-module-kotlin', version: '2.8.9'
compile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.8.9'
compile group: 'com.squareup.retrofit2', name: 'retrofit', version: '2.3.0'
compile group: 'com.squareup.retrofit2', name: 'converter-jackson', version: '2.3.0'
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.8.1'
compile group: 'com.squareup.okhttp3', name: 'logging-interceptor', version: '3.8.1'
compile group: 'org.jfree', name: 'jfreechart', version: '1.0.19'
testCompile 'junit:junit:4.12'
}
task perf(type: JavaExec) {
main = 'com.netflix.spinnaker.testing.MainKt'
classpath = sourceSets.main.runtimeClasspath
}