summaryrefslogtreecommitdiff
path: root/scratch
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2019-06-13 23:02:44 +0200
committerLi Haoyi <haoyi.sg@gmail.com>2019-06-13 23:03:03 +0200
commit158d117d7e92a4705fdd783952032bdc14bf92e8 (patch)
tree5c0446cc8959d60120c9041be4439dd3e26ae07d /scratch
parent4bbfbf95dbfc0a051837287abc0ee43bf18de4b9 (diff)
downloadmill-158d117d7e92a4705fdd783952032bdc14bf92e8.tar.gz
mill-158d117d7e92a4705fdd783952032bdc14bf92e8.tar.bz2
mill-158d117d7e92a4705fdd783952032bdc14bf92e8.zip
more fixes for scalajs env
Diffstat (limited to 'scratch')
-rw-r--r--scratch/build.sc6
1 files changed, 5 insertions, 1 deletions
diff --git a/scratch/build.sc b/scratch/build.sc
index d9271f2d..d2b4ec54 100644
--- a/scratch/build.sc
+++ b/scratch/build.sc
@@ -2,6 +2,10 @@ import mill.Agg
import mill.scalalib._
object core extends ScalaModule{
- def scalaVersion = "2.13.0-RC2"
+ def scalaVersion = "2.12.8"
+ def ivyDeps = Agg(
+ ivy"org.eclipse.jetty:jetty-websocket:8.1.16.v20140903",
+ ivy"org.eclipse.jetty:jetty-server:8.1.16.v20140903"
+ )
}