
There are still some bugs, still some outstanding features, but I don't want to hold this back any longer, that way I can keep the future PRs much more focused
34 lines
1.5 KiB
Plaintext
34 lines
1.5 KiB
Plaintext
plugins {
|
|
id("io.bkbn.sourdough.library")
|
|
`java-test-fixtures`
|
|
}
|
|
|
|
dependencies {
|
|
// IMPLEMENTATION
|
|
|
|
api(projects.kompendiumOas)
|
|
api(projects.kompendiumAnnotations)
|
|
|
|
val ktorVersion: String by project
|
|
val kotestVersion: String by project
|
|
implementation(group = "io.ktor", name = "ktor-server-core", version = ktorVersion)
|
|
implementation(group = "io.ktor", name = "ktor-html-builder", version = ktorVersion)
|
|
|
|
implementation(group = "com.fasterxml.jackson.module", name = "jackson-module-kotlin", version = "2.13.0")
|
|
|
|
// TEST FIXTURES
|
|
|
|
testFixturesApi(group = "io.kotest", name = "kotest-runner-junit5-jvm", version = kotestVersion)
|
|
testFixturesApi(group = "io.kotest", name = "kotest-assertions-core-jvm", version = kotestVersion)
|
|
testFixturesApi(group = "io.kotest", name = "kotest-property-jvm", version = kotestVersion)
|
|
testFixturesApi(group = "io.kotest", name = "kotest-assertions-json-jvm", version = kotestVersion)
|
|
testFixturesApi(group = "io.kotest", name = "kotest-assertions-ktor-jvm", version = "4.4.3")
|
|
|
|
testFixturesApi(group = "io.ktor", name = "ktor-server-core", version = ktorVersion)
|
|
testFixturesApi(group = "io.ktor", name = "ktor-server-test-host", version = ktorVersion)
|
|
testFixturesApi(group = "io.ktor", name = "ktor-jackson", version = ktorVersion)
|
|
testFixturesApi(group = "io.ktor", name = "ktor-serialization", version = ktorVersion)
|
|
|
|
testFixturesApi(group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version = "1.3.1")
|
|
}
|