You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by Thomas Christensen <tc...@nordija.com> on 2001/01/13 18:38:03 UTC

Request to submit new tasks

Hi

I have made a couple of tasks that interactively generates
property files like the Configure scripts from different
Linux source distributions.

<target name="config">
<configure file=".ant.properties">
  <askproperty name="dburl" message="Which db url to use?"
defaultvalue="jdbc:mysql://localhost:3306/dev"/>
</configure>
</target>

By executing "ant config" you get a chance to specify your
set up.

How can I submit this?

Thomas