-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
47 lines (38 loc) · 1.67 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
val ktor_version: String by project
val kotlin_version: String by project
val logback_version: String by project
val ktorm_version = "3.6.0"
val koin_version = "3.4.1"
plugins {
kotlin("jvm") version "1.8.22"
id("io.ktor.plugin") version "2.3.1"
}
group = "com.sdevprem"
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-content-negotiation-jvm:$ktor_version")
implementation("io.ktor:ktor-server-core-jvm:$ktor_version")
implementation("io.ktor:ktor-serialization-jackson-jvm:$ktor_version")
implementation("io.ktor:ktor-server-call-logging-jvm:$ktor_version")
implementation("io.ktor:ktor-server-auth-jvm:$ktor_version")
implementation("io.ktor:ktor-server-auth-jwt-jvm:$ktor_version")
implementation("io.ktor:ktor-server-netty-jvm:$ktor_version")
implementation("ch.qos.logback:logback-classic:$logback_version")
testImplementation("io.ktor:ktor-server-tests-jvm:$ktor_version")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
implementation("org.ktorm:ktorm-core:${ktorm_version}")
implementation("org.ktorm:ktorm-support-mysql:${ktorm_version}")
implementation("org.ktorm:ktorm-jackson:${ktorm_version}")
implementation("com.mysql:mysql-connector-j:8.0.33")
implementation("io.insert-koin:koin-ktor:$koin_version")
implementation("io.insert-koin:koin-logger-slf4j:$koin_version")
implementation("at.favre.lib:bcrypt:0.10.2")
}