I see that m2e is able to create all the necessary artifacts for building my web application.

However the problem I'm facing is that I don't see the "Web Resources" section in the project explorer.

To navigate to my web resources(jsp, js, css ...) (which happen to be under src/main/webapp), I need to expand the folder structure everytime.

the following is my pom

<?xml version="1.0" encoding="UTF-8"?>
<project>
    ...

    <packaging>war</packaging>

    <dependencies>
        ...
    </dependencies>

    <build>
        <resources>
            <resource>
                <directory>${basedir}/src/main/resources</directory>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.1.1</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.8</version>
                <configuration>
                    <wtpversion>2.0</wtpversion>
                    <wtpmanifest>true</wtpmanifest>
                    <wtpapplicationxml>true</wtpapplicationxml>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

How to I change my POM such that Eclipse maps src/main/webapps to "Web Resources"??

I'm using eclipse 3.7.0 and m2e 1.0.100

Any help is appreciated!!!

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Have you installed the Maven Integration for WTP (a.k.a m2e-wtp)? It's available from the Eclipse Marketplace, or the m2e marketplace. See http://community.jboss.org/en/tools/blog/2011/08/01/m2eclipse-wtp-0131-back-to-the-m2e-marketplace for more informations on how to install it.

You can also find more informations on the Deployed Resources node (formerly Web Resources) in http://community.jboss.org/en/tools/blog/2011/06/23/m2eclipse-wtp-0130-new-noteworthy

link|improve this answer
Thanks Fred. After installing this plugin, I could see the deployed resources. (Previously I was having just m2e 1.0.100) installed. BTW, do I need both m2e and m2e-wtp installed in eclipse to fully leverage the maven integration capabilities with eclipse?. If so, can u eloborate a bit on why do I need each. Thanks.. – Kalinga Aug 3 '11 at 19:23
m2e-core deals with pure Java configuration, Maven classpath management and so on. m2e-wtp is taking care of the WTP integration : configuring Facets according to each package's maven configuration, declaring what dependencies must be deployed to the WTP controlled servers. So it all depends on your needs. If you want a comprehensive WTP integration, then m2e-wtp should be installed alongside m2e-core – Fred Bricon Aug 4 '11 at 22:48
Thanks Fred for clarifying.. – Kalinga Aug 5 '11 at 17:05
feedback

Just a shot in the dark: Right click on your project, Maven->Update Project configuration...

Or maybe you installed the wrong Eclipse version? Eclipse IDE for Java EE Developers should do the trick.

link|improve this answer
No luck with that .. :( – Kalinga Aug 1 '11 at 14:19
feedback

Your Answer

 
or
required, but never shown

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