Skip to content

Commit

Permalink
Bump dependencies: (#566)
Browse files Browse the repository at this point in the history
* Bump dependencies:

sbt, scalatest, coursier, sbt-platform-deps, sbt-bloop, sbt-scalafmt

* sbt-scripted: bump webpack version to work on newer node versions

* add explicit dependency on scalajs sbt plugin to fix build

`sbt-platform-deps` 1.0.0 does not resolve through old sbt repository
  • Loading branch information
oyvindberg authored Sep 17, 2023
1 parent f77d6c7 commit 68c1ee0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ lazy val `sbt-converter` = project
.settings(
name := "sbt-converter",
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1"),
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2"),
sbtPlugin := true,
// set up 'scripted; sbt plugin for testing sbt plugins
scriptedBufferLog := false,
Expand Down
4 changes: 2 additions & 2 deletions project/Deps.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ object Deps {
val ammoniteOps = "com.lihaoyi" %% "ammonite-ops" % "2.4.0"
val osLib = "com.lihaoyi" %% "os-lib" % "0.7.7"
val sourcecode = "com.lihaoyi" %% "sourcecode" % "0.3.0"
val scalatest = "org.scalatest" %% "scalatest" % "3.2.16"
val scalatest = "org.scalatest" %% "scalatest" % "3.2.17"
val fansi = "com.lihaoyi" %% "fansi" % "0.4.0"
val bloop = "ch.epfl.scala" %% "bloop-frontend" % "1.5.4"
val scalaXml = "org.scala-lang.modules" %% "scala-xml" % "2.2.0"
val scopt = "com.github.scopt" %% "scopt" % "4.1.0"
val awssdkS3 = "software.amazon.awssdk" % "s3" % "2.15.28"
val coursier = "io.get-coursier" %% "coursier" % "2.1.4"
val coursier = "io.get-coursier" %% "coursier" % "2.1.7"

val circe: Seq[ModuleID] =
Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.0
sbt.version=1.9.6
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.1")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.7")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.4")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.6")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.11")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
1 change: 1 addition & 0 deletions sbt-converter/src/sbt-test/react/japgolly/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ lazy val testProject =
scalaJSUseMainModuleInitializer := true,
scalaVersion := "2.13.2",
organization := "net.leibman",
webpack / version := "5.88.2",
)

0 comments on commit 68c1ee0

Please sign in to comment.