0e8a04c4ba
(cherry picked from commit be781f4f462f74ca0efcc91b5c07a5b3756ba5b2)
32 lines
712 B
Plaintext
32 lines
712 B
Plaintext
|
|
description = "Kotlin SamWithReceiver IDEA Plugin"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-sam-with-receiver-compiler-plugin"))
|
|
compile(project(":plugins:annotation-based-compiler-plugins-ide-support"))
|
|
compile(project(":compiler:util"))
|
|
compile(project(":compiler:frontend"))
|
|
compile(project(":compiler:frontend.java"))
|
|
compile(project(":idea:idea-core"))
|
|
compile(project(":idea"))
|
|
compile(project(":idea:idea-jvm"))
|
|
compile(intellijDep()) { includeJars("openapi", "platform-api", "extensions", "util") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
runtimeJar()
|
|
|
|
ideaPlugin()
|
|
|