Files
kotlin-fork/plugins/allopen/allopen-ide/build.gradle.kts
T
Ilya Chernikov e18b77af21 Refactor compiler-related published projects
- move preparation into separate projects
- rename projects for publishing
- add compiler plugins
2017-09-19 21:37:14 +02:00

30 lines
756 B
Kotlin

import org.gradle.jvm.tasks.Jar
apply { plugin("kotlin") }
dependencies {
val compile by configurations
compile(project(":kotlin-allopen-compiler-plugin"))
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
compile(project(":compiler:cli-common"))
compile(project(":idea"))
compile(project(":idea:idea-jps-common"))
compile(project(":plugins:annotation-based-compiler-plugins-ide-support"))
compile(ideaSdkDeps("openapi", "idea"))
compile(ideaPluginDeps("maven", plugin = "maven"))
compile(ideaPluginDeps("gradle-tooling-api", "gradle", plugin = "gradle"))
}
configureKotlinProjectSourcesDefault()
configureKotlinProjectNoTests()
val jar: Jar by tasks
ideaPlugin {
from(jar)
}