mirror of https://github.com/sbt/sbt.git
test for #594
This commit is contained in:
parent
89573b39b5
commit
19c776e1f9
|
|
@ -0,0 +1,5 @@
|
|||
package test
|
||||
|
||||
object Global {
|
||||
val x = 3
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
import sbt._
|
||||
|
||||
object Test {
|
||||
assert(test.Global.x == 3);
|
||||
}
|
||||
|
|
@ -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
|
||||
Loading…
Reference in New Issue