-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
47 lines (39 loc) · 1.19 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
plugins {
alias(libs.plugins.kotlin)
alias(libs.plugins.ktor)
alias(libs.plugins.serialization)
}
group = "com.alliander"
version = "0.0.1"
application {
mainClass.set("com.alliander.ApplicationKt")
val isDevelopment: Boolean = project.ext.has("development")
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=$isDevelopment")
}
repositories {
mavenCentral()
}
dependencies {
implementation("io.ktor:ktor-server-core-jvm")
implementation("io.ktor:ktor-server-content-negotiation-jvm")
implementation("io.ktor:ktor-serialization-kotlinx-json-jvm")
implementation("io.ktor:ktor-server-websockets")
implementation("io.ktor:ktor-server-cors")
implementation("io.ktor:ktor-server-netty-jvm")
implementation(libs.h2)
implementation(libs.logback)
// Database
implementation(libs.exposed)
implementation(libs.exposeddatetime)
implementation(libs.postgres)
testImplementation("io.ktor:ktor-server-test-host")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
}
kotlin {
jvmToolchain {
version = JavaVersion.VERSION_21
}
compilerOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
}
}