mirror of https://github.com/sbt/sbt.git
Merge pull request #6502 from eed3si9n/wip/404
A quick workaround for 404
This commit is contained in:
commit
8ecec5614a
|
|
@ -77,6 +77,7 @@ def commonBaseSettings: Seq[Setting[_]] = Def.settings(
|
|||
Test / testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-w", "1"),
|
||||
Test / testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-verbosity", "2"),
|
||||
compile / javacOptions ++= Seq("-Xlint", "-Xlint:-serial"),
|
||||
/*
|
||||
Compile / doc / scalacOptions ++= {
|
||||
import scala.sys.process._
|
||||
val devnull = ProcessLogger(_ => ())
|
||||
|
|
@ -88,6 +89,7 @@ def commonBaseSettings: Seq[Setting[_]] = Def.settings(
|
|||
s"https://github.com/sbt/sbt/tree/$tagOrSha€{FILE_PATH}.scala"
|
||||
)
|
||||
},
|
||||
*/
|
||||
Compile / javafmtOnCompile := Def
|
||||
.taskDyn(if ((scalafmtOnCompile).value) Compile / javafmt else Def.task(()))
|
||||
.value,
|
||||
|
|
|
|||
Loading…
Reference in New Issue