You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@buildr.apache.org by Harish Krishnaswamy <ha...@gmail.com> on 2008/04/16 23:56:52 UTC

Dependency on an external project

I have a library project on which a bunch of my other projects depend on and
I want the dependent projects to automatically install the library project
before building themselves. How would I do this? Its not really a parent
project, I don't think. Here's my workspace structure...

workspace
|---library-prj
|   |---src
|   |   ...
|   |---buildfile
|   ...
|---prj-1
|   |---src
|   |   ...
|   |---buildfile
|   ...
|---prj-2
|   |---src
|   |   ...
|   |---buildfile


I want prj-1 and prj-2 to install library-prj before building themselves.
Thanks.