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

23 lines
400 B
Plaintext
Raw Normal View History

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()
// }
2020-11-07 17:32:18 +03:00
application()
2023-05-14 18:33:30 +03:00
dependencies{
implementation(projects.visionforgeThreejs.visionforgeThreejsServer)
implementation("ch.qos.logback:logback-classic:1.4.5")
}
2020-11-07 17:32:18 +03:00
}
2020-12-12 21:19:41 +03:00
group = "ru.mipt.npm"
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
}