aboutsummaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
Diffstat (limited to 'build.sc')
-rw-r--r--build.sc3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.sc b/build.sc
index 91c464d..73216b7 100644
--- a/build.sc
+++ b/build.sc
@@ -4,7 +4,8 @@ object server extends ScalaModule {
def scalaVersion = "2.13.1"
def ivyDeps = Agg(
- ivy"com.lihaoyi::cask:0.3.6" // web framework, http://www.lihaoyi.com/cask/
+ 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/
)
}