Files
kotlin-fork/plugins/sam-with-receiver/sam-with-receiver-ide/build.gradle.kts
T
2017-09-19 21:37:06 +02:00

27 lines
616 B
Kotlin

import org.gradle.jvm.tasks.Jar
apply { plugin("kotlin") }
dependencies {
val compile by configurations
compile(project(":plugins:sam-with-receiver-cli"))
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:idea-android"))
compile(project(":idea"))
}
configureKotlinProjectSourcesDefault()
configureKotlinProjectNoTests()
val jar: Jar by tasks
ideaPlugin {
from(jar)
}