Pill: Add extra stdlib jars as dist libraries
This commit is contained in:
@@ -1,12 +1,17 @@
|
|||||||
description = 'Kotlin Standard Library JDK 7 extension'
|
description = 'Kotlin Standard Library JDK 7 extension'
|
||||||
|
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
apply plugin: 'pill-configurable'
|
||||||
|
|
||||||
configureJvm6Project(project)
|
configureJvm6Project(project)
|
||||||
configureDist(project)
|
configureDist(project)
|
||||||
configurePublishing(project)
|
configurePublishing(project)
|
||||||
ext.javaHome = JDK_17
|
ext.javaHome = JDK_17
|
||||||
|
|
||||||
|
pill {
|
||||||
|
importAsLibrary = true
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':kotlin-stdlib')
|
compile project(':kotlin-stdlib')
|
||||||
testCompile project(':kotlin-test:kotlin-test-junit')
|
testCompile project(':kotlin-test:kotlin-test-junit')
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
description = 'Kotlin Standard Library JDK 8 extension'
|
description = 'Kotlin Standard Library JDK 8 extension'
|
||||||
|
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
apply plugin: 'pill-configurable'
|
||||||
|
|
||||||
configureJvm6Project(project)
|
configureJvm6Project(project)
|
||||||
configureDist(project)
|
configureDist(project)
|
||||||
@@ -8,6 +9,10 @@ configurePublishing(project)
|
|||||||
ext.javaHome = JDK_18
|
ext.javaHome = JDK_18
|
||||||
ext.jvmTarget = "1.8"
|
ext.jvmTarget = "1.8"
|
||||||
|
|
||||||
|
pill {
|
||||||
|
importAsLibrary = true
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':kotlin-stdlib')
|
compile project(':kotlin-stdlib')
|
||||||
compile project(':kotlin-stdlib-jdk7')
|
compile project(':kotlin-stdlib-jdk7')
|
||||||
|
|||||||
@@ -1,12 +1,17 @@
|
|||||||
description = 'Kotlin Standard Library JRE 7 extension (deprecated)'
|
description = 'Kotlin Standard Library JRE 7 extension (deprecated)'
|
||||||
|
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
apply plugin: 'pill-configurable'
|
||||||
|
|
||||||
configureJvm6Project(project)
|
configureJvm6Project(project)
|
||||||
configureDist(project)
|
configureDist(project)
|
||||||
configurePublishing(project)
|
configurePublishing(project)
|
||||||
ext.javaHome = JDK_17
|
ext.javaHome = JDK_17
|
||||||
|
|
||||||
|
pill {
|
||||||
|
importAsLibrary = true
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':kotlin-stdlib')
|
compile project(':kotlin-stdlib')
|
||||||
testCompile project(':kotlin-test:kotlin-test-junit')
|
testCompile project(':kotlin-test:kotlin-test-junit')
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
description = 'Kotlin Standard Library JRE 8 extension (deprecated)'
|
description = 'Kotlin Standard Library JRE 8 extension (deprecated)'
|
||||||
|
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
apply plugin: 'pill-configurable'
|
||||||
|
|
||||||
configureJvm6Project(project)
|
configureJvm6Project(project)
|
||||||
configureDist(project)
|
configureDist(project)
|
||||||
@@ -8,6 +9,10 @@ configurePublishing(project)
|
|||||||
ext.javaHome = JDK_18
|
ext.javaHome = JDK_18
|
||||||
ext.jvmTarget = "1.8"
|
ext.jvmTarget = "1.8"
|
||||||
|
|
||||||
|
pill {
|
||||||
|
importAsLibrary = true
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(':kotlin-stdlib')
|
compile project(':kotlin-stdlib')
|
||||||
compile project(':kotlin-stdlib-jre7')
|
compile project(':kotlin-stdlib-jre7')
|
||||||
|
|||||||
@@ -1,11 +1,16 @@
|
|||||||
description = 'Kotlin annotations for JVM'
|
description = 'Kotlin annotations for JVM'
|
||||||
|
|
||||||
apply plugin: 'kotlin'
|
apply plugin: 'kotlin'
|
||||||
|
apply plugin: 'pill-configurable'
|
||||||
|
|
||||||
configureJvm6Project(project)
|
configureJvm6Project(project)
|
||||||
configureDist(project)
|
configureDist(project)
|
||||||
configurePublishing(project)
|
configurePublishing(project)
|
||||||
|
|
||||||
|
pill {
|
||||||
|
importAsLibrary = true
|
||||||
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
main {
|
main {
|
||||||
java {
|
java {
|
||||||
|
|||||||
Reference in New Issue
Block a user