
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
19 lines
488 B
Plaintext
19 lines
488 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-auth", version = ktorVersion)
|
|
implementation(group = "io.ktor", name = "ktor-auth-jwt", version = ktorVersion)
|
|
|
|
// TESTING
|
|
|
|
testImplementation(testFixtures(projects.kompendiumCore))
|
|
}
|