<target name="a"/> <target name="b" depends="a"/> <target name="c" depends="a"/> <target naem="d" depends="b,c"/>
current output is a: b: c: d: What do you expect here? Jan >-----Ursprüngliche Nachricht----- >Von: Francis GALIEGUE [mailto:[email protected]] >Gesendet: Donnerstag, 3. September 2009 14:04 >An: Ant Users List >Betreff: Re: Proposal for improving Ant output (post-1.7) > >On Thu, Sep 3, 2009 at 11:39, Ernst de >Haan<[email protected]> wrote: >> Here's an initial proposal for improving Ant output, making >it less verbose: >> http://ernstdehaan.blogspot.com/2009/09/improving-ant-output.html >> >> What do you think? Do you consider the current Ant output >too verbose or >> just fine? >> Have you every had issues examining why an Ant build failed >and you wish you >> would have passed -verbose in the first place? >> And what do you think of the suggested changes? >> >> Kind regards, >> > >In a more general way, I consider the lack of chaining information >disturbing. That is, if you do, > ><target name="a"/> > ><target name="b" depends="a"/> > >and you invoke target b, the output will be: > >---- >a: > >b: >---- > >I'd prefer: > >---- >a (from b): > >b: >---- > >And more generally: > >---- >t1 (from t2) (from t3): >---- > >or alike. > >I have the habit to separate targets as much as I can and deeply nest >them. Such information would be nice to have. > >HTH, >-- > >Francis Galiegue >ONE2TEAM >Ingénieur système >Mob : +33 (0) 683 877 875 >Tel : +33 (0) 178 945 552 >[email protected] >40 avenue Raymond Poincaré >75116 Paris > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [email protected] >For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
