visionforge/demo/sat-demo/build.gradle.kts

25 lines
457 B
Plaintext
Raw Normal View History

2020-11-07 17:32:18 +03:00
plugins {
2023-12-12 09:17:14 +03:00
id("space.kscience.gradle.mpp")
alias(spclibs.plugins.ktor)
2020-12-06 19:16:48 +03:00
application
2020-11-07 17:32:18 +03:00
}
2020-12-06 19:16:48 +03:00
2020-12-12 21:19:41 +03:00
kscience {
2021-02-16 14:49:15 +03:00
// useSerialization {
// json()
// }
2023-12-12 09:17:14 +03:00
jvm()
jvmMain{
2023-07-19 22:25:32 +03:00
implementation("io.ktor:ktor-server-cio")
2023-05-14 18:33:30 +03:00
implementation(projects.visionforgeThreejs.visionforgeThreejsServer)
2023-07-19 22:25:32 +03:00
implementation(spclibs.logback.classic)
2023-05-14 18:33:30 +03:00
}
2020-11-07 17:32:18 +03:00
}
2023-07-19 22:25:32 +03:00
group = "center.sciprog"
2020-12-06 19:16:48 +03:00
application {
2021-06-05 22:31:16 +03:00
mainClass.set("ru.mipt.npm.sat.SatServerKt")
2020-12-06 19:16:48 +03:00
}