Skip to content

Commit

Permalink
Make zinc scripted show up in Intellij
Browse files Browse the repository at this point in the history
  • Loading branch information
Friendseeker committed Dec 2, 2023
1 parent 99484c3 commit 89e58f2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -652,11 +652,10 @@ lazy val zincClassfile = (projectMatrix in internalPath / "zinc-classfile")

// re-implementation of scripted engine
lazy val zincScripted = (projectMatrix in internalPath / "zinc-scripted")
.dependsOn(zinc % "compile;test->test")
.dependsOn(zinc % "compile;test->test", compilerBridge % "compile;test->test")
.enablePlugins(BuildInfoPlugin)
.settings(
baseSettings,
ideSkipProject := true, // otherwise IntelliJ complains
publish / skip := true,
name := "zinc Scripted",
Compile / buildInfo := Nil, // Only generate build info for tests
Expand All @@ -667,9 +666,6 @@ lazy val zincScripted = (projectMatrix in internalPath / "zinc-scripted")
)
.defaultAxes(VirtualAxis.jvm, VirtualAxis.scalaPartialVersion(scala212))
.jvmPlatform(scalaVersions = List(scala212))
.configure(
_.dependsOn(compilerBridge210, compilerBridge211, compilerBridge212, compilerBridge213)
)
.configure(addSbtUtilScripted)

lazy val zincScripted212 = zincScripted.jvm(scala212)
Expand Down

0 comments on commit 89e58f2

Please sign in to comment.