Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gguan committed Aug 21, 2018
1 parent c5d25e8 commit 138678d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 11 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: scala
sudo: false
sudo: true
script: sbt ++$TRAVIS_SCALA_VERSION 'test'
scala:
- 2.12.4
- 2.11.11
- 2.12.6
jdk:
- oraclejdk8
services: mongodb
Expand Down
4 changes: 2 additions & 2 deletions bson/build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Common.{ playVersion, playReactiveMongoVersion }
import Common.{ playJsonVersion, playReactiveMongoVersion }

name := "reactivemongo-extensions-bson"

libraryDependencies ++= Seq(
"org.reactivemongo" %% "play2-reactivemongo" % playReactiveMongoVersion,
"com.typesafe.play" %% "play-json" % playVersion % "provided"
"com.typesafe.play" %% "play-json" % playJsonVersion % "provided"
)
1 change: 0 additions & 1 deletion bson/src/test/scala/dao/DummyBsonDaoSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,6 @@ class DummyBsonDaoSpec

it should "remove all documents" in {
val dummyModels = DummyModel.random(10)
dao.collection.map(c => println(c.name))
val futureResult = for {
insertCount <- dao.bulkInsert(dummyModels)
beforeCount <- dao.count()
Expand Down
2 changes: 1 addition & 1 deletion core/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "reactivemongo-extensions-core"
libraryDependencies ++= Seq(
"org.reactivemongo" %% "reactivemongo" % Common.reactiveMongoVersion,
"org.reactivemongo" %% "reactivemongo-iteratees" % Common.reactiveMongoVersion,
"com.typesafe.play" %% "play-json" % Common.playVersion % "provided",
"com.typesafe.play" %% "play-json" % Common.playJsonVersion % "provided",
"com.typesafe.play" %% "play-iteratees" % "2.6.1" % "provided",
"com.typesafe" % "config" % "1.3.3",
"joda-time" % "joda-time" % "2.10",
Expand Down
6 changes: 3 additions & 3 deletions json/build.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import Common.{ playVersion, playReactiveMongoVersion }
import Common.{ playJsonVersion, playReactiveMongoVersion }

name := "reactivemongo-extensions-json"

libraryDependencies ++= Seq(
"org.reactivemongo" %% "play2-reactivemongo" % playReactiveMongoVersion,
"com.typesafe.play" %% "play-json" % playVersion % "provided",
"com.typesafe.play" %% "play-json-joda" % playVersion % "provided"
"com.typesafe.play" %% "play-json" % playJsonVersion % "provided",
"com.typesafe.play" %% "play-json-joda" % playJsonVersion % "provided"
)
2 changes: 1 addition & 1 deletion project/Common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ object Common {
}.getOrElse("> ")
}

val playVersion = "2.6.9"
val playJsonVersion = "2.6.10"
val reactiveMongoVersion = "0.16.0"
val playReactiveMongoVersion = "0.16.0-play26"
}

0 comments on commit 138678d

Please sign in to comment.