Fix build.gradle.kts errors

This commit is contained in:
Sebastien Deleuze
2016-09-20 15:05:34 +02:00
parent 9001b88f63
commit 3f8aee4c57

View File

@@ -8,7 +8,7 @@ buildscript {
maven { setUrl("https://dl.bintray.com/kotlin/kotlin-eap") }
}
dependencies {
classpath(kotlinModule("gradle-plugin", extra["kotlinVersion"]))
classpath(kotlinModule("gradle-plugin", extra["kotlinVersion"] as String))
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE")
}
}
@@ -32,8 +32,8 @@ dependencies {
compile("org.springframework.boot:spring-boot-starter-jdbc")
compile("org.springframework.boot:spring-boot-devtools")
compile(kotlinModule("stdlib", extra["kotlinVersion"]))
compile(kotlinModule("reflect", extra["kotlinVersion"]))
compile(kotlinModule("stdlib", extra["kotlinVersion"] as String))
compile(kotlinModule("reflect", extra["kotlinVersion"] as String))
compile("com.fasterxml.jackson.module:jackson-module-kotlin:2.7.5")
compile(exposedModule("exposed"))