From ce45bc144b1f632394d273d8fc09db6f3e19b1c3 Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Wed, 11 Nov 2009 08:30:39 -0500 Subject: [PATCH] Fix project definition --- project/build/XSbt.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/build/XSbt.scala b/project/build/XSbt.scala index 9b2649349..b09be38cf 100644 --- a/project/build/XSbt.scala +++ b/project/build/XSbt.scala @@ -19,7 +19,7 @@ class XSbt(info: ProjectInfo) extends ParentProject(info) val ivySub = project("ivy", "Ivy", new IvyProject(_), interfaceSub, launchInterfaceSub) val logSub = baseProject(utilPath / "log", "Logging", interfaceSub) - val testSub = baseProject("scripted", "Test", ioSub) + val testSub = project("scripted", "Test", new TestProject(_), ioSub) val compileInterfaceSub = project(compilePath / "interface", "Compiler Interface", new CompilerInterfaceProject(_), interfaceSub) @@ -32,7 +32,7 @@ class XSbt(info: ProjectInfo) extends ParentProject(info) val distSub = project("dist", "Distribution", new DistProject(_)) - def baseProject(path: Path, name: String, deps: Project*) = project(path, name, new TestProject(_), deps : _*) + def baseProject(path: Path, name: String, deps: Project*) = project(path, name, new Base(_), deps : _*) /* Multi-subproject paths */ def cachePath = path("cache")