mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
18 lines
402 B
Plaintext
18 lines
402 B
Plaintext
plugins {
|
|
id("world.phantasmal.jvm")
|
|
kotlin("plugin.serialization")
|
|
application
|
|
}
|
|
|
|
application {
|
|
mainClass.set("world.phantasmal.psoserv.MainKt")
|
|
}
|
|
|
|
val serializationVersion: String by project.extra
|
|
|
|
dependencies {
|
|
implementation(project(":core"))
|
|
implementation(project(":psolib"))
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$serializationVersion")
|
|
}
|