@@ -14,11 +14,11 @@ object Dependencies {
14
14
15
15
val sslConfig = " com.typesafe" %% " ssl-config-core" % " 0.3.7"
16
16
17
- val playJsonVersion = " 2.7.0-RC1 "
17
+ val playJsonVersion = " 2.7.0-RC2 "
18
18
19
19
val logback = " ch.qos.logback" % " logback-classic" % " 1.2.3"
20
20
21
- val specs2Version = " 4.2.0 "
21
+ val specs2Version = " 4.3.5 "
22
22
val specs2Deps = Seq (
23
23
" specs2-core" ,
24
24
" specs2-junit" ,
@@ -55,7 +55,7 @@ object Dependencies {
55
55
56
56
val guava = " com.google.guava" % " guava" % " 27.0-jre"
57
57
val findBugs = " com.google.code.findbugs" % " jsr305" % " 3.0.2" // Needed by guava
58
- val mockitoAll = " org.mockito" % " mockito-core" % " 2.23.0 "
58
+ val mockitoAll = " org.mockito" % " mockito-core" % " 2.23.4 "
59
59
60
60
val h2database = " com.h2database" % " h2" % " 1.4.197"
61
61
val derbyDatabase = " org.apache.derby" % " derby" % " 10.13.1.1"
@@ -85,13 +85,13 @@ object Dependencies {
85
85
" org.hibernate" % " hibernate-core" % " 5.3.7.Final" % " test"
86
86
)
87
87
88
- val scalaJava8Compat = " org.scala-lang.modules" %% " scala-java8-compat" % " 0.8 .0"
88
+ val scalaJava8Compat = " org.scala-lang.modules" %% " scala-java8-compat" % " 0.9 .0"
89
89
def scalaParserCombinators (scalaVersion : String ) = CrossVersion .partialVersion(scalaVersion) match {
90
- case Some ((2 , major)) if major >= 11 => Seq (" org.scala-lang.modules" %% " scala-parser-combinators" % " 1.1.0 " )
90
+ case Some ((2 , major)) if major >= 11 => Seq (" org.scala-lang.modules" %% " scala-parser-combinators" % " 1.1.1 " )
91
91
case _ => Nil
92
92
}
93
93
94
- val springFrameworkVersion = " 5.1.2 .RELEASE"
94
+ val springFrameworkVersion = " 5.1.3 .RELEASE"
95
95
96
96
val javaDeps = Seq (
97
97
scalaJava8Compat,
@@ -175,7 +175,7 @@ object Dependencies {
175
175
176
176
val jimfs = " com.google.jimfs" % " jimfs" % " 1.1"
177
177
178
- val okHttp = " com.squareup.okhttp3" % " okhttp" % " 3.11 .0"
178
+ val okHttp = " com.squareup.okhttp3" % " okhttp" % " 3.12 .0"
179
179
180
180
def routesCompilerDependencies (scalaVersion : String ) = {
181
181
val deps = CrossVersion .partialVersion(scalaVersion) match {
@@ -243,18 +243,18 @@ object Dependencies {
243
243
logback % Test
244
244
)
245
245
246
- val fluentleniumVersion = " 3.7.0 "
246
+ val fluentleniumVersion = " 3.7.1 "
247
247
// This is the selenium version compatible with the FluentLenium version declared above.
248
248
// See http://mvnrepository.com/artifact/org.fluentlenium/fluentlenium-core/3.5.2
249
- val seleniumVersion = " 3.14.0 "
249
+ val seleniumVersion = " 3.141.59 "
250
250
251
251
val testDependencies = Seq (junit, junitInterface, guava, findBugs, logback) ++ Seq (
252
252
" org.fluentlenium" % " fluentlenium-core" % fluentleniumVersion exclude(" org.jboss.netty" , " netty" ),
253
253
// htmlunit-driver uses an open range to selenium dependencies. This is slightly
254
254
// slowing down the build. So the open range deps were removed and we can re-add
255
255
// them using a specific version. Using an open range is also not good for the
256
256
// local cache.
257
- " org.seleniumhq.selenium" % " htmlunit-driver" % " 2.33.0 " excludeAll(
257
+ " org.seleniumhq.selenium" % " htmlunit-driver" % " 2.33.3 " excludeAll(
258
258
ExclusionRule (" org.seleniumhq.selenium" , " selenium-api" ),
259
259
ExclusionRule (" org.seleniumhq.selenium" , " selenium-support" )
260
260
),
@@ -281,7 +281,7 @@ object Dependencies {
281
281
" com.github.ben-manes.caffeine" % " jcache" % caffeineVersion
282
282
) ++ jcacheApi
283
283
284
- val playWsStandaloneVersion = " 2.0.0-RC1 "
284
+ val playWsStandaloneVersion = " 2.0.0-RC2 "
285
285
val playWsDeps = Seq (
286
286
" com.typesafe.play" %% " play-ws-standalone" % playWsStandaloneVersion,
287
287
" com.typesafe.play" %% " play-ws-standalone-xml" % playWsStandaloneVersion,
0 commit comments