This commit is contained in:
Mark Harrah 2012-11-10 18:18:15 -05:00
parent 89573b39b5
commit 19c776e1f9
3 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package test
object Global {
val x = 3
}

View File

@ -0,0 +1,5 @@
import sbt._
object Test {
assert(test.Global.x == 3);
}

View File

@ -0,0 +1,4 @@
# tests that a source file in $sbt.global.base/plugins/ is available to the build definition in project/
# dummy to ensure project gets loaded
> name