From: "Kuisong.Tong" <[EMAIL PROTECTED]>
> Hi,
> I want add ant target in the jelly script, how can I do? How can I use
> the target?
> Thanks!
Add a maven.xml file in your project and just add new goals to it. The Jelly
project itself has an example of this.
<project default="java:jar" xmlns:j="jelly:core">
<goal name="foo" prereqs="java:compile">
<echo>about to do something...</echo>
<java classname="foo" fork="yes">
<arg value="something"/>
</java>
</goal>
</project>
James
__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.comm
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>