Hi,

We are getting an error when trying to execute the following goal located in an xml imported from our maven.xml:

<goal name="aaa" prereqs="clean">
    <j:set var="test.goals" value="bbb" />
    <attainGoal name="ccc" />
</goal>

The error we are getting is the following:

INTERNAL ERROR
Reference made to goal 'clean' which has no definition.

If we change the goal to use attaingGoal instead of prereqs it will run properly:

<goal name="aaa">
    <attainGoal name="clean" />
    <j:set var="test.goals" value="bbb" />
    <attainGoal name="ccc" />
</goal>

We'd like to keep "clean" as a prereq... is there any way to to that?

Thanks!

P.D.: we need to use maven 1.1-beta-2, so updating maven is not an option for us... sorry


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to