forked from antonarhipov/ktor-ddd-example
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
57 lines (47 loc) · 1.79 KB
/
build.gradle.kts
File metadata and controls
57 lines (47 loc) · 1.79 KB
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
val kotlin_version: String by project
val logback_version: String by project
plugins {
kotlin("jvm") version "2.1.20"
id("io.ktor.plugin") version "3.1.2"
id("org.jetbrains.kotlin.plugin.serialization") version "2.1.20"
id("io.exoquery.exoquery-plugin") version "2.1.20-L.1.2.6.PL"
}
group = "com.example"
version = "0.0.1"
application {
mainClass = "io.ktor.server.netty.EngineMain"
val isDevelopment: Boolean = project.ext.has("development")
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=$isDevelopment")
}
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
implementation("io.exoquery:exoquery-runner-jdbc:L.1.2.6.PL-L.1.2.6")
// Only one of these is needed
implementation("io.zonky.test:embedded-postgres:2.0.7")
implementation("com.zaxxer:HikariCP:5.0.1")
api("org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0")
api("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0")
api("org.jetbrains.kotlinx:kotlinx-serialization-protobuf:1.8.0")
implementation("io.exoquery:controller-core-jvm") {
version {
strictly("LA.3.2.3")
}
}
implementation("io.exoquery:controller-jdbc-jvm") {
version {
strictly("LA.3.2.3")
}
}
implementation("io.ktor:ktor-server-core")
implementation("io.ktor:ktor-server-content-negotiation")
implementation("io.ktor:ktor-serialization-kotlinx-json")
implementation("io.ktor:ktor-server-netty")
implementation("io.ktor:ktor-server-call-logging")
implementation("ch.qos.logback:logback-classic:$logback_version")
implementation("io.ktor:ktor-server-config-yaml")
testImplementation("io.ktor:ktor-server-test-host")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
}