-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
48 lines (41 loc) · 1.26 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
45
46
47
48
buildscript {
repositories {
maven {
setUrl("https://plugins.gradle.org/m2/")
jcenter()
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.6.RELEASE")
classpath("org.jetbrains.kotlin:kotlin-allopen:1.1.4-2")
}
}
apply {
plugin("org.springframework.boot")
plugin("org.jetbrains.kotlin.plugin.spring")
}
plugins {
kotlin(module = "jvm", version = "1.1.4-2")
idea
java
application
}
ext["mockito.version"] = "2.9.0"
dependencies {
compile(kotlin("stdlib-jre8"))
compile(kotlin("reflect"))
compile("org.springframework.boot:spring-boot-starter-web")
compile("com.fasterxml.jackson.datatype:jackson-datatype-jsr310") // java time
compile("com.fasterxml.jackson.module:jackson-module-kotlin:2.8.7") // kotlin data classes
compile("com.fasterxml.jackson.module:jackson-module-kotlin:2.8.7")
compile("com.nhaarman:mockito-kotlin:1.5.0")
testCompile("org.amshove.kluent:kluent:1.+")
testCompile("org.springframework.boot:spring-boot-starter-test")
compile("com.gregwoodfill.assert:kotlin-json-assert:0.1.0")
}
repositories {
jcenter()
maven {
setUrl("https://dl.bintray.com/gregwoodfill/maven")
}
}