Add include/kotlin-compiler project

Needed to include kotlin compiler project into a composite build (kotlin native + cotlin compiler)
This commit is contained in:
Vyacheslav Gerasimov
2018-02-26 13:14:28 +03:00
parent 361e8e065c
commit 0e879896e0
2 changed files with 45 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
plugins {
kotlin("jvm")
}
val compile by configurations
val fatJarContents by configurations.creating
val fatJarContentsStripMetadata by configurations.creating
val fatJarContentsStripServices by configurations.creating
val compilerModules: Array<String> by rootProject.extra
val compilerManifestClassPath = "kotlin-stdlib.jar kotlin-reflect.jar kotlin-script-runtime.jar"
dependencies {
compilerModules.forEach { module ->
compile(project(module)) { isTransitive = false }
}
fatJarContents(project(":core:builtins", configuration = "builtins"))
fatJarContents(commonDep("javax.inject"))
fatJarContents(commonDep("org.jline", "jline"))
fatJarContents(commonDep("org.fusesource.jansi", "jansi"))
fatJarContents(protobufFull())
fatJarContents(commonDep("com.google.code.findbugs", "jsr305"))
fatJarContents(commonDep("io.javaslang", "javaslang"))
fatJarContents(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) { isTransitive = false }
fatJarContents(intellijCoreDep()) { includeJars("intellij-core") }
fatJarContents(intellijDep()) { includeIntellijCoreJarDependencies(project, { !(it.startsWith("jdom") || it.startsWith("log4j")) }) }
fatJarContents(intellijDep()) { includeJars("jna-platform") }
fatJarContentsStripServices(intellijDep("jps-standalone")) { includeJars("jps-model") }
fatJarContentsStripMetadata(intellijDep()) { includeJars("oromatcher", "jdom", "log4j") }
}
val jar: Jar by tasks
jar.apply {
from(compile.filter { it.extension == "jar" }.map { zipTree(it) })
from(fatJarContents.map { zipTree(it) })
from(fatJarContentsStripServices.map { zipTree(it) }) { exclude("META-INF/services/**") }
from(fatJarContentsStripMetadata.map { zipTree(it) }) { exclude("META-INF/jb/** META-INF/LICENSE") }
manifest.attributes["Class-Path"] = compilerManifestClassPath
manifest.attributes["Main-Class"] = "org.jetbrains.kotlin.cli.jvm.K2JVMCompiler"
}
+1
View File
@@ -150,6 +150,7 @@ include ":kotlin-build-common",
":kotlin-annotations-jvm",
":kotlin-annotations-android",
":pill:generate-all-tests",
":include:kotlin-compiler",
// plugin markers:
':kotlin-gradle-plugin:plugin-marker',