Convert all remaining plugin modules to intellij plugin

This commit is contained in:
Ilya Chernikov
2017-11-03 13:30:37 +01:00
committed by Vyacheslav Gerasimov
parent 9b51a547d8
commit 06c8cbf7d6
9 changed files with 102 additions and 21 deletions
@@ -3,6 +3,8 @@ description = "Kotlin SourceSections Compiler Plugin"
apply { plugin("kotlin") }
configureIntellijPlugin()
dependencies {
compileOnly(project(":compiler:frontend"))
compileOnly(project(":compiler:frontend.script"))
@@ -17,11 +19,16 @@ dependencies {
testCompile(project(":compiler:daemon-common"))
testCompile(project(":kotlin-daemon-client"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(ideaSdkDeps("idea", "idea_rt", "openapi"))
testCompile(commonDep("junit:junit"))
testRuntime(projectDist(":kotlin-reflect"))
}
afterEvaluate {
dependencies {
testCompile(intellij { include("idea.jar", "idea_rt.jar", "openapi.jar") })
}
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }