Skip to content

Commit

Permalink
Merge pull request #169 from KarelCemus/mockito
Browse files Browse the repository at this point in the history
Fixed scope of the mockup dependency
  • Loading branch information
KarelCemus authored Apr 27, 2018
2 parents 30e88a0 + ed7cf11 commit 413a34f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

## Changelog

### [:link: 2.1.1](https://github.com/KarelCemus/play-redis/tree/2.1.1)

Scope of the Mockito dependency is set to Test, was Compile [#168](https://github.com/KarelCemus/play-redis/issues/168).

### [:link: 2.1.0](https://github.com/KarelCemus/play-redis/tree/2.1.0)

Published snapshots no longer depends on scoverage runtime [#143](https://github.com/KarelCemus/play-redis/issues/143).
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ val playVersion = "2.6.13"

val connectorVersion = "1.8.3"

val specs2Version = "4.0.3"
val specs2Version = "4.1.0"

libraryDependencies ++= Seq(
// play framework cache API
Expand All @@ -28,10 +28,10 @@ libraryDependencies ++= Seq(
"com.github.Ma27" %% "rediscala" % connectorVersion,
// test framework
"org.specs2" %% "specs2-core" % specs2Version % Test,
// with mockito extension
"org.specs2" %% "specs2-mock" % specs2Version % Test,
// test module for play framework
"com.typesafe.play" %% "play-specs2" % playVersion % Test,
// mockito framework
"org.mockito" % "mockito-core" % "2.18.0"
"com.typesafe.play" %% "play-specs2" % playVersion % Test
)

resolvers ++= Seq(
Expand Down

0 comments on commit 413a34f

Please sign in to comment.