-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
32 lines (24 loc) · 936 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
enablePlugins(ScalaJSPlugin)
name := "proceed"
organization := "org.proceed"
version := "1.0"
scalaVersion in ThisBuild := "2.11.8"
run <<= run in Compile in core
scalaJSStage in core := FastOptStage
jsDependencies += RuntimeDOM
lazy val root = (project in file(".")).aggregate(macros, core)
lazy val macros = (project in file("macros")).settings(
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"com.softwaremill.quicklens" %%% "quicklens" % "1.4.6"
)
)
lazy val core = (project in file("core")).settings(
libraryDependencies ++= Seq(
"com.lihaoyi" %% "utest" % "0.4.3" % "test",
"org.scala-js" %%% "scalajs-dom" % "0.9.0",
"org.scala-lang" % "scala-reflect" % "2.11.8",
"com.softwaremill.quicklens" %%% "quicklens" % "1.4.6"
),
testFrameworks += new TestFramework("utest.runner.Framework")
).enablePlugins(ScalaJSPlugin).dependsOn(macros)