diff --git a/build.sbt b/build.sbt index 03ea5545e..2b2b7b766 100644 --- a/build.sbt +++ b/build.sbt @@ -91,7 +91,7 @@ libraryDependencies += guice libraryDependencies ++= Seq( "org.postgresql" % "postgresql" % "42.6.0", anormDependency, - "com.typesafe.play" %% "play-mailer" % "8.0.1", + "com.typesafe.play" %% "play-mailer" % "9.0.0", "com.typesafe.play" %% "play-json" % "2.10.3", "com.sun.mail" % "javax.mail" % "1.6.2", "net.jcazevedo" %% "moultingyaml" % "0.4.2", @@ -104,7 +104,7 @@ libraryDependencies ++= Seq( // UI libraryDependencies ++= Seq( - "org.webjars" %% "webjars-play" % "2.8.18", + "org.webjars" %% "webjars-play" % "2.9.0", "org.webjars.bower" % "material-design-lite" % "1.3.0", "org.webjars" % "material-design-icons" % "4.0.0", "org.webjars.npm" % "roboto-fontface" % "0.10.0", diff --git a/conf/logback-test.xml b/conf/logback-test.xml index 788a06e83..53b281214 100644 --- a/conf/logback-test.xml +++ b/conf/logback-test.xml @@ -1,36 +1,32 @@ + + + + + - - - - - %coloredLevel %logger{15} - %message%n%xException{10} + + + %highlight(%-5level) %logger{15} - %message%n%xException{10} - - + + - - - - - + + - - - - - + + + - - - - + + diff --git a/conf/logback.xml b/conf/logback.xml index 7f76594b2..89e45de18 100644 --- a/conf/logback.xml +++ b/conf/logback.xml @@ -1,48 +1,56 @@ + + + - - - - - - %coloredLevel %d %logger{15} - %message%n%xException{10} + + + + + + + + + %highlight(%-5level) %d %logger{15} - %message%n%xException{10} - - + + + 512 + + 0 + + false + - - + + - - - - - - + + - - + + %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n - - + + WARN - + + - + - diff --git a/project/plugins.sbt b/project/plugins.sbt index eb4992227..bccdb9862 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,7 +1,7 @@ // The Play plugin // Important note: when upgrading the play version, check that the correct minor version // of jackson is set in build.sbt (with the patch version that is not vulnerable) -addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.8.20") +addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.0") addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.10.0-RC1") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9") addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.1.4") diff --git a/test/browser/BaseSpec.scala b/test/browser/BaseSpec.scala index aa0810cfc..89740f64e 100644 --- a/test/browser/BaseSpec.scala +++ b/test/browser/BaseSpec.scala @@ -13,7 +13,7 @@ trait BaseSpec { def webDriver: WebDriver = { val options = new FirefoxOptions() - .setHeadless(true) + options.addArguments("--headless") new FirefoxDriver(options) }