Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[m2e-users] Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:jaxws-maven-plugin:1.10:wsgen

Hi all,

I formerly use the maven 2.0.8 and have no problem by using the wsgen goal in pom.xml. Now I change to maven 3.0.3 and got problem after I import the project into the eclipse. I got error message as follow:
"Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:jaxws-maven-plugin:1.10:wsgen (execution: default, phase: process-classes)  "


Here is the section in my pom.xml where encounters this error:

...
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxws-maven-plugin</artifactId>
                <version>1.10</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>wsgen</goal>
                        </goals>
                        <configuration>
                            <sei>com.MyWeb</sei>
              <!--for demo purpose only, the webapp does not-->
              <!--need the generated wsdl files-->
                            <genWsdl>true</genWsdl>
                            <keep>true</keep>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
...

Any idea?

Thomas


Back to the top