> -----Original Message-----
> From: Michael Pelz Sherman [mailto:[EMAIL PROTECTED]
> I'd like to define a (default) ant target that calls "ant
-projecthelp" to
> list the targets & descriptions in my project.

Now you can do just -p. --DD

  <target name="usage" description="prints usage information">
    <java classname="org.apache.tools.ant.Main">
      <arg value="-projecthelp"/>
      <arg value="-buildfile"/>
      <arg value="${ant.file}" />
    </java>
  </target>

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

Reply via email to