-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.sbt
73 lines (56 loc) · 1.82 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
71
72
73
lazy val beginner = project in file("beginner")
lazy val javadev = project in file("javadev")
lazy val sparkdev = (project in file("sparkdev"))
.settings(
scalaVersion := "2.11.8",
libraryDependencies ++= Seq(
"org.apache.spark" %% "spark-core" % "2.2.0"
)
)
lazy val freemonad = project in file("freemonad")
lazy val taglessfinal = project in file("taglessfinal")
lazy val freemonadfreek = (project in file("freemonadfreek")).settings(
libraryDependencies ++= Seq(
"com.projectseptember" %% "freek" % "0.6.5"
),
scalacOptions := Seq("-Ypartial-unification"),
resolvers += Resolver.bintrayRepo("projectseptemberinc", "maven")
)
lazy val almostfp = (project in file("almostfp")).settings(
libraryDependencies += "org.typelevel" %% "cats-effect" % "1.3.1"
)
lazy val cake = project in file("cake")
lazy val johndegoes = (project in file("johndegoes")).settings(
libraryDependencies += "org.scalaz" %% "scalaz-zio" % "1.0-RC4"
)
lazy val akkadev = (project in file("akkadev")).settings(
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.5.23"
)
lazy val trampoline = project in file("trampoline")
lazy val peanoadt = project in file("peanoadt")
lazy val shapeless = (project in file("shapeless")).settings(
libraryDependencies += "com.chuusai" %% "shapeless" % "2.3.3"
)
lazy val peanotypes = project in file("peanotypes")
lazy val apofutuhylo = project in file("apofutuhylo")
lazy val paramorphism = project in file("paramorphism")
lazy val fixcombinator = project in file("fixcombinator")
lazy val root = (project in file("."))
.aggregate(
beginner,
almostfp,
freemonad,
freemonadfreek,
taglessfinal,
cake,
johndegoes,
sparkdev,
akkadev,
trampoline,
peanoadt,
shapeless,
peanotypes,
apofutuhylo,
paramorphism,
fixcombinator
)