-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
44 lines (38 loc) · 1.05 KB
/
build.sbt
File metadata and controls
44 lines (38 loc) · 1.05 KB
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
val akkaVersion = "2.4.16"
lazy val commonSettings = Seq(
organization := "co.saverin",
scalaVersion := "2.11.8"
)
lazy val core = project.
settings(commonSettings: _*).
settings(
version := "0.0.1",
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % akkaVersion
).enablePlugins(JavaAppPackaging)
lazy val agent = project.
settings(commonSettings: _*).
settings(
version := "0.0.1",
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
)
).
dependsOn(core).
enablePlugins(JavaAppPackaging)
lazy val engine = project.
settings(commonSettings: _*).
settings(
version := "0.0.1",
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.5",
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
)
).
dependsOn(core).
enablePlugins(JavaAppPackaging)
lazy val root = (project in file(".")).
aggregate(core, engine).
settings(
version := "0.0.1"
)