aboutsummaryrefslogtreecommitdiff
path: root/server/aio/build.gradle.kts
blob: 22819f003351ab991e10a853bbf634c3a08d362c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
plugins {
	kotlin("jvm")
	application
}

dependencies {
	declareKtorVersion()
	implementation(project(":server:core"))
	implementation(project(":server:frontend"))
}

java {
	toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}

application {
	mainClass.set("moe.nea.ledger.server.core.ApplicationKt")
}