b5ee0e8222
Module targeting jvm 1.6 can't depend on jvm 8 one. In Gradle 6.5 this behaviour is enforced by configuration error.
22 lines
361 B
Kotlin
22 lines
361 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-scripting-common"))
|
|
compileOnly(project(":compiler:backend.js"))
|
|
compileOnly(project(":compiler:cli-common"))
|
|
compileOnly(project(":js:js.engines"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { }
|
|
}
|
|
|
|
publish()
|
|
|
|
standardPublicJars()
|