As per
http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html,
I added the following to my pom:
...
<packaging>jar</packaging>
...
<build>
..
<plugins>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>xmlbeans</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
I expected (and desire) the xmlbeans plugin to run when I run 'mvn
compile' or 'mvn install', but it doesn't. Indeed, the xmlbeans plugin
only runs when I run 'mvn generate-sources'.
What am I getting wrong? What else must I do?
Thanks,
John
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]