Skip to content

Commit

Permalink
Add dependencies: akka-testkit, akka-http-spray-json; add .hgignore.
Browse files Browse the repository at this point in the history
  • Loading branch information
aterga committed Jul 27, 2017
1 parent 8f5e32e commit 51c8f9c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .hgignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
syntax: glob
target
tmp
.idea
.DS_Store
5 changes: 4 additions & 1 deletion project/build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ object ViperServerBuild extends Build {
dependencies.siliconSrc % "compile->compile;test->test")

def externalDep = (
Seq(dependencies.jgrapht, dependencies.commonsIO, dependencies.commonsPool, dependencies.scallop, dependencies.actors)
Seq(dependencies.jgrapht, dependencies.commonsIO, dependencies.commonsPool, dependencies.scallop,
dependencies.actors, dependencies.akka_testing, dependencies.akka_json)
++ dependencies.logging
++ (if (isBuildServer) Seq(
dependencies.silver % "compile->compile;test->test",
Expand Down Expand Up @@ -150,6 +151,8 @@ object ViperServerBuild extends Build {
lazy val carbonSrc = RootProject(new java.io.File("../carbon"))

lazy val actors = "com.typesafe.akka" %% "akka-actor" % "2.4.17"
lazy val akka_testing = "com.typesafe.akka" %% "akka-testkit" % "2.4.17" % "test"
lazy val akka_json = "com.typesafe.akka" %% "akka-http-spray-json" % "10.0.7"
}

}

0 comments on commit 51c8f9c

Please sign in to comment.