Steve Donie wrote:
>
> Sam - I've been setting up gump here at my company, with the intent of
using
> it to build several internal projects. They all use Ant, but I don't
really
> want to build ant (and all it's dependencies) from source. I'm trying to
> figure out how to tell it that I have a local installed copy of ant, but
I
> am not sure how to do that.

Start with the jakarta-ant.xml.  Remove the cvs element.  Remove the ant
element.  Remove all depend and option elements.  Remove the home element.
Remove the dist-ant and test-ant projects.  Here's all you should have
left:

   <module name="jakarta-ant">

     <url  href="http://jakarta.apache.org/ant/index.html"/>
     <description>
       Java based build tool
     </description>

     <project name="jakarta-ant">
       <jar name="lib/ant.jar"/>
       <jar name="lib/optional.jar"/>
     </project>

   </module>

Now in your workspace definition, add

   <project name="jakarta-ant" home="/path/to/ant">

Where /path/to/ant is what you normally set $ANT_HOME to.

You're done!

- Sam Ruby

P.S.  As you can see at http://jakarta.apache.org/gump/, I am in the
process of documenting the data definitions.  Once done, I plan to focus on
documenting and making it easier for someone to get started.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to