diff --git a/compiler/cli/build.gradle.kts b/compiler/cli/build.gradle.kts index cc1ef179d26..359842b7d2e 100644 --- a/compiler/cli/build.gradle.kts +++ b/compiler/cli/build.gradle.kts @@ -3,8 +3,6 @@ plugins { id("jps-compatible") } -jvmTarget = "1.8" - dependencies { compile(project(":compiler:util")) compile(project(":compiler:cli-common")) diff --git a/compiler/daemon/build.gradle.kts b/compiler/daemon/build.gradle.kts index 7a19991c248..292dd0a0bd0 100644 --- a/compiler/daemon/build.gradle.kts +++ b/compiler/daemon/build.gradle.kts @@ -1,8 +1,3 @@ -/* - * Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license - * that can be found in the license/LICENSE.txt file. - */ - import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar description = "Kotlin Daemon New" @@ -12,8 +7,6 @@ plugins { id("jps-compatible") } -jvmTarget = "1.8" - val ktorExcludesForDaemon : List> by rootProject.extra dependencies { diff --git a/compiler/daemon/daemon-client-new/build.gradle.kts b/compiler/daemon/daemon-client-new/build.gradle.kts index 05feb4bed51..0bed204965a 100644 --- a/compiler/daemon/daemon-client-new/build.gradle.kts +++ b/compiler/daemon/daemon-client-new/build.gradle.kts @@ -1,8 +1,3 @@ -/* - * Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license - * that can be found in the license/LICENSE.txt file. - */ - import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar description = "Kotlin Daemon Client New" @@ -12,8 +7,6 @@ plugins { id("jps-compatible") } -jvmTarget = "1.8" - val nativePlatformVariants = listOf( "windows-amd64", "windows-i386", diff --git a/compiler/tests-java8/build.gradle.kts b/compiler/tests-java8/build.gradle.kts index da8c7ef9a34..9af9d409746 100644 --- a/compiler/tests-java8/build.gradle.kts +++ b/compiler/tests-java8/build.gradle.kts @@ -23,11 +23,6 @@ sourceSets { "test" { projectDefault() } } -tasks.withType { - kotlinOptions.jdkHome = rootProject.extra["JDK_18"]!!.toString() - kotlinOptions.jvmTarget = "1.8" -} - projectTest(parallel = true) { executable = "${rootProject.extra["JDK_18"]!!}/bin/java" dependsOn(":dist")