Don't pack kotlin-daemon-client and daemon-common into kotlin-compiler-runner jar

This commit is contained in:
Alexey Tsvetkov
2018-02-22 08:10:38 +03:00
parent c736f229ce
commit ceb243c096
2 changed files with 1 additions and 4 deletions
@@ -26,10 +26,6 @@ sourceSets {
}
val jar: Jar by tasks
jar.apply {
from(getSourceSetsFrom(":kotlin-daemon-client")["main"].output.classesDirs)
from(getSourceSetsFrom(":compiler:daemon-common")["main"].output.classesDirs)
}
runtimeJar(rewriteDepsToShadedCompiler(jar))
sourcesJar()
+1
View File
@@ -21,6 +21,7 @@ dependencies {
compile(project(":compiler:util"))
compile(project(":kotlin-build-common"))
compile(project(":compiler:daemon-common"))
compile(projectRuntimeJar(":kotlin-daemon-client"))
compile(project(":kotlin-compiler-runner")) { isTransitive = false }
compile(project(":compiler:plugin-api"))
compile(project(":eval4j"))