Pill: Import common modules as libraries
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
description = 'Kotlin Test Annotations Common'
|
description = 'Kotlin Test Annotations Common'
|
||||||
|
|
||||||
apply plugin: 'kotlin-platform-common'
|
apply plugin: 'kotlin-platform-common'
|
||||||
|
apply plugin: 'pill-configurable'
|
||||||
|
|
||||||
configureDist(project)
|
configureDist(project)
|
||||||
configurePublishing(project)
|
configurePublishing(project)
|
||||||
@@ -10,6 +11,10 @@ dependencies {
|
|||||||
compile project(':kotlin-stdlib-common')
|
compile project(':kotlin-stdlib-common')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
importAsLibrary = true
|
||||||
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
manifestAttributes(manifest, project, 'Test')
|
manifestAttributes(manifest, project, 'Test')
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
description = 'Kotlin Test Common'
|
description = 'Kotlin Test Common'
|
||||||
|
|
||||||
apply plugin: 'kotlin-platform-common'
|
apply plugin: 'kotlin-platform-common'
|
||||||
|
apply plugin: 'pill-configurable'
|
||||||
|
|
||||||
configureDist(project)
|
configureDist(project)
|
||||||
configurePublishing(project)
|
configurePublishing(project)
|
||||||
@@ -11,6 +12,10 @@ dependencies {
|
|||||||
testCompile project(":kotlin-test:kotlin-test-annotations-common")
|
testCompile project(":kotlin-test:kotlin-test-annotations-common")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pill {
|
||||||
|
importAsLibrary = true
|
||||||
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
manifestAttributes(manifest, project, 'Test')
|
manifestAttributes(manifest, project, 'Test')
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
description = 'Kotlin Common Standard Library'
|
description = 'Kotlin Common Standard Library'
|
||||||
|
|
||||||
apply plugin: 'kotlin-platform-common'
|
apply plugin: 'kotlin-platform-common'
|
||||||
|
apply plugin: 'pill-configurable'
|
||||||
|
|
||||||
configureDist(project)
|
configureDist(project)
|
||||||
configurePublishing(project)
|
configurePublishing(project)
|
||||||
@@ -8,6 +9,10 @@ configurePublishing(project)
|
|||||||
def commonSrcDir = "../src"
|
def commonSrcDir = "../src"
|
||||||
def commonTestSrcDir = "../test"
|
def commonTestSrcDir = "../test"
|
||||||
|
|
||||||
|
pill {
|
||||||
|
importAsLibrary = true
|
||||||
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
main {
|
main {
|
||||||
kotlin {
|
kotlin {
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ description = "Kotlin Scripting IDEA Plugin"
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm")
|
kotlin("jvm")
|
||||||
|
id("jps-compatible")
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|||||||
Reference in New Issue
Block a user