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

28 lines
552 B
Kotlin

apply { plugin("kotlin") }
configureIntellijPlugin {
setExtraDependencies("intellij-core")
}
dependencies {
compile(projectDist(":kotlin-stdlib"))
compileOnly(project(":kotlin-reflect-api"))
compile(project(":compiler:util"))
compile(project(":compiler:cli-common"))
compile(project(":compiler:frontend.java"))
}
afterEvaluate {
dependencies {
compileOnly(intellijCoreJar())
compileOnly(intellij { include("jdom.jar", "util.jar") })
}
}
sourceSets {
"main" { projectDefault() }
"test" {}
}