fix tests

This commit is contained in:
Mark Harrah 2011-08-16 17:37:14 -04:00
parent b36e40a8f7
commit f5252cd470
4 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
> 'set javacOptions :== Nil'
> 'set javacOptions := Nil'
> compile
> 'set javacOptions ++= Seq("-source", "1.4")'
-> compile

View File

@ -1,5 +1,5 @@
crossPaths :== false
crossPaths := false
name :== "definition-lib-forname-test"
name := "definition-lib-forname-test"
version :== "1.0"
version := "1.0"

View File

@ -7,5 +7,5 @@ object TestBuild extends Build
proj("a", "."),
proj("b", "b")
)
def proj(id: String, dir: String) = Project(id, file(dir), settings = Seq( name :== id ) )
def proj(id: String, dir: String) = Project(id, file(dir), settings = Seq( name := id ) )
}

View File

@ -11,5 +11,5 @@ object SecondBuild extends MakeBuild
}
trait MakeBuild extends Build
{
def proj(id: String, dir: String) = Project(id, file(dir), settings = Seq( name :== id ) )
def proj(id: String, dir: String) = Project(id, file(dir), settings = Seq( name := id ) )
}