Skip to content

Commit c225513

Browse files
committed
Update build.sc
1 parent dd2fe0b commit c225513

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.sc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ object v extends Module {
3838
}
3939

4040
val scalaCrossVersions = Seq(
41+
"3.3.3",
4142
"2.13.15"
4243
)
4344

@@ -251,7 +252,7 @@ trait Core extends CrossSbtModule with HasScala2MacroAnno with ScalafmtModule {
251252
)
252253

253254
override def ivyDeps = if (v.isScala3(crossScalaVersion)) {
254-
super.ivyDeps() ++ commonDeps
255+
super.ivyDeps() ++ commonDeps ++ Agg(v.firtoolResolver.withDottyCompat(scalaVersion()))
255256
} else {
256257
super.ivyDeps() ++ commonDeps ++ Agg(v.firtoolResolver)
257258
}
@@ -313,7 +314,7 @@ trait Plugin extends CrossSbtModule with ScalafmtModule with ChiselPublishModule
313314
}
314315

315316
object chisel extends Cross[Chisel](v.scalaCrossVersions)
316-
trait Chisel extends CrossSbtModule with HasScala2MacroAnno with HasScala2Plugin with ScalafmtModule {
317+
trait Chisel extends CrossSbtModule with HasScala2MacroAnno with ScalafmtModule {
317318
override def millSourcePath = super.millSourcePath / os.up
318319
def svsimModule = svsim(crossScalaVersion)
319320
def coreModule = core(crossScalaVersion)

0 commit comments

Comments
 (0)