30 lines
778 B
Kotlin
30 lines
778 B
Kotlin
|
|
description = "Kotlin NoArg IDEA Plugin"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-noarg-compiler-plugin"))
|
|
compile(project(":compiler:util"))
|
|
compile(project(":compiler:frontend"))
|
|
compile(project(":compiler:frontend.java"))
|
|
compile(project(":compiler:backend"))
|
|
compile(project(":compiler:cli-common"))
|
|
compile(project(":idea"))
|
|
compile(project(":idea:idea-jps-common"))
|
|
compile(project(":plugins:annotation-based-compiler-plugins-ide-support"))
|
|
compileOnly(intellijDep())
|
|
excludeInAndroidStudio(rootProject) { compileOnly(intellijPluginDep("maven")) }
|
|
compileOnly(intellijPluginDep("gradle"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
runtimeJar()
|