Add missing artifact, fix some deps and publishing

This commit is contained in:
Ilya Chernikov
2017-09-10 22:25:59 +02:00
parent a8c45819a1
commit 46884bec84
12 changed files with 78 additions and 47 deletions
@@ -7,11 +7,14 @@ jvmTarget = "1.6"
val nativePlatformUberjar = preloadedDeps("native-platform-uberjar")
val packIntoJar by configurations.creating
dependencies {
compileOnly(project(":compiler:util"))
compileOnly(project(":compiler:cli-common"))
compileOnly(project(":compiler:daemon-common"))
compileOnly(nativePlatformUberjar)
packIntoJar(projectClasses(":compiler:daemon-common"))
}
sourceSets {
@@ -23,8 +26,10 @@ runtimeJar {
nativePlatformUberjar.forEach {
from(zipTree(it))
}
from(packIntoJar)
}
sourcesJar()
javadocJar()
dist()
@@ -16,3 +16,4 @@ sourceSets {
"test" {}
}
classesDirsArtifact()