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
