I am mavenizing an ant project. One module includes XSD files that are used to generate source files using Castor. I have everything working if I run:
mvn castor:generate package
However I am not able to get it to run the generate goal for my plugin without specifying it on the command line. My plugin xml section is as follows:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>castor-maven-plugin</artifactId>
<version>1.0</version>
<configuration>
</configuration>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
I have tried a number of phase entries without any luck. Any idea what I am doing wrong here? I have tested this in Windows XP and Linux, using Maven 2 and 3. I have tried it with version 1.0 (which I must use) and 2.0 of the castor-maven-plugin.
Thanks Tim