-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
36 lines (30 loc) · 835 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
33
34
35
36
import Dependencies._
scalacOptions += "-Ypartial-unification"
lazy val commonSettings = Seq(
organization := "com.github.sdual",
version := "0.1.0-SNAPSHOT",
scalaVersion := "2.12.8",
)
lazy val root = (project in file("."))
.aggregate(
prototype,
example
)
lazy val core = (project in file("core"))
.settings(
commonSettings,
name := "stanz",
libraryDependencies ++= stanzCommonDependencies,
)
lazy val prototype = (project in file("prototype"))
.settings(
commonSettings,
name := "prototype",
libraryDependencies ++= stanzCommonDependencies,
)
lazy val example = (project in file("example"))
.settings(
commonSettings,
name := "example",
libraryDependencies ++= stanzCommonDependencies,
).dependsOn(prototype)