-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
35 lines (30 loc) · 1008 Bytes
/
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
dependencies {
// Project dependencies
implementation(project(":core"))
implementation(project(":undertow"))
implementation(project(":gsonparser"))
implementation(project(":shank"))
// Database
implementation(project(":exposed"))
implementation(project(":exposed-h2"))
implementation(project(":exposed-postgres"))
// Security & Utils
implementation(libs.argon2)
implementation(libs.mockk)
// implementation(libs.shank)
// JWT
implementation(libs.jwt.api)
runtimeOnly(libs.jwt.impl)
runtimeOnly(libs.jwt.gson)
// Logging
implementation(libs.logback.classic)
implementation(libs.logstash.encoder)
// Testing
testImplementation(project(":tests"))
testImplementation(project(":kofix"))
testImplementation(project(":exposed-testing"))
testImplementation(platform(libs.junit.bom))
testImplementation(libs.assertj.core)
testImplementation(libs.assertk.core)
testImplementation(libs.junit.jupiter)
}