Tristan King wrote:

> I'm trying to use 3 instances of the javacc-maven-plugin in the one
> project,

In general, Maven does not allow you to use multiple <plugin> elements for
the same plugin. So, instead of
  <plugin/>
  <plugin/>
  <plugin/>
try to change your POM to
  <plugin>
    <executions>
      <execution>
      <execution>
      <execution>
    </executions>
  </plugin>
i.e. group all your <execution>s in the same <plugin> section.

BTW, the latest version of the plugin is 2.4.1.

HTH,


Benjamin




---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to