summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-08-13 03:54:50 +0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-08-13 03:54:50 +0800
commit2fc9fd22084bb4a89a72be525c18fc409303ada5 (patch)
tree511734c255237e99ba0b5b302232073572faaa38 /build.sc
parent790deda0f38e36c7378ff05a9c234a56e14a5d6b (diff)
downloadcask-2fc9fd22084bb4a89a72be525c18fc409303ada5.tar.gz
cask-2fc9fd22084bb4a89a72be525c18fc409303ada5.tar.bz2
cask-2fc9fd22084bb4a89a72be525c18fc409303ada5.zip
Basic websocket support works
Diffstat (limited to 'build.sc')
-rw-r--r--build.sc3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.sc b/build.sc
index 231ebb2..18ca871 100644
--- a/build.sc
+++ b/build.sc
@@ -19,6 +19,7 @@ import $file.example.todo.build
import $file.example.todoApi.build
import $file.example.todoDb.build
import $file.example.variableRoutes.build
+import $file.example.websockets.build
object cask extends ScalaModule with PublishModule {
def scalaVersion = "2.12.6"
@@ -80,6 +81,7 @@ object example extends Module{
object todoApi extends $file.example.todoApi.build.AppModule with LocalModule
object todoDb extends $file.example.todoDb.build.AppModule with LocalModule
object variableRoutes extends $file.example.variableRoutes.build.AppModule with LocalModule
+ object websockets extends $file.example.websockets.build.AppModule with LocalModule
}
def publishVersion = T.input($file.ci.version.publishVersion)
@@ -121,6 +123,7 @@ def uploadToGithub(authKey: String) = T.command{
$file.example.todoApi.build.millSourcePath,
$file.example.todoDb.build.millSourcePath,
$file.example.variableRoutes.build.millSourcePath,
+ $file.example.websockets.build.millSourcePath,
)
for(example <- examples){
val f = tmp.dir()