60 lines
1.4 KiB
Kotlin
60 lines
1.4 KiB
Kotlin
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
|
|
|
|
description = "Kotlin Daemon Client"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
val nativePlatformVariants = listOf(
|
|
"windows-amd64",
|
|
"windows-i386",
|
|
"osx-amd64",
|
|
"osx-i386",
|
|
"linux-amd64",
|
|
"linux-i386",
|
|
"freebsd-amd64-libcpp",
|
|
"freebsd-amd64-libstdcpp",
|
|
"freebsd-i386-libcpp",
|
|
"freebsd-i386-libstdcpp"
|
|
)
|
|
|
|
dependencies {
|
|
compileOnly(project(":compiler:util"))
|
|
compileOnly(project(":compiler:cli-common"))
|
|
compileOnly(project(":daemon-common"))
|
|
compileOnly(project(":kotlin-reflect-api"))
|
|
compileOnly(project(":js:js.frontend"))
|
|
compileOnly(commonDep("net.rubygrapefruit", "native-platform"))
|
|
compileOnly(intellijDep()) { includeIntellijCoreJarDependencies(project) }
|
|
|
|
embedded(project(":daemon-common")) { isTransitive = false }
|
|
embedded(commonDep("net.rubygrapefruit", "native-platform"))
|
|
nativePlatformVariants.forEach {
|
|
embedded(commonDep("net.rubygrapefruit", "native-platform", "-$it"))
|
|
}
|
|
runtime(project(":kotlin-reflect"))
|
|
compile(commonDep("org.jetbrains.kotlinx", "kotlinx-coroutines-core")) {
|
|
isTransitive = false
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
publish()
|
|
|
|
noDefaultJar()
|
|
|
|
runtimeJar(task<ShadowJar>("shadowJar")) {
|
|
from(mainSourceSet.output)
|
|
}
|
|
|
|
sourcesJar()
|
|
|
|
javadocJar()
|
|
|
|
dist() |