diff --git a/build.sbt b/build.sbt index e0d9d17c..c655cc11 100644 --- a/build.sbt +++ b/build.sbt @@ -50,8 +50,8 @@ lazy val mimaSettings = Seq( ) lazy val commonSettings = Seq( - scalaVersion := "2.13.12", - crossScalaVersions := Seq("2.13.12", "3.3.1"), + scalaVersion := "2.13.14", + crossScalaVersions := Seq("2.13.14", "3.3.3"), Test / parallelExecution := false, Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-oTK"), headerLicense := Some( diff --git a/module/src/main/scala/org/scalatestplus/play/AllBrowsersPerSuite.scala b/module/src/main/scala/org/scalatestplus/play/AllBrowsersPerSuite.scala index a8ba23df..a0a58477 100644 --- a/module/src/main/scala/org/scalatestplus/play/AllBrowsersPerSuite.scala +++ b/module/src/main/scala/org/scalatestplus/play/AllBrowsersPerSuite.scala @@ -31,7 +31,7 @@ import org.scalatestplus.play.BrowserFactory.UninitializedDriver import org.scalatestplus.play.BrowserFactory.UnneededDriver /** - * Trait that uses a [[http://doc.scalatest.org/3.0.1/index.html#org.scalatest.FlatSpec@sharedTests ''shared test'']] approach to enable + * Trait that uses a [[http://doc.scalatest.org/3.0.3/index.html#org.scalatest.FlatSpec@sharedTests ''shared test'']] approach to enable * you to run the same tests on multiple browsers in a ScalaTest `Suite`, where each kind of browser is started and stopped * just once for the whole `Suite`. * diff --git a/module/src/main/scala/org/scalatestplus/play/AllBrowsersPerTest.scala b/module/src/main/scala/org/scalatestplus/play/AllBrowsersPerTest.scala index de0bb163..c9fa9ec0 100644 --- a/module/src/main/scala/org/scalatestplus/play/AllBrowsersPerTest.scala +++ b/module/src/main/scala/org/scalatestplus/play/AllBrowsersPerTest.scala @@ -30,7 +30,7 @@ import org.openqa.selenium.firefox.FirefoxProfile import org.scalatestplus.selenium.WebBrowser /** - * Trait that uses a [[http://doc.scalatest.org/3.0.1/index.html#org.scalatest.FlatSpec@sharedTests ''shared test'']] approach to enable + * Trait that uses a [[http://doc.scalatest.org/3.0.3/index.html#org.scalatest.FlatSpec@sharedTests ''shared test'']] approach to enable * you to run the same tests on multiple browsers in a ScalaTest `Suite`, where a new browser is started before each test * that needs a browser, and stopped after. * diff --git a/project/build.properties b/project/build.properties index abbbce5d..04267b14 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.8 +sbt.version=1.9.9 diff --git a/project/plugins.sbt b/project/plugins.sbt index 060f68f0..aa434148 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,7 +2,7 @@ resolvers ++= DefaultOptions.resolvers(snapshot = true) resolvers ++= Resolver .sonatypeOssRepos("snapshots") // used by deploy nightlies, which publish here & use -Dplay.version -addSbtPlugin("org.playframework" % "play-docs-sbt-plugin" % sys.props.getOrElse("play.version", "3.0.1")) +addSbtPlugin("org.playframework" % "play-docs-sbt-plugin" % sys.props.getOrElse("play.version", "3.0.3")) addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")