Minor change to tests/serial

This commit is contained in:
Eugene Yokota 2017-07-16 17:53:33 -04:00
parent 2f8d7c2f7a
commit 9ccfbe462c
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
val commonSettings = Seq( val commonSettings = Seq(
libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % "test" libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % Test
) )
lazy val root = (project in file(".")). lazy val root = (project in file(".")).
aggregate(sub1, sub2). aggregate(sub1, sub2).
settings(inThisBuild(List( settings(inThisBuild(List(
organization := "com.softwaremill", organization := "com.example",
version := "0.0.1-SNAPSHOT", version := "0.0.1-SNAPSHOT",
scalaVersion := "2.10.6" scalaVersion := "2.10.6"
)), )),