Test for issue #41, thanks to gereedy

git-svn-id: https://simple-build-tool.googlecode.com/svn/trunk@968 d89573ee-9141-11dd-94d4-bdf5e562f29c
This commit is contained in:
dmharrah 2009-08-24 23:37:28 +00:00
parent 4687ecbf2c
commit fff58af73e
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,2 @@
project.version=1.0
project.name=Parent Test

View File

@ -0,0 +1,12 @@
import sbt._
class FlowmodelProject(info: ProjectInfo) extends ParentProject(info)
{
lazy val core = project("core", "Flowmodel core")
lazy val reporters = project("reporters", "Extra reporters", new Reporters(_))
class Reporters(info: ProjectInfo) extends ParentProject(info)
{
lazy val jfreechart = project("jfreechart", "JFreeChart reporters", core)
}
}

View File

@ -0,0 +1,2 @@
> publish-local
[success]