-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
50 lines (41 loc) · 1.76 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
plugins {
kotlin("jvm") version "1.9.20"
application
}
group = "me.relph"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation(platform("dev.forkhandles:forkhandles-bom:2.3.0.0"))
implementation(group = "dev.forkhandles", name = "result4k")
implementation(group = "dev.forkhandles", name = "values4k")
implementation(platform("org.http4k:http4k-bom:5.10.2.0"))
implementation(group = "org.http4k", name = "http4k-core")
implementation(group = "org.http4k", name = "http4k-server-jetty")
implementation(group = "org.http4k", name = "http4k-client-okhttp")
implementation(group = "org.http4k", name = "http4k-format-jackson")
implementation(platform("org.jetbrains.exposed:exposed-bom:0.44.1"))
implementation(group = "org.jetbrains.exposed", name = "exposed-core")
implementation(group = "org.jetbrains.exposed", name = "exposed-jdbc")
implementation(group = "org.jetbrains.exposed", name = "exposed-java-time")
implementation(group = "org.postgresql", name = "postgresql", version = "42.6.0")
testImplementation(kotlin("test"))
testImplementation("io.strikt:strikt-core:0.34.1")
testImplementation("io.kotest:kotest-assertions-core:5.8.0")
testImplementation(group = "org.http4k", name = "http4k-testing-kotest")
testImplementation(group = "dev.mrbergin", name = "result4k-kotest-matchers", version = "2022.10.2")
testImplementation(group = "com.h2database",name = "h2", version = "2.2.224")
}
tasks.test {
useJUnitPlatform()
}
tasks.wrapper {
gradleVersion = "8.4"
distributionSha256Sum = "f2b9ed0faf8472cbe469255ae6c86eddb77076c75191741b4a462f33128dd419"
distributionType = Wrapper.DistributionType.ALL
}
application {
mainClass.set("MainKt")
}