Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pshirshov committed Nov 10, 2024
1 parent 21126ee commit bb465b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion project/Deps.sc
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ object Izumi {
val crossproject_version = Version.VExpr("PV.crossproject_version")
val scalajs_bundler_version = Version.VExpr("PV.scalajs_bundler_version")
val sbt_mima_version = Version.VExpr("PV.sbt_mima_version")
val zio_sbt_website = Version.VExpr("PV.zio_sbt_website")
}

// DON'T REMOVE, these variables are read from CI build (build.sh)
Expand Down Expand Up @@ -337,7 +338,8 @@ object Izumi {
appendPlugins = Defaults.SbtGenPlugins ++ Seq(
SbtPlugin("com.jsuereth", "sbt-pgp", PV.sbt_pgp),
SbtPlugin("org.scoverage", "sbt-scoverage", PV.sbt_scoverage),
SbtPlugin("com.typesafe", "sbt-mima-plugin", PV.sbt_mima_version)
SbtPlugin("com.typesafe", "sbt-mima-plugin", PV.sbt_mima_version),
SbtPlugin("dev.zio", "zio-sbt-website", PV.zio_sbt_website)
)
)
}
2 changes: 2 additions & 0 deletions project/project/PluginVersions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ object PV {
val scala_native_version = "0.5.1"

val sbt_crossproject_version = "1.3.2"

val zio_sbt_website = "0.4.0-alpha.28"
}

0 comments on commit bb465b4

Please sign in to comment.