plugins { id("io.bkbn.sourdough.library") `java-test-fixtures` } dependencies { // VERSIONS val ktorVersion: String by project val kotestVersion: String by project // IMPLEMENTATION api(projects.kompendiumOas) api(projects.kompendiumAnnotations) implementation(group = "io.ktor", name = "ktor-server-core", version = ktorVersion) implementation(group = "io.ktor", name = "ktor-html-builder", version = ktorVersion) // 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.2") }