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.
1 parent 1ec8041 commit 9c99c9aCopy full SHA for 9c99c9a
community-build/src/scala/dotty/communitybuild/projects.scala
@@ -154,7 +154,10 @@ final case class SbtCommunityProject(
154
++ s"""set dependencyOverrides in ThisBuild ++= ${dependencyOverrides.mkString("Seq(", ", ", ")")}; """
155
++ s"++$compilerVersion!; "
156
157
- override val testCommand = s"$baseCommand$sbtTestCommand"
+ override val testCommand =
158
+ """set testOptions in Global += Tests.Argument(TestFramework("munit.Framework"), "+l"); """
159
+ ++ s"$baseCommand$sbtTestCommand"
160
+
161
override val publishCommand = if sbtPublishCommand eq null then null else
162
val disableDocCommand =
163
if sbtDocCommand eq null then "" else "set every useScala3doc := false;"
0 commit comments