
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
17 lines
409 B
Plaintext
17 lines
409 B
Plaintext
plugins {
|
|
id("io.bkbn.sourdough.library")
|
|
}
|
|
|
|
dependencies {
|
|
// IMPLEMENTATION
|
|
|
|
val ktorVersion: String by project
|
|
implementation(projects.kompendiumCore)
|
|
implementation(group = "io.ktor", name = "ktor-server-core", version = ktorVersion)
|
|
implementation(group = "io.ktor", name = "ktor-locations", version = ktorVersion)
|
|
|
|
// TESTING
|
|
|
|
testImplementation(testFixtures(projects.kompendiumCore))
|
|
}
|