We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5950f83 + f66b820 commit d049102Copy full SHA for d049102
community-build/src/scala/dotty/communitybuild/projects.scala
@@ -156,7 +156,10 @@ final case class SbtCommunityProject(
156
++ s"""set dependencyOverrides in ThisBuild ++= ${dependencyOverrides.mkString("Seq(", ", ", ")")}; """
157
++ s"++$compilerVersion!; "
158
159
- override val testCommand = s"$baseCommand$sbtTestCommand"
+ override val testCommand =
160
+ """set testOptions in Global += Tests.Argument(TestFramework("munit.Framework"), "+l"); """
161
+ ++ s"$baseCommand$sbtTestCommand"
162
+
163
override val publishCommand = if sbtPublishCommand eq null then null else
164
val disableDocCommand =
165
if sbtDocCommand eq null then "" else "set every useScala3doc := false;"
0 commit comments