Hi Kerry,

On Feb 15, 2010, at 11:23 AM, Kerry Wilson wrote:

I am kicking the tires of Buildr for company usage. It seems that the buildfile has to reside in the parent directory of the projects with each projects build definition inside it. This is not optimal for my company as we need to be able to put each project's buildfile under source control within the directory. Is there any way to do this in the current release of Buildr?

The buildfile resides in the same directory as the top-level project definition. E.g., if you have a buildfile

define "P" do
  # ...

  define "S1" do
    # ...
  end

  define "S2" do
    # ...
  end
end

The directory contents will include

$PROJ/buildfile # the buildfile above
$PROJ/src       # src for "P"
$PROJ/S1/src    # src for S1
$PROJ/S2/src    # src for S2

Rhett

Reply via email to