Buildr incorrectly reports a circular dependency problem when the project
structure is slightly different.
Here's my project structure...
project
|---src
| |---com
| | |---blah
|---test
| |---com
| | |---blah
|---resources
| |---blah
And here's my script snippet...
define "project" do
...
compile.from("src").with(blah...)
...
test.compile.from("test").with(blah...)
...
end
The test task is complaining about circular dependency. Now if I change the
test folder name something else, it works. Seems like a bug.
-Harish
|