-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
41 lines (35 loc) · 1.45 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
val ktor_version: String by project
val kotlin_version: String by project
val logback_version: String by project
val development: String by project
plugins {
application
kotlin("jvm") version "1.7.20"
kotlin("plugin.serialization") version "1.7.20"
id("io.ktor.plugin") version "2.1.2"
}
group = "kachnajukebox.fit.su"
version = "0.0.1"
application {
mainClass.set("kachnajukebox.fit.su.ApplicationKt")
val isDevelopment: Boolean = development == "true"
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=$isDevelopment")
}
repositories {
mavenCentral()
}
dependencies {
implementation("io.github.cdimascio:dotenv-kotlin:6.3.1")
implementation("io.insert-koin:koin-core:3.2.2")
implementation("io.insert-koin:koin-ktor:3.2.2")
implementation("io.insert-koin:koin-logger-slf4j:3.2.2")
implementation("io.ktor:ktor-server-core-jvm:$ktor_version")
implementation("io.ktor:ktor-server-netty-jvm:$ktor_version")
implementation("io.ktor:ktor-server-freemarker:$ktor_version")
implementation("io.ktor:ktor-server-content-negotiation:$ktor_version")
implementation("io.ktor:ktor-serialization-kotlinx-json:$ktor_version")
implementation("ch.qos.logback:logback-classic:$logback_version")
implementation("com.adamratzman:spotify-api-kotlin-core:3.8.8")
testImplementation("io.ktor:ktor-server-tests-jvm:$ktor_version")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
}