2020-05-16 19:26:28 +03:00
|
|
|
import org.jetbrains.kotlin.gradle.plugin.KotlinCompilation.Companion.MAIN_COMPILATION_NAME
|
2020-03-16 22:24:57 +03:00
|
|
|
import scientifik.jsDistDirectory
|
2019-12-26 22:21:10 +03:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("scientifik.mpp")
|
|
|
|
id("application")
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "ru.mipt.npm"
|
|
|
|
|
2020-03-23 22:19:52 +03:00
|
|
|
val ktorVersion = "1.3.2"
|
2019-12-30 11:40:37 +03:00
|
|
|
|
2019-12-26 22:21:10 +03:00
|
|
|
kotlin {
|
|
|
|
|
2020-03-17 11:36:17 +03:00
|
|
|
val installJS = tasks.getByName("jsBrowserDistribution")
|
2019-12-30 17:14:42 +03:00
|
|
|
|
2020-05-16 19:26:28 +03:00
|
|
|
js {
|
2020-04-13 17:09:44 +03:00
|
|
|
browser {
|
|
|
|
dceTask {
|
|
|
|
dceOptions {
|
|
|
|
keep("ktor-ktor-io.\$\$importsForInline\$\$.ktor-ktor-io.io.ktor.utils.io")
|
|
|
|
}
|
|
|
|
}
|
2020-04-18 16:06:00 +03:00
|
|
|
webpackTask {
|
|
|
|
mode = org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpackConfig.Mode.PRODUCTION
|
|
|
|
}
|
2020-04-13 17:09:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-30 17:14:42 +03:00
|
|
|
jvm {
|
|
|
|
withJava()
|
2020-05-16 19:26:28 +03:00
|
|
|
compilations[MAIN_COMPILATION_NAME]?.apply {
|
|
|
|
tasks.getByName<ProcessResources>(processResourcesTaskName) {
|
2019-12-30 17:14:42 +03:00
|
|
|
dependsOn(installJS)
|
|
|
|
afterEvaluate {
|
2020-03-16 22:24:57 +03:00
|
|
|
from(project.jsDistDirectory)
|
2019-12-30 17:14:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-16 19:26:28 +03:00
|
|
|
|
2019-12-30 17:14:42 +03:00
|
|
|
}
|
|
|
|
|
2019-12-26 22:21:10 +03:00
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2020-08-05 22:03:47 +03:00
|
|
|
implementation(project(":visionforge-spatial"))
|
2019-12-30 11:40:37 +03:00
|
|
|
}
|
|
|
|
}
|
2019-12-30 17:14:42 +03:00
|
|
|
jvmMain {
|
2019-12-30 11:40:37 +03:00
|
|
|
dependencies {
|
|
|
|
implementation("org.apache.commons:commons-math3:3.6.1")
|
2020-03-23 22:19:52 +03:00
|
|
|
implementation("io.ktor:ktor-server-cio:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-serialization:$ktorVersion")
|
2019-12-26 22:21:10 +03:00
|
|
|
}
|
|
|
|
}
|
2020-03-16 22:24:57 +03:00
|
|
|
jsMain {
|
|
|
|
dependencies {
|
2020-05-16 19:26:28 +03:00
|
|
|
implementation(project(":ui:bootstrap"))
|
2020-03-23 22:19:52 +03:00
|
|
|
implementation("io.ktor:ktor-client-js:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-client-serialization-js:$ktorVersion")
|
2019-12-31 16:06:38 +03:00
|
|
|
implementation(npm("text-encoding"))
|
|
|
|
implementation(npm("abort-controller"))
|
2020-03-23 22:19:52 +03:00
|
|
|
implementation(npm("bufferutil"))
|
|
|
|
implementation(npm("utf-8-validate"))
|
2020-04-10 19:25:52 +03:00
|
|
|
implementation(npm("fs"))
|
2020-03-23 22:19:52 +03:00
|
|
|
// implementation(npm("jquery"))
|
|
|
|
// implementation(npm("popper.js"))
|
|
|
|
// implementation(npm("react-is"))
|
2019-12-31 16:06:38 +03:00
|
|
|
}
|
|
|
|
}
|
2019-12-26 22:21:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
2020-03-23 22:19:52 +03:00
|
|
|
mainClassName = "ru.mipt.npm.muon.monitor.server.MMServerKt"
|
2020-08-05 15:24:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
distributions {
|
|
|
|
main {
|
|
|
|
contents {
|
|
|
|
from("$buildDir/libs") {
|
|
|
|
rename("${rootProject.name}-jvm", rootProject.name)
|
|
|
|
into("lib")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-16 19:26:28 +03:00
|
|
|
}
|