From f18ddd2a88383f9356f6bcf4d9a415ea085c5be9 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Wed, 3 Apr 2013 12:44:35 -0400 Subject: [PATCH] make ScopeFilter accessible without a qualifier Should be improved: ideally there would only be a single top-level alias. --- main/src/main/scala/sbt/ScopeFilter.scala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main/src/main/scala/sbt/ScopeFilter.scala b/main/src/main/scala/sbt/ScopeFilter.scala index 58cc5aef6..fea090332 100644 --- a/main/src/main/scala/sbt/ScopeFilter.scala +++ b/main/src/main/scala/sbt/ScopeFilter.scala @@ -48,6 +48,9 @@ object ScopeFilter private[sbt] val Make = new Make {} trait Make { + /** Selects the Scopes used in `.all()`.*/ + type ScopeFilter = Base[Scope] + /** Selects Scopes with a global task axis. */ def inGlobalTask: TaskFilter = globalAxis[AttributeKey[_]] /** Selects Scopes with a global project axis. */