Add Pill support to compiler and IDE modules

This commit is contained in:
Yan Zhulanow
2018-02-14 23:51:22 +03:00
parent af60bcfb47
commit 34d1611ed4
80 changed files with 86 additions and 0 deletions
+1
View File
@@ -2,6 +2,7 @@
description = "Kotlin Build Common"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compileOnly(project(":core:util.runtime"))
+3
View File
@@ -249,6 +249,9 @@ apply {
}
}
apply { plugin("jps-compatible") }
apply { plugin("jps-compatible-root") }
fun Project.allprojectsRecursive(body: Project.() -> Unit) {
this.body()
this.subprojects { allprojectsRecursive(body) }
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -4,6 +4,7 @@ import org.gradle.api.tasks.bundling.Jar
import org.jetbrains.kotlin.gradle.dsl.KotlinCompile
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.8"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -2,6 +2,7 @@
description = "Kotlin Runner"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -4,6 +4,7 @@ import org.gradle.jvm.tasks.Jar
description = "Compiler runner + daemon client"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -3,6 +3,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
description = "Kotlin Daemon Client"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,4 +1,5 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -2,6 +2,7 @@
description = "Kotlin Preloader"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
testCompile(project(":core:descriptors"))
+1
View File
@@ -1,4 +1,5 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
testRuntime(intellijDep())
+1
View File
@@ -1,6 +1,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
testCompile(projectTests(":compiler:tests-common"))
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,4 +1,5 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
javaHome = rootProject.extra["JDK_16"] as String
+1
View File
@@ -1,4 +1,5 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
javaHome = rootProject.extra["JDK_16"] as String
+1
View File
@@ -1,6 +1,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
javaHome = rootProject.extra["JDK_16"] as String
+1
View File
@@ -2,6 +2,7 @@
apply {
plugin("java")
plugin("kotlin")
plugin("jps-compatible")
}
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(projectDist(":kotlin-stdlib"))
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(projectTests(":compiler:cli"))
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compileOnly(project(":idea"))
+1
View File
@@ -1,6 +1,7 @@
import org.gradle.jvm.tasks.Jar
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
testRuntime(intellijDep())
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(project(":compiler:util"))
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(project(":compiler:util"))
+1
View File
@@ -2,6 +2,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
testRuntime(intellijDep())
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(projectDist(":kotlin-stdlib"))
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
testRuntime(intellijDep())
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(projectDist(":kotlin-stdlib"))
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(project(":idea"))
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(project(":core:util.runtime"))
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(project(":compiler:frontend"))
@@ -2,6 +2,7 @@
description = "Kotlin Gradle Tooling support"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
testRuntime(intellijDep())
+1
View File
@@ -1,4 +1,5 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
val compilerModules: Array<String> by rootProject.extra
@@ -10,6 +10,7 @@
*/
plugins { java }
apply { plugin("jps-compatible") }
dependencies {
compileOnly(intellijDep()) { includeJars("annotations", "util") }
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(project(":compiler:util"))
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(project(":compiler:util"))
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
+1
View File
@@ -11,6 +11,7 @@ node {
}
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
val antLauncherJar by configurations.creating
+1
View File
@@ -5,6 +5,7 @@ plugins {
}
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -2,6 +2,7 @@
description = "Kotlin scripting support utilities"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(project(":kotlin-stdlib"))
@@ -2,6 +2,7 @@
description = "Kotlin AllOpen Compiler Plugin"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
testRuntime(intellijDep())
@@ -2,6 +2,7 @@
description = "Kotlin AllOpen IDEA Plugin"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -2,6 +2,7 @@
description = "Kotlin Android Extensions Compiler"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
val robolectricClasspath by configurations.creating
@@ -2,6 +2,7 @@
description = "Kotlin Android Extensions IDEA"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
testRuntime(intellijDep())
@@ -1,6 +1,7 @@
description = "Kotlin Android Extensions Runtime"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -2,6 +2,7 @@
description = "Annotation Processor for Kotlin"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -1,6 +1,11 @@
description = "Kotlin Annotation Processing Runtime"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(projectDist(":kotlin-stdlib"))
}
jvmTarget = "1.6"
+1
View File
@@ -2,6 +2,7 @@
apply {
plugin("kotlin")
plugin("java")
plugin("jps-compatible")
}
dependencies {
+1
View File
@@ -2,6 +2,7 @@
description = "Kotlin NoArg Compiler Plugin"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
testRuntime(intellijDep())
+1
View File
@@ -2,6 +2,7 @@
description = "Kotlin NoArg IDEA Plugin"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -2,6 +2,7 @@
description = "Kotlin SamWithReceiver Compiler Plugin"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compileOnly(project(":compiler:frontend"))
@@ -2,6 +2,7 @@
description = "Kotlin SamWithReceiver IDEA Plugin"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
@@ -2,6 +2,7 @@
description = "Kotlin SourceSections Compiler Plugin"
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(projectDist(":kotlin-stdlib"))
+1
View File
@@ -1,5 +1,6 @@
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
dependencies {
compile(projectDist(":kotlin-stdlib"))