|
@@ -1,6 +1,6 @@
|
|
|
|
|
|
plugins {
|
|
plugins {
|
|
- id 'org.jetbrains.kotlin.jvm' version '1.1.4-2'
|
|
|
|
|
|
+ id 'org.jetbrains.kotlin.jvm' version '1.2.0'
|
|
}
|
|
}
|
|
|
|
|
|
apply from: "$gradleScripts/kotlin.gradle"
|
|
apply from: "$gradleScripts/kotlin.gradle"
|
|
@@ -32,6 +32,11 @@ dependencies {
|
|
compile ("com.zaxxer:HikariCP:$hikariVersion")
|
|
compile ("com.zaxxer:HikariCP:$hikariVersion")
|
|
compile ("org.postgresql:postgresql:$postgresqlVersion")
|
|
compile ("org.postgresql:postgresql:$postgresqlVersion")
|
|
|
|
|
|
|
|
+ // hexagon's UndertowEngine class depends on javax.activation.MimetypesFileTypeMap,
|
|
|
|
+ // which is not available by default in Java 9. Including this javax.activation
|
|
|
|
+ // dependency fixes that issue with running on Java 9.
|
|
|
|
+ compile ("com.sun.activation:javax.activation:$activationVersion")
|
|
|
|
+
|
|
// providedCompile excludes the dependency only in the WAR, not in the distribution
|
|
// providedCompile excludes the dependency only in the WAR, not in the distribution
|
|
providedCompile ("org.eclipse.jetty:jetty-webapp:$jettyVersion") { exclude module: "slf4j-api" }
|
|
providedCompile ("org.eclipse.jetty:jetty-webapp:$jettyVersion") { exclude module: "slf4j-api" }
|
|
|
|
|