mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-09-28 15:48:22 +00:00
Add a simple module for totps
This is a wrapper around the nice and minimal java-otp library [0]. [0] https://github.com/jchambers/java-otp
This commit is contained in:
17
build.sbt
17
build.sbt
@@ -335,6 +335,20 @@ val query =
|
||||
Dependencies.scalaJsStubs
|
||||
)
|
||||
|
||||
val totp = project
|
||||
.in(file("modules/totp"))
|
||||
.disablePlugins(RevolverPlugin)
|
||||
.settings(sharedSettings)
|
||||
.settings(testSettingsMUnit)
|
||||
.settings(
|
||||
name := "docspell-totp",
|
||||
libraryDependencies ++=
|
||||
Dependencies.javaOtp ++
|
||||
Dependencies.scodecBits ++
|
||||
Dependencies.fs2 ++
|
||||
Dependencies.circe
|
||||
)
|
||||
|
||||
val store = project
|
||||
.in(file("modules/store"))
|
||||
.disablePlugins(RevolverPlugin)
|
||||
@@ -676,7 +690,8 @@ val root = project
|
||||
restapi,
|
||||
restserver,
|
||||
query.jvm,
|
||||
query.js
|
||||
query.js,
|
||||
totp
|
||||
)
|
||||
|
||||
// --- Helpers
|
||||
|
Reference in New Issue
Block a user