From reading A Java web project created with Maven is not recognized as such by Eclipse

I add the below plugin to pom.xml to convert my maven project to a web project :

<plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-eclipse-plugin</artifactId>
        <configuration>
            <wtpmanifest>true</wtpmanifest>
            <wtpapplicationxml>true</wtpapplicationxml>
            <wtpversion>2.0</wtpversion>
        </configuration>
    </plugin>
</plugin>

I then run "Update Project Configuration" but the maven project is not converted to a web project.

If I run the command mvn eclipse:eclipse -Dwtpversion=2.0 the project is then updated. Should updating the .pom file not suffice to convert the maven project to a web project ?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

It will not suffice. The plugin configuration needs to be executed, which will not happen by just loading/refreshing it in Eclipse. It gets executed when mvn eclipse:eclipse is run.

I assume we do not have m2e, which does not need this configuration anway.

link|improve this answer
I do have m2e, but to deploy to tomcat I need to convert the project to a web project so why dont I need this configuration ? – user470184 Feb 13 at 11:08
@user470184. m2e does not use information in maven-eclipse-plugin. It auto-detects project based on packaging type. You would want to have m2e wtp integration installed. – Raghuram Feb 13 at 11:26
Are m2e & maven-eclipse-plugin not the same plugin ? – user470184 Feb 13 at 11:40
@user470184. No. They are mutually exclusive. They do not work well with each other as well. – Raghuram Feb 13 at 11:42
@user470184. Found this related blog entry. – Raghuram Feb 13 at 11:45
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.