The issue is likely to be a naming clash with existing tasks. The task
named "test" is already used and defined by default in buildr... so "test"
actually refers to the existing task instead of your directory.
I think this issue is mostly avoided in buildr 1.3 by using the customizable
directory layout.
alex
On Tue, Apr 15, 2008 at 9:01 PM, Harish Krishnaswamy <harishkswamy@gmail.com>
wrote:
> 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
>
|