Files
kompendium/kompendium-locations/build.gradle.kts
Ryan Brink c29567114d feat: v2-alpha (#112)
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
2022-01-03 04:15:15 +00:00

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))
}