diff --git a/build.sbt b/build.sbt index ab52dcbc..0228a206 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ resolvers ++= Resolver.sonatypeOssRepos("snapshots") inThisBuild( Seq( - scalaVersion := "3.3.0", // Also update docs/publishWebsite.sh and any ref to scala-3.3.0 + scalaVersion := "3.3.1", // Also update docs/publishWebsite.sh and any ref to scala-3.3.0 ) ) @@ -251,7 +251,7 @@ lazy val mediator = project // pipelineStages ++= Seq(digest, gzip), //Compression - If you serve your Scala.js application from a web server, you should additionally gzip the resulting .js files. Compile / unmanagedResourceDirectories += baseDirectory.value / "src" / "main" / "extra-resources", // Compile / unmanagedResourceDirectories += (baseDirectory.value.toPath.getParent.getParent / "docs-build" / "target" / "mdoc").toFile, - // Compile / unmanagedResourceDirectories += (baseDirectory.value.toPath.getParent.getParent / "serviceworker" / "target" / "scala-3.3.0" / "fmgp-serviceworker-fastopt").toFile, + // Compile / unmanagedResourceDirectories += (baseDirectory.value.toPath.getParent.getParent / "serviceworker" / "target" / "scala-3.3.1" / "fmgp-serviceworker-fastopt").toFile, Compile / compile := ((Compile / compile) dependsOn scalaJSPipeline).value, // Frontend dependency configuration Assets / WebKeys.packagePrefix := "public/", diff --git a/project/plugins.sbt b/project/plugins.sbt index c1dee538..2eed9e71 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -41,7 +41,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0") addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4") // sbt> dependencyUpdates // TEST COVERAGE -addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9") // Needs scala version 3.3.0 +addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9") // Needs scala version 3.3.1 // Revolver use for command 'reStart' (like the command 'run' but run on the backgroun by forking the app from sbt) addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")