All ant tags work also in maven.
Look plugins jelly files in maven/plugins/...
Following is from clean plugin:
<?xml version="1.0"?>
<project
xmlns:j="jelly:core"
xmlns:ant="jelly:ant">
<goal name="clean" description="Remove all project artifacts"
prereqs="clean:clean"/>
<goal name="clean:clean"
description="Remove all project artifacts">
<ant:delete dir="${maven.build.dir}"/>
<ant:delete file="${basedir}/velocity.log" quiet="true"
failonerror="false"/
>
</goal>
</project>
On Thu, 2004-04-01 at 14:51, Marcin Gurbisz wrote:
> Hi
>
> Have maven something like conditional goal execution? Like "unless" in
> ant target.
>
> Regards,
> Marcin
>
> ---------------------------------------------------------------------
> 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]