75 lines
1.9 KiB
Plaintext
75 lines
1.9 KiB
Plaintext
plugins {
|
|
id("ru.mipt.npm.gradle.mpp")
|
|
application
|
|
}
|
|
|
|
group = "ru.mipt.npm"
|
|
|
|
val ktorVersion: String = ru.mipt.npm.gradle.KScienceVersions.ktorVersion
|
|
|
|
kscience {
|
|
useCoroutines()
|
|
useSerialization()
|
|
application()
|
|
}
|
|
|
|
kotlin {
|
|
jvm {
|
|
withJava()
|
|
}
|
|
|
|
afterEvaluate {
|
|
val jsBrowserDistribution by tasks.getting
|
|
|
|
tasks.getByName<ProcessResources>("jvmProcessResources") {
|
|
dependsOn(jsBrowserDistribution)
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
from(jsBrowserDistribution)
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation(project(":visionforge-solid"))
|
|
}
|
|
}
|
|
jvmMain {
|
|
dependencies {
|
|
implementation("org.apache.commons:commons-math3:3.6.1")
|
|
implementation("io.ktor:ktor-server-cio:$ktorVersion")
|
|
implementation("io.ktor:ktor-serialization:$ktorVersion")
|
|
}
|
|
}
|
|
jsMain {
|
|
dependencies {
|
|
implementation(project(":ui:bootstrap"))
|
|
implementation("io.ktor:ktor-client-js:$ktorVersion")
|
|
implementation("io.ktor:ktor-client-serialization:$ktorVersion")
|
|
implementation(project(":visionforge-threejs"))
|
|
implementation(devNpm("webpack-bundle-analyzer", "4.4.0"))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass.set("ru.mipt.npm.muon.monitor.server.MMServerKt")
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinJsCompile>() {
|
|
kotlinOptions {
|
|
freeCompilerArgs = freeCompilerArgs + "-Xir-property-lazy-initialization"
|
|
}
|
|
}
|
|
|
|
//distributions {
|
|
// main {
|
|
// contents {
|
|
// from("$buildDir/libs") {
|
|
// rename("${rootProject.name}-jvm", rootProject.name)
|
|
// into("lib")
|
|
// }
|
|
// }
|
|
// }
|
|
//} |