summaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan@lightbend.com>2017-02-24 09:45:09 -0800
committerGitHub <noreply@github.com>2017-02-24 09:45:09 -0800
commit5f1a638cf5f3b81fd3d8b4fa92a5a52ac5733517 (patch)
treefc883becaf000dfc33a9b67ee774454836114ee5 /project
parent759a7b72a17388e436e06817a171d33f435b5036 (diff)
parent5e9acac8f690ac60b928e5628075cac193615233 (diff)
downloadscala-5f1a638cf5f3b81fd3d8b4fa92a5a52ac5733517.tar.gz
scala-5f1a638cf5f3b81fd3d8b4fa92a5a52ac5733517.tar.bz2
scala-5f1a638cf5f3b81fd3d8b4fa92a5a52ac5733517.zip
Merge pull request #5732 from retronym/topic/build-info-malarkey
More predictable performance of SBT build startup, reload
Diffstat (limited to 'project')
-rw-r--r--project/plugins.sbt4
1 files changed, 4 insertions, 0 deletions
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 80aef2c591..ca80c88a9e 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -20,3 +20,7 @@ buildInfoKeys := Seq[BuildInfoKey](buildClasspath)
buildInfoPackage := "scalabuild"
libraryDependencies += "com.typesafe" %% "mima-reporter" % "0.1.13"
+
+concurrentRestrictions in Global := Seq(
+ Tags.limitAll(1) // workaround for https://github.com/sbt/sbt/issues/2970
+)