summaryrefslogtreecommitdiff
path: root/scratch
diff options
context:
space:
mode:
authorAlexandra Dima <alexandra.dima@jetbrains.com>2019-07-12 12:31:35 +0200
committerSamvel Abrahamyan <samvel1024@gmail.com>2019-10-12 14:33:01 +0200
commit9c39dd6776944b15433f44c5c4fba994cdd7d152 (patch)
tree92b84f1ae0597812d49a04f317d96dcf0baff5c9 /scratch
parentcf2ddf2f9da40007847ca69dc521098727b98f6d (diff)
downloadmill-9c39dd6776944b15433f44c5c4fba994cdd7d152.tar.gz
mill-9c39dd6776944b15433f44c5c4fba994cdd7d152.tar.bz2
mill-9c39dd6776944b15433f44c5c4fba994cdd7d152.zip
Added support for merging compile parameters from the mill build file with the compile parameters specified through bsp
Diffstat (limited to 'scratch')
-rw-r--r--scratch/build.sc14
1 files changed, 13 insertions, 1 deletions
diff --git a/scratch/build.sc b/scratch/build.sc
index c36b554f..85228a20 100644
--- a/scratch/build.sc
+++ b/scratch/build.sc
@@ -1,5 +1,5 @@
import mill._, scalalib._
-//import $ivy.`com.lihaoyi::mill-contrib-bsp:0.4.1-7-be21ae-DIRTY1fe41d7a`
+//import $ivy.`com.lihaoyi::mill-contrib-bsp:0.4.1-16-c95bc4-DIRTYd5dc7fa5`
object mill_exercise extends ScalaModule {
def scalaVersion = "2.12.8"
@@ -28,3 +28,15 @@ object mill_exercise extends ScalaModule {
def testFrameworks = Seq("org.scalatest.tools.Framework")
}
}
+
+object random extends SbtModule {
+
+ def scalacOptions = Seq(
+ //"-Ywarn-unused",
+ "-Ylog-classpath"
+ )
+
+ def scalaVersion = "2.12.8"
+
+ def ivyDeps = Agg(ivy"ch.epfl.scala:bsp4j:2.0.0-M3")
+}