-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle.kts
47 lines (38 loc) · 1.58 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
val ktor_version: String by project
val kotlin_version: String by project
val logback_version: String by project
val exposed_version: String by project
val h2_version: String by project
val postgres_version: String by project
plugins {
kotlin("jvm") version "1.9.10"
id("io.ktor.plugin") version "2.3.3"
id("org.jetbrains.kotlin.plugin.serialization") version "1.9.10"
}
group = "it.rattly"
version = "0.0.1"
application {
mainClass.set("it.rattly.ApplicationKt")
val isDevelopment: Boolean = project.ext.has("development")
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=$isDevelopment")
}
repositories {
mavenCentral()
maven { url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-js-wrappers") }
}
dependencies {
implementation("org.jetbrains:kotlin-css-jvm:1.0.0-pre.129-kotlin-1.4.20")
implementation("io.ktor:ktor-server-core-jvm")
implementation("io.ktor:ktor-server-webjars-jvm")
implementation("io.ktor:ktor-server-compression-jvm")
implementation("io.ktor:ktor-server-call-logging-jvm")
implementation("io.ktor:ktor-server-content-negotiation-jvm")
implementation("io.ktor:ktor-serialization-kotlinx-json-jvm")
implementation("io.ktor:ktor-server-html-builder-jvm")
implementation("io.ktor:ktor-server-cio-jvm")
implementation("org.webjars.npm:htmx.org:1.9.4")
implementation("org.postgresql:postgresql:$postgres_version")
implementation("com.h2database:h2:$h2_version")
implementation("ch.qos.logback:logback-classic:$logback_version")
implementation("com.zaxxer:HikariCP:5.0.1")
}