mirror of https://github.com/sbt/sbt.git
Add the needed type annotation for cycle (recursive lazy value)
parent
27b87fc036
commit
d45ed34164
|
|
@ -20,7 +20,7 @@ object MyBuild extends Build
|
|||
|
||||
// Declare a project with ID 'sub1' in directory 'a'.
|
||||
// Declare a classpath dependency on sub2 in the 'test' configuration.
|
||||
lazy val sub1 = Project("sub1", file("a")) dependsOn(sub2 % "test")
|
||||
lazy val sub1: Project = Project("sub1", file("a")) dependsOn(sub2 % "test")
|
||||
|
||||
// Declare a project with ID 'sub2' in directory 'b'.
|
||||
// Declare a configuration dependency on the root project.
|
||||
|
|
|
|||
Loading…
Reference in New Issue