Files
kotlin-fork/libraries/examples/scripting/jvm-maven-deps/host/build.gradle.kts
T
Ilya Chernikov cc59716b39 Remove usages of the compiler from dist in script sample modules
prevent constant reindexing of the compiler jar
2018-04-04 21:44:20 +02:00

1 line
566 B
Kotlin

import org.jetbrains.kotlin.gradle.dsl.Coroutines
plugins {
kotlin("jvm")
}
dependencies {
compile(project(":examples:scripting-jvm-maven-deps"))
compile(project(":kotlin-scripting-jvm-host"))
compile(projectDist(":kotlin-stdlib"))
compile(projectDist(":kotlin-reflect"))
compileOnly(project(":compiler:util"))
runtime(projectRuntimeJar(":kotlin-compiler"))
testCompile(commonDep("junit"))
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}
kotlin {
experimental.coroutines = Coroutines.ENABLE
}