diff --git a/.idea/misc.xml b/.idea/misc.xml index 998cdfe24..5455bfad2 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -16,7 +16,7 @@ - + \ No newline at end of file diff --git a/compiler/build.gradle b/compiler/build.gradle index 5482d0e48..fb95dbe7e 100644 --- a/compiler/build.gradle +++ b/compiler/build.gradle @@ -1,11 +1,11 @@ buildscript { dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.10" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.20" } } plugins { - // id "org.jetbrains.kotlin.jvm" version "1.4.10" + // id "org.jetbrains.kotlin.jvm" version "1.4.20" id 'application' id 'org.jetbrains.dokka' version "0.9.18" id 'com.github.johnrengelman.shadow' version '5.2.0' @@ -15,8 +15,8 @@ plugins { apply plugin: "kotlin" apply plugin: "java" -targetCompatibility = 1.8 -sourceCompatibility = 1.8 +targetCompatibility = 11 +sourceCompatibility = 11 repositories { mavenLocal() @@ -45,7 +45,7 @@ dependencies { compileKotlin { kotlinOptions { - jvmTarget = "1.8" + jvmTarget = "11" // verbose = true // freeCompilerArgs += "-XXLanguage:+NewInference" } @@ -53,7 +53,7 @@ compileKotlin { compileTestKotlin { kotlinOptions { - jvmTarget = "1.8" + jvmTarget = "11" } } diff --git a/docs/source/index.rst b/docs/source/index.rst index c6c5f89bd..07621e4e0 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -146,7 +146,7 @@ A recent precompiled .exe for Windows can be obtained from my `clone `_ . For MacOS you can use the Homebrew system to install a recent version of OpenJDK. diff --git a/parser/build.gradle b/parser/build.gradle index 6cdf0f2c3..1eba273b1 100644 --- a/parser/build.gradle +++ b/parser/build.gradle @@ -3,8 +3,8 @@ plugins { id 'java' } -targetCompatibility = 1.8 -sourceCompatibility = 1.8 +targetCompatibility = 11 +sourceCompatibility = 11 repositories { mavenCentral()