-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
44 lines (33 loc) · 1.27 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
val ktorVersion: String by project
val kotlinVersion: String by project
val logbackVersion: String by project
plugins {
application
kotlin("jvm") version "1.4.32"
kotlin("plugin.serialization") version "1.4.32"
}
group = "io.wisoft"
version = "0.0.1"
application {
mainClass.set("io.ktor.server.netty.EngineMain")
}
repositories {
// mavenCentral()
gradlePluginPortal()
}
val exposedVersion: String by project
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2")
implementation("io.ktor:ktor-server-core:$ktorVersion")
implementation("io.ktor:ktor-server-netty:$ktorVersion")
implementation("io.ktor:ktor-serialization:$ktorVersion")
testImplementation("io.ktor:ktor-server-tests:$ktorVersion")
implementation("ch.qos.logback:logback-classic:$logbackVersion")
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-java-time:$exposedVersion")
runtimeOnly("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
// runtimeOnly("com.h2database:h2:1.4.200")
runtimeOnly("org.postgresql:postgresql:42.2.19.jre7")
implementation("com.zaxxer:HikariCP:4.0.3")
}