-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
61 lines (49 loc) · 2.07 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 ktor_version: String by project
val kotlin_version: String by project
val logback_version: String by project
val exposed_version: String by project
val koin_version: String by project
val detekt_version: String by project
val mysql_version: String by project
val hikari_version: String by project
val kotest_version: String by project
val mockk_version: String by project
plugins {
kotlin("jvm") version "1.8.21"
id("io.ktor.plugin") version "2.3.0"
id("org.jetbrains.kotlin.plugin.serialization") version "1.8.21"
id("io.gitlab.arturbosch.detekt") version "1.22.0"
}
group = "com.liner"
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 {
implementation("io.ktor:ktor-server-netty-jvm:$ktor_version")
implementation("io.ktor:ktor-server-core-jvm:$ktor_version")
implementation("io.ktor:ktor-server-content-negotiation-jvm:$ktor_version")
implementation("io.ktor:ktor-serialization-kotlinx-json-jvm:$ktor_version")
implementation("io.ktor:ktor-server-status-pages-jvm:$ktor_version")
implementation("io.insert-koin:koin-logger-slf4j:$koin_version")
implementation("io.insert-koin:koin-ktor:$koin_version")
implementation("org.jetbrains.exposed:exposed-core:$exposed_version")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposed_version")
implementation("ch.qos.logback:logback-classic:$logback_version")
implementation("com.mysql:mysql-connector-j:$mysql_version")
implementation("com.zaxxer:HikariCP:$hikari_version")
testImplementation("io.kotest:kotest-runner-junit5-jvm:$kotest_version")
testImplementation("io.mockk:mockk:$mockk_version")
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:$detekt_version")
}
detekt {
toolVersion = detekt_version
buildUponDefaultConfig = true
autoCorrect = true
config.setFrom(files("$rootDir/rule/detekt-config.yml"))
}