aboutsummaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorJakob Odersky <jakob@inpher.io>2019-11-25 21:10:47 -0500
committerJakob Odersky <jakob@inpher.io>2019-11-26 13:40:36 -0500
commitc458a1bd7d173419232ee6e49f3a06ddb4bb7c39 (patch)
tree403f172aa3cf8de1e6e9fa85f82a79d88d684594 /build.sc
parent03dce17329e8a430fbaf7a468a6db1779f62fa19 (diff)
downloadscala-tutorial-c458a1bd7d173419232ee6e49f3a06ddb4bb7c39.tar.gz
scala-tutorial-c458a1bd7d173419232ee6e49f3a06ddb4bb7c39.tar.bz2
scala-tutorial-c458a1bd7d173419232ee6e49f3a06ddb4bb7c39.zip
Add quill and sqlite to back message store
Diffstat (limited to 'build.sc')
-rw-r--r--build.sc4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.sc b/build.sc
index 73216b7..2a544bc 100644
--- a/build.sc
+++ b/build.sc
@@ -5,7 +5,9 @@ object server extends ScalaModule {
def ivyDeps = Agg(
ivy"com.lihaoyi::cask:0.3.6", // web framework, http://www.lihaoyi.com/cask/
- ivy"com.lihaoyi::scalatags:0.7.0" // html rendering DSL http://www.lihaoyi.com/scalatags/
+ ivy"com.lihaoyi::scalatags:0.7.0", // html rendering DSL http://www.lihaoyi.com/scalatags/
+ ivy"io.getquill::quill-jdbc:3.4.10", // language integrated queries https://getquill.io/#docs
+ ivy"org.xerial:sqlite-jdbc:3.28.0" // actual database driver, note the single ':'
)
}