updated to Kotlin 1.4.20 and JDK 11

This commit is contained in:
Irmen de Jong 2020-12-19 14:58:48 +01:00
parent f8b3213b41
commit 6dc433417d
3 changed files with 4 additions and 4 deletions

View File

@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4" />
<module external.linked.project.id="ksim65:main" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="net.razorvine" external.system.module.version="1.9" type="JAVA_MODULE" version="4" />

View File

@ -1,6 +1,6 @@
language: java
sudo: false
# jdk: openjdk8
# jdk: openjdk11
# dist: xenial
before_install:

View File

@ -6,7 +6,7 @@ import kotlin.math.max
plugins {
// Apply the Kotlin JVM plugin to add support for Kotlin on the JVM.
kotlin("jvm") version "1.4.10"
kotlin("jvm") version "1.4.20"
`maven-publish`
application
id("org.jetbrains.dokka") version "0.10.0"
@ -64,7 +64,7 @@ tasks {
}
withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.jvmTarget = "11"
}
named<DokkaTask>("dokka") {