On Mon, 2004-06-28 at 17:00, Roberto Castro wrote:
<snip/>
> <?xml version="1.0" encoding="iso-8859-1"?>
> <project xmlns:j="jelly:core" xmlns:d="deploy">
> <attainGoal name="jar:install"/>
> </project>
>
try this:
<?xml version="1.0" encoding="iso-8859-1"?>
<project xmlns:j="jelly:core" xmlns:d="deploy" default="myGoal">
<goal name="myGoal">
<attainGoal name="jar:install"/>
</goal>
</project>
You need to wrap the <attainGoal/> tag in a <goal/> tag...use the
default attribute of the project tag to indicate which is the default
goal to attain (as in the command line "maven").
HTH,
-john
--
John Casey
[EMAIL PROTECTED]
CommonJava Open Components Project
http://www.commonjava.org
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]