Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/project/PluginVersions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object PV {
val sbt_ghpages = "0.8.0"
val sbt_site = "1.7.0"
val sbt_unidoc = "0.6.0"
val sbt_scoverage = "2.3.1"
val sbt_scoverage = "2.4.4"
val sbt_pgp = "2.3.1"
val sbt_assembly = "0.14.9"
}
14 changes: 7 additions & 7 deletions sbtgen/Deps.scala
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ object Izumi {
import Deps._

// DON'T REMOVE, these variables are read from CI build (build.sh)
final val scala212 = ScalaVersion("2.12.20")
final val scala213 = ScalaVersion("2.13.16")
final val scala212 = ScalaVersion("2.12.21")
final val scala213 = ScalaVersion("2.13.18")
final val scala300 = ScalaVersion("3.7.4")

object Groups {
Expand Down Expand Up @@ -219,13 +219,13 @@ object Izumi {
object Projects {

final val plugins = Plugins(
Seq(Plugin("SitePreviewPlugin")),
Seq(Plugin("SitePreviewPlugin"))
)

object root {
final val id = ArtifactId("izumi")
final val plugins = Plugins(
enabled = Seq(Plugin("SbtgenVerificationPlugin")),
enabled = Seq(Plugin("SbtgenVerificationPlugin"))
)

final val outOfSource = Seq(
Expand Down Expand Up @@ -330,7 +330,7 @@ object Izumi {
"scalacOptions" ++= Seq(
SettingKey(Some(scala212), None) :=
(Seq[Const]("-Wconf:any:error") ++ Defaults.Scala212Options ++ scala2Wconf)
.filterNot(_ == ("-Ywarn-unused:_": Const)),
.filterNot(_ == ("-Ywarn-unused:_": Const)),
SettingKey(Some(scala213), None) :=
(Seq[Const]("-Wconf:any:error") ++ Defaults.Scala213Options ++ Seq[Const]("-Wunused:-synthetics")).filterNot(_ == ("-Xsource:3-cross": Const)) ++ scala2Wconf,
SettingKey(Some(scala300), None) :=
Expand Down Expand Up @@ -513,7 +513,7 @@ object Izumi {
izumi_reflect in Scope.Compile.all,
scala_reflect,
fast_classpath_scanner in Scope.Provided.all,
scalajs_macrotask_executor in Scope.Compile.js
scalajs_macrotask_executor in Scope.Compile.js,
),
depends = Seq(
Projects.fundamentals.functional,
Expand Down Expand Up @@ -668,7 +668,7 @@ object Izumi {
name = Projects.distage.extensionLogstage,
libs = Seq(
cats_effect in Scope.Test.all,
zio_core in Scope.Test.all
zio_core in Scope.Test.all,
),
depends = Seq(Projects.distage.config, Projects.distage.coreApi).map(_ in Scope.Compile.all) ++
Seq(Projects.distage.core).map(_ in Scope.Test.all) ++
Expand Down
2 changes: 1 addition & 1 deletion sbtgen/project.scala
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
//> using scala 2.13.16
//> using scala 2.13.18
//> using dep io.7mind.izumi.sbt::sbtgen:0.0.112
Loading