File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -77,8 +77,8 @@ object Settings {
7777 organization := " org.broadinstitute" ,
7878 scalaVersion := ScalaVersion ,
7979 resolvers ++= additionalResolvers,
80- Global / parallelExecution := true ,
81- Test / parallelExecution := false ,
80+ Compile / parallelExecution := true ,
81+ Default / parallelExecution := false ,
8282 Global / concurrentRestrictions ++= List (
8383 // Don't run any other tasks while running tests, especially helps in low CPU environments like Travis
8484 Tags .exclusive(Tags .Test ),
@@ -95,7 +95,8 @@ object Settings {
9595 Compile / console / scalacOptions --= consoleHostileSettings,
9696 excludeDependencies ++= List (
9797 " org.typelevel" % " simulacrum-scalafix-annotations_2.13"
98- )
98+ ),
99+ // Global / lintUnusedKeysOnLoad := false
99100 )
100101
101102 val pact4sSettings = sharedSettings ++ List (
You can’t perform that action at this time.
0 commit comments