Files
kotlin-fork/js/js.ast/build.gradle.kts
T
2018-01-30 17:06:11 +03:00

27 lines
421 B
Kotlin

apply { plugin("kotlin") }
jvmTarget = "1.6"
configureIntellijPlugin {
setExtraDependencies("intellij-core")
}
dependencies {
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
}
afterEvaluate {
dependencies {
compileOnly(intellijCoreJar())
compileOnly(intellij { include("trove4j.jar")} )
}
}
sourceSets {
"main" { projectDefault() }
"test" {}
}