2020-11-07 17:32:18 +03:00
|
|
|
plugins {
|
2022-08-12 22:16:06 +03:00
|
|
|
id("space.kscience.gradle.jvm")
|
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-07-19 22:25:32 +03:00
|
|
|
useKtor()
|
2023-05-14 18:33:30 +03:00
|
|
|
dependencies{
|
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
|
|
|
}
|