Merge pull request #1 from harterrt/test_scope

Scope scalatest to test, not global, dependency
This commit is contained in:
Roberto Agostino Vitillo 2016-09-06 16:47:02 +01:00 коммит произвёл GitHub
Родитель b3569e9368 817ef07c6d
Коммит c792a491f1
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,6 @@
name := "spark-hyperloglog"
version := "1.0.2"
version := "1.0.3"
scalaVersion := "2.10.6"
@ -11,7 +11,7 @@ sparkVersion := "1.6.0"
sparkComponents ++= Seq("core", "sql")
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.2.1",
"org.scalatest" %% "scalatest" % "2.2.1" % "test",
"com.twitter" %% "algebird-core" % "0.12.0"
)