Fix dependencies of kotlin-compiler(+embeddable), remove them from kotlin-maven-plugin

This commit is contained in:
Ilya Gorbunov
2017-09-08 20:22:13 +03:00
committed by Ilya Chernikov
parent ec2e7bb43c
commit 403f2c6f99
3 changed files with 16 additions and 16 deletions
@@ -13,6 +13,10 @@ buildscript {
}
}
plugins {
`java`
}
val compilerJar by configurations.creating
val kotlinEmbeddableRootPackage = "org.jetbrains.kotlin"
@@ -30,7 +34,13 @@ val packagesToRelocate =
"org.fusesource")
dependencies {
val compile by configurations
compilerJar(projectDist(":kotlin-compiler"))
compile(project(":kotlin-stdlib"))
compile(project(":kotlin-script-runtime"))
compile(project(":kotlin-reflect"))
}
runtimeJar(task<ShadowJar>("embeddable")) {