-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
65 lines (58 loc) · 2.55 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
val ktor_version: String by project
val kotlin_version: String by project
val koin_version: String by project
val logback_version: String by project
val kotlinx_datetime_version: String by project
val exposed_version: String by project
val postgres_version: String by project
val flyway_version: String by project
val hikari_version: String by project
val h2_version: String by project
val assertj_version: String by project
plugins {
kotlin("jvm") version "2.0.21"
id("io.ktor.plugin") version "3.0.0"
id("org.jetbrains.kotlin.plugin.serialization") version "2.0.21"
}
group = "bitxon.ktor"
version = "0.0.1"
application {
mainClass.set("io.ktor.server.netty.EngineMain")
val isDevelopment: Boolean = project.ext.has("development")
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=$isDevelopment")
}
repositories {
mavenCentral()
}
dependencies {
// Kotlin
implementation("org.jetbrains.kotlinx:kotlinx-datetime:$kotlinx_datetime_version")
// Ktor
implementation("io.ktor:ktor-server-core")
implementation("io.ktor:ktor-server-netty")
implementation("io.ktor:ktor-server-config-yaml")
implementation("io.ktor:ktor-server-call-logging")
implementation("io.ktor:ktor-server-host-common")
implementation("io.ktor:ktor-server-status-pages")
implementation("io.ktor:ktor-server-content-negotiation")
implementation("io.ktor:ktor-serialization-kotlinx-json")
// Koin
implementation("io.insert-koin:koin-ktor:$koin_version")
implementation("io.insert-koin:koin-core:$koin_version")
implementation("io.insert-koin:koin-logger-slf4j:$koin_version")
// Database
implementation("org.jetbrains.exposed:exposed-core:$exposed_version")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposed_version")
implementation("org.jetbrains.exposed:exposed-dao:$exposed_version")
implementation("org.jetbrains.exposed:exposed-java-time:$exposed_version")
implementation("org.postgresql:postgresql:$postgres_version")
implementation("org.flywaydb:flyway-database-postgresql:$flyway_version")
implementation("com.zaxxer:HikariCP:$hikari_version")
implementation("com.h2database:h2:$h2_version")
implementation("ch.qos.logback:logback-classic:$logback_version")
testImplementation("io.ktor:ktor-server-test-host")
testImplementation("io.ktor:ktor-client-content-negotiation")
testImplementation("io.ktor:ktor-client-logging")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
testImplementation("org.assertj:assertj-core:$assertj_version")
}