-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
70 lines (57 loc) · 1.55 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
scalaOrganization in ThisBuild := "org.typelevel"
scalaVersion in ThisBuild := "2.11.8"
scalacOptions in Global ++= Seq(
"-deprecation",
"-encoding", "UTF-8",
"-unchecked",
"-feature",
"-Xlint",
"-Xfatal-warnings",
"-Ywarn-dead-code",
"-Yliteral-types"
)
libraryDependencies in Global ++= Seq(
"com.chuusai" %% "shapeless" % "2.3.2",
"org.typelevel" %% "cats" % "0.7.0",
"io.circe" %% "circe-core" % "0.7.0-M1",
"io.circe" %% "circe-generic" % "0.7.0-M1",
"io.circe" %% "circe-parser" % "0.7.0-M1",
"org.scalactic" %% "scalactic" % "2.2.6" % Test,
"org.scalatest" %% "scalatest" % "2.2.6" % Test
)
lazy val common =
project.in(file("common"))
lazy val helloworld =
project.in(file("helloworld")).dependsOn(common)
lazy val representations =
project.in(file("representations")).dependsOn(common)
lazy val csv =
project.in(file("csv")).dependsOn(common)
lazy val literaltypes =
project.in(file("literaltypes")).dependsOn(common)
lazy val json =
project.in(file("json")).dependsOn(common)
/*
lazy val numfields =
project.in(file("numfields")).dependsOn(common)
lazy val random =
project.in(file("random")).dependsOn(common)
*/
lazy val migrations =
project.in(file("migrations")).dependsOn(common)
/*
lazy val mapping =
project.in(file("mapping")).dependsOn(common)
*/
lazy val shapeless_exercises = project.in(file("."))
.aggregate(
helloworld,
representations,
csv,
literaltypes,
json/*,
numfields,
random*/,
migrations/*,
mapping*/
)