make ThisScope and GlobalScope in the default imports

This commit is contained in:
Mark Harrah 2011-06-10 07:48:53 -04:00
parent 208cf12045
commit a62bf744c1
1 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,9 @@ package object sbt extends sbt.std.TaskExtra with sbt.Types with sbt.ProcessExtr
def file(s: String): File = new File(s)
def url(s: String): URL = new URL(s)
def ThisScope = Scope.ThisScope
def GlobalScope = Scope.GlobalScope
import sbt.{Configurations => C}
def Compile = C.Compile
def Test = C.Test