Add missing artifact, fix some deps and publishing
This commit is contained in:
@@ -1,9 +1,14 @@
|
||||
|
||||
description = "Compiler runner + daemon client"
|
||||
|
||||
apply { plugin("kotlin") }
|
||||
|
||||
jvmTarget = "1.6"
|
||||
|
||||
val packIntoJar by configurations.creating
|
||||
|
||||
dependencies {
|
||||
val compile by configurations
|
||||
compile(project(":kotlin-build-common"))
|
||||
compile(project(":compiler:cli-common"))
|
||||
compile(project(":kotlin-preloader"))
|
||||
@@ -11,6 +16,7 @@ dependencies {
|
||||
compile(project(":compiler:daemon-common"))
|
||||
compile(project(":kotlin-daemon-client"))
|
||||
compile(project(":compiler:util"))
|
||||
packIntoJar(projectClasses(":compiler:daemon-common"))
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
@@ -18,3 +24,13 @@ sourceSets {
|
||||
"test" {}
|
||||
}
|
||||
|
||||
evaluationDependsOn(":kotlin-daemon-client")
|
||||
|
||||
runtimeJar {
|
||||
from(packIntoJar)
|
||||
from(project(":kotlin-daemon-client").the<JavaPluginConvention>().sourceSets["main"].output.classesDirs)
|
||||
}
|
||||
sourcesJar()
|
||||
javadocJar()
|
||||
|
||||
publish()
|
||||
|
||||
Reference in New Issue
Block a user