Build: Remove jvmTarget 1.6 for several modules depending on 1.8 modules

Module targeting jvm 1.6 can't depend on jvm 8 one. In Gradle 6.5 this
behaviour is enforced by configuration error.
This commit is contained in:
Vyacheslav Gerasimov
2020-07-07 15:23:45 +03:00
parent 1fea01754d
commit b5ee0e8222
7 changed files with 0 additions and 14 deletions
@@ -4,8 +4,6 @@ plugins {
id("jps-compatible")
}
jvmTarget = "1.6"
val ktorExcludesForDaemon: List<Pair<String, String>> by rootProject.extra
dependencies {
@@ -3,8 +3,6 @@ plugins {
kotlin("jvm")
}
jvmTarget = "1.6"
val embeddableTestRuntime by configurations.creating
dependencies {
-2
View File
@@ -4,8 +4,6 @@ plugins {
id("jps-compatible")
}
jvmTarget = "1.6"
dependencies {
compile(project(":kotlin-scripting-common"))
compileOnly(project(":compiler:backend.js"))
@@ -3,8 +3,6 @@ plugins {
kotlin("jvm")
}
jvmTarget = "1.6"
val embeddableTestRuntime by configurations.creating {
attributes {
attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage.JAVA_RUNTIME))
@@ -3,8 +3,6 @@ plugins {
kotlin("jvm")
}
jvmTarget = "1.6"
publish()
dependencies {
@@ -3,8 +3,6 @@ plugins {
kotlin("jvm")
}
jvmTarget = "1.6"
val allTestsRuntime by configurations.creating
val testCompile by configurations
testCompile.extendsFrom(allTestsRuntime)
@@ -4,8 +4,6 @@ plugins {
id("jps-compatible")
}
jvmTarget = "1.6"
publish()
dependencies {