X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=build.gradle;h=f51656485505e844ae1e3c6c5035e248c4ed647f;hb=d03a94c5bc4437f547a75e89685de1a3c7fb830e;hp=d9c1d3717a95b128e0c01385bb9e8d230c3409b1;hpb=94a45c854613dbabf07b79f18d2b33e5da20c1bc;p=rhynodge.git diff --git a/build.gradle b/build.gradle index d9c1d37..f516564 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ sourceCompatibility = 1.8 targetCompatibility = 1.8 buildscript { - ext.kotlinVersion = '1.0.2' + ext.kotlinVersion = '1.1.51' repositories { mavenCentral() @@ -29,7 +29,10 @@ buildscript { } repositories { - mavenCentral() + mavenCentral() + maven { + url "http://dl.bintray.com/kotlinx/kotlinx" + } } dependencies { @@ -44,6 +47,8 @@ dependencies { compile group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: "2.1.2" compile group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.1.2" compile group: "com.google.inject", name: "guice", version: "4.0" + compile group: "org.jetbrains.kotlinx", name: "kotlinx.html", version: "0.5.8" + compile group: "org.jetbrains.kotlinx", name: "kotlinx.html.jvm", version: "0.5.8" testCompile group: "junit", name: "junit", version:"4.12" testCompile group: "org.hamcrest", name: "hamcrest-library", version:"1.3" @@ -88,4 +93,8 @@ war { dependsOn(test) } +jacoco { + toolVersion = "0.7.6.201602180812" +} + /* vim: set ts=4 sw=4 et: */