File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -414,8 +414,8 @@ class Core(val crossScalaVersion: String) extends BuildLikeModule {
414
414
415
415
class Directives (val crossScalaVersion : String ) extends BuildLikeModule {
416
416
def moduleDeps = Seq (
417
- ` options` (),
418
- ` core` ()
417
+ options(),
418
+ core()
419
419
)
420
420
def scalacOptions = T {
421
421
super .scalacOptions() ++ asyncScalacOptions(scalaVersion())
@@ -470,7 +470,7 @@ class Directives(val crossScalaVersion: String) extends BuildLikeModule {
470
470
471
471
class Options (val crossScalaVersion : String ) extends BuildLikeModule {
472
472
def moduleDeps = Seq (
473
- ` core` (),
473
+ core(),
474
474
`build-macros`()
475
475
)
476
476
def scalacOptions = T {
@@ -559,10 +559,10 @@ trait Scala3GraalProcessor extends ScalaModule with ScalaCliPublishModule {
559
559
class Build (val crossScalaVersion : String ) extends BuildLikeModule {
560
560
def millSourcePath = super .millSourcePath / os.up / " build"
561
561
def moduleDeps = Seq (
562
- ` options` (),
562
+ options(),
563
563
scalaparse,
564
564
javaparse,
565
- ` directives` (),
565
+ directives(),
566
566
`scala-cli-bsp`,
567
567
`test-runner`(),
568
568
`tasty-lib`()
You can’t perform that action at this time.
0 commit comments