-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
47 lines (41 loc) · 1.54 KB
/
build.gradle.kts
File metadata and controls
47 lines (41 loc) · 1.54 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
val ktor_version: String by project
val kotlin_version: String by project
val logback_version: String by project
val ktor_koin_version: String by project
plugins {
kotlin("jvm") version "1.9.22"
id("io.ktor.plugin") version "2.3.8"
id("org.jetbrains.kotlin.plugin.serialization") version "1.9.22"
}
group = "ru.ardyc"
version = "0.0.1"
application {
mainClass.set("ru.ardyc.ApplicationKt")
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=true")
}
ktor {
docker {
jreVersion.set(JavaVersion.VERSION_21)
localImageName.set("ghcr.io/arhostcode/repo-badge")
imageTag.set(version.toString())
}
}
repositories {
mavenCentral()
maven("https://jitpack.io")
}
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-netty-jvm")
implementation("io.ktor:ktor-client-core")
implementation("ch.qos.logback:logback-classic:$logback_version")
testImplementation("io.ktor:ktor-server-tests-jvm")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
implementation("io.ktor:ktor-server-caching-headers:$ktor_version")
implementation("io.ktor:ktor-client-jetty:$ktor_version")
implementation("io.insert-koin:koin-ktor:$ktor_koin_version")
implementation("com.github.nwillc.ksvg:ksvg:master-SNAPSHOT")
implementation("io.ktor:ktor-client-content-negotiation:$ktor_version")
}