Pill: Mark more projects as 'jps-compatible' in FULL variant
This commit is contained in:
@@ -1,8 +1,15 @@
|
|||||||
|
import org.jetbrains.kotlin.pill.PillExtension
|
||||||
|
|
||||||
description = "Simple Annotation Processor for testing kapt"
|
description = "Simple Annotation Processor for testing kapt"
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm")
|
kotlin("jvm")
|
||||||
maven // only used for installing to mavenLocal()
|
maven // only used for installing to mavenLocal()
|
||||||
|
id("jps-compatible")
|
||||||
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = PillExtension.Variant.FULL
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|||||||
@@ -1,12 +1,16 @@
|
|||||||
|
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
apply plugin: 'maven'
|
apply plugin: 'maven'
|
||||||
|
apply plugin: 'jps-compatible'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = 'FULL'
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':kotlin-gradle-plugin-api')
|
compile project(':kotlin-gradle-plugin-api')
|
||||||
// Use this dependency instead when building apart from the other modules:
|
// Use this dependency instead when building apart from the other modules:
|
||||||
|
|||||||
@@ -1,8 +1,14 @@
|
|||||||
|
import org.jetbrains.kotlin.pill.PillExtension
|
||||||
|
|
||||||
description = "Sample Kotlin JSR 223 scripting jar with daemon (out-of-process) compilation and local (in-process) evaluation"
|
description = "Sample Kotlin JSR 223 scripting jar with daemon (out-of-process) compilation and local (in-process) evaluation"
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm")
|
kotlin("jvm")
|
||||||
|
id("jps-compatible")
|
||||||
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = PillExtension.Variant.FULL
|
||||||
}
|
}
|
||||||
|
|
||||||
val compilerClasspath by configurations.creating
|
val compilerClasspath by configurations.creating
|
||||||
|
|||||||
@@ -1,8 +1,14 @@
|
|||||||
|
import org.jetbrains.kotlin.pill.PillExtension
|
||||||
|
|
||||||
description = "Sample Kotlin JSR 223 scripting jar with local (in-process) compilation and evaluation"
|
description = "Sample Kotlin JSR 223 scripting jar with local (in-process) compilation and evaluation"
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm")
|
kotlin("jvm")
|
||||||
|
id("jps-compatible")
|
||||||
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = PillExtension.Variant.FULL
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
apply plugin: 'jps-compatible'
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
testArtifacts
|
testArtifacts
|
||||||
@@ -21,6 +22,10 @@ dependencies {
|
|||||||
testArtifacts project(':kotlin-reflect')
|
testArtifacts project(':kotlin-reflect')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = 'FULL'
|
||||||
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
test {
|
test {
|
||||||
java {
|
java {
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
apply plugin: 'jps-compatible'
|
||||||
|
|
||||||
configureJvmProject(project)
|
configureJvmProject(project)
|
||||||
configurePublishing(project)
|
configurePublishing(project)
|
||||||
@@ -8,6 +9,10 @@ repositories {
|
|||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = 'FULL'
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':kotlin-gradle-plugin-api')
|
compile project(':kotlin-gradle-plugin-api')
|
||||||
compile project(':kotlin-gradle-plugin-model')
|
compile project(':kotlin-gradle-plugin-model')
|
||||||
|
|||||||
@@ -1,9 +1,15 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
import org.jetbrains.kotlin.pill.PillExtension
|
||||||
|
|
||||||
description = "Kotlin annotations for Android"
|
description = "Kotlin annotations for Android"
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm")
|
kotlin("jvm")
|
||||||
|
id("jps-compatible")
|
||||||
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = PillExtension.Variant.FULL
|
||||||
}
|
}
|
||||||
|
|
||||||
jvmTarget = "1.6"
|
jvmTarget = "1.6"
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import org.jetbrains.kotlin.pill.PillExtension
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm")
|
kotlin("jvm")
|
||||||
maven
|
maven
|
||||||
|
id("jps-compatible")
|
||||||
}
|
}
|
||||||
|
|
||||||
publish()
|
publish()
|
||||||
@@ -14,6 +15,10 @@ dependencies {
|
|||||||
compile(kotlinStdlib())
|
compile(kotlinStdlib())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = PillExtension.Variant.FULL
|
||||||
|
}
|
||||||
|
|
||||||
tasks {
|
tasks {
|
||||||
withType<KotlinCompile> {
|
withType<KotlinCompile> {
|
||||||
kotlinOptions.languageVersion = "1.2"
|
kotlinOptions.languageVersion = "1.2"
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
apply plugin: 'jps-compatible'
|
||||||
|
|
||||||
configureJvmProject(project)
|
configureJvmProject(project)
|
||||||
configurePublishing(project)
|
configurePublishing(project)
|
||||||
@@ -14,6 +15,10 @@ repositories {
|
|||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = 'FULL'
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':kotlin-gradle-plugin-api')
|
compile project(':kotlin-gradle-plugin-api')
|
||||||
compile project(':kotlin-gradle-plugin-model')
|
compile project(':kotlin-gradle-plugin-model')
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
apply plugin: 'jps-compatible'
|
||||||
|
|
||||||
configureJvmProject(project)
|
configureJvmProject(project)
|
||||||
configurePublishing(project)
|
configurePublishing(project)
|
||||||
@@ -9,6 +10,10 @@ compileJava {
|
|||||||
options.fork = false
|
options.fork = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = 'FULL'
|
||||||
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
jcenter()
|
jcenter()
|
||||||
|
|||||||
@@ -1,8 +1,13 @@
|
|||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
apply plugin: 'jps-compatible'
|
||||||
|
|
||||||
configureJvmProject(project)
|
configureJvmProject(project)
|
||||||
configurePublishing(project)
|
configurePublishing(project)
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = 'FULL'
|
||||||
|
}
|
||||||
|
|
||||||
compileJava {
|
compileJava {
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 1.8
|
||||||
targetCompatibility = 1.8
|
targetCompatibility = 1.8
|
||||||
|
|||||||
@@ -1,8 +1,14 @@
|
|||||||
import org.gradle.jvm.tasks.Jar
|
import org.gradle.jvm.tasks.Jar
|
||||||
|
import org.jetbrains.kotlin.pill.PillExtension
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
java
|
java
|
||||||
kotlin("jvm")
|
kotlin("jvm")
|
||||||
|
id("jps-compatible")
|
||||||
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
variant = PillExtension.Variant.FULL
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|||||||
Reference in New Issue
Block a user