Files
kotlin-fork/idea/idea-test-framework/build.gradle.kts
T
2018-01-30 17:06:07 +03:00

31 lines
685 B
Kotlin

apply { plugin("kotlin") }
configureIntellijPlugin()
dependencies {
compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.script"))
compile(projectTests(":compiler:tests-common"))
compile(project(":idea"))
compile(project(":idea:idea-jvm"))
compile(project(":idea:idea-core"))
compile(project(":idea:idea-jps-common"))
compile(project(":kotlin-test:kotlin-test-jvm"))
compileOnly(project(":kotlin-reflect-api"))
compile(commonDep("junit:junit"))
}
afterEvaluate {
dependencies {
compile(intellij { include("openapi.jar", "idea.jar") })
}
}
sourceSets {
"main" { projectDefault() }
"test" {}
}