-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
55 lines (48 loc) · 2.16 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
val ktor_version = "2.2.2"
val kotlin_version: String by project
val logback_version: String by project
val exposedVersion = "0.41.1"
val hikariCpVersion = "5.0.1"
val flywayVersion = "9.10.2"
val postgresVersion = "42.2.18"
plugins {
application
kotlin("jvm") version "1.7.22"
id("io.ktor.plugin") version "2.2.1"
id("org.jetbrains.kotlin.plugin.serialization") version "1.7.22"
}
group = "hvalbanken"
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()
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap") }
}
dependencies {
implementation("io.ktor:ktor-server-core:$ktor_version")
implementation("io.ktor:ktor-server-netty:$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("io.ktor:ktor-client-core:$ktor_version")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.12.1")
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
implementation("com.zaxxer:HikariCP:$hikariCpVersion")
implementation("org.flywaydb:flyway-core:$flywayVersion")
implementation("org.postgresql:postgresql:$postgresVersion")
implementation("io.ktor:ktor-server-auth:$ktor_version")
implementation("redis.clients:jedis:3.6.0")
implementation ("com.google.code.gson:gson:2.8.9")
implementation("at.favre.lib:bcrypt:0.10.2")
implementation("io.ktor:ktor-server-auth:$ktor_version")
implementation("io.ktor:ktor-server-auth-jwt:$ktor_version")
testImplementation("io.mockk:mockk:1.10.0")
testImplementation("io.ktor:ktor-server-test-host:$ktor_version")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
}