-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
61 lines (47 loc) · 1.44 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
val kotlin_version: String by project
val logback_version: String by project
val logstash_version: String by project
plugins {
kotlin("jvm") version "2.0.21"
kotlin("plugin.serialization") version "2.0.21"
id("io.ktor.plugin") version "3.0.0"
}
group = "no.javabin"
version = "0.0.1"
application {
mainClass.set("no.javabin.member_lookup.ApplicationKt")
val isDevelopment: Boolean = project.ext.has("development")
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=$isDevelopment")
}
kotlin {
jvmToolchain(21)
}
ktor {
fatJar {
archiveFileName.set("app.jar")
}
}
tasks.test {
useJUnitPlatform()
}
repositories {
mavenCentral()
}
dependencies {
// Server
implementation("io.ktor:ktor-server-core-jvm")
implementation("io.ktor:ktor-server-netty-jvm")
implementation("io.ktor:ktor-server-content-negotiation")
testImplementation("io.ktor:ktor-server-test-host-jvm")
// Http Client
implementation("io.ktor:ktor-client-content-negotiation")
implementation("io.ktor:ktor-client-cio")
implementation("io.ktor:ktor-client-core")
// Serialization
implementation("io.ktor:ktor-serialization-kotlinx-json")
// Logging
implementation("ch.qos.logback:logback-classic:$logback_version")
runtimeOnly("net.logstash.logback:logstash-logback-encoder:$logstash_version")
// Testing
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
}