20 lines
410 B
Kotlin
20 lines
410 B
Kotlin
|
|
apply { plugin("kotlin") }
|
|
|
|
dependencies {
|
|
compile(project(":compiler:frontend"))
|
|
compile(project(":compiler:frontend.script"))
|
|
compile(project(":compiler.tests-common"))
|
|
compile(project(":idea"))
|
|
compile(project(":idea:idea-core"))
|
|
compile(project(":idea:idea-jps-common"))
|
|
compile(ideaSdkDeps("openapi", "idea"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
|