Skip to content
Snippets Groups Projects
Verified Commit 1deb52c3 authored by Konstantin Kopper's avatar Konstantin Kopper
Browse files

Kotlin 1.3.71 and some dependency upgrades

parent ab7a8b56
No related branches found
No related tags found
No related merge requests found
Pipeline #15676 passed
......@@ -5,8 +5,8 @@ if (!JavaVersion.current().isJava8Compatible)
error("Only JDK 8 or newer is supported!")
plugins {
kotlin("jvm") version "1.3.70"
kotlin("plugin.serialization") version "1.3.70"
kotlin("jvm") version "1.3.71"
kotlin("plugin.serialization") version "1.3.71"
id("org.jetbrains.dokka") version "0.10.1"
}
......@@ -14,8 +14,8 @@ repositories {
jcenter()
}
val ktorVersion = "1.3.1"
val junitVersion = "5.6.0"
val ktorVersion = "1.3.2"
val junitVersion = "5.6.1"
val aspectjVersion = "1.9.5"
dependencies {
......@@ -26,7 +26,7 @@ dependencies {
implementation(kotlin("stdlib-jdk8"))
// Coroutines
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.3.3")
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.3.5")
// Kotlin serialization
implementation("org.jetbrains.kotlinx", "kotlinx-serialization-runtime", "0.20.0")
......@@ -35,7 +35,7 @@ dependencies {
if (JavaVersion.current().isJava11Compatible) {
for (pkg in listOf("base", "controls", "fxml", "graphics"))
for (os in listOf("linux", "mac", "win"))
implementation("org.openjfx", "javafx-$pkg", "13.0.2", classifier = os)
implementation("org.openjfx", "javafx-$pkg", "14", classifier = os)
}
// Provides RichText TextAreas. Used for code input area.
......@@ -56,7 +56,7 @@ dependencies {
implementation("io.ktor", "ktor-freemarker", ktorVersion)
// http4k WebSocket client library
implementation("org.http4k", "http4k-client-websocket", "3.239.0")
implementation("org.http4k", "http4k-client-websocket", "3.241.0")
// AspectJ runtime
runtimeOnly("org.aspectj", "aspectjrt", aspectjVersion)
......@@ -68,7 +68,7 @@ dependencies {
testImplementation("org.junit.jupiter", "junit-jupiter-params", junitVersion)
testRuntimeOnly("org.junit.jupiter", "junit-jupiter-engine", junitVersion)
testImplementation("org.mockito", "mockito-junit-jupiter", "3.3.0")
testImplementation("org.mockito", "mockito-junit-jupiter", "3.3.3")
}
version = "2.0.3"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment