mirror of https://github.com/sbt/sbt.git
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:
parent
4687ecbf2c
commit
fff58af73e
|
|
@ -0,0 +1,2 @@
|
|||
project.version=1.0
|
||||
project.name=Parent Test
|
||||
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
> publish-local
|
||||
[success]
|
||||
Loading…
Reference in New Issue