Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[m2e-users] M2E not working as advertised.

Hi all,

I'm really disappointed in this product. I'm sure it works fine for
many, but after a clean installation of elcipse and M2E, creating a
maven project with arch type maven-archetype-webapp with artifactid of
hallo word, produces the following issues:

1. src/main/java was not created

If this was intentional then I suggest someone create a
maven-archetype-mvc-webapp.

2. ceating src/main/java, adding your pom, src files, web.xml and
dispatcher-servlet.xml and then hitting the run button gives you

SEVERE: Error configuring application listener of class
net.sourceforge.wurfl.core.web.WURFLServletContextListener
java.lang.ClassNotFoundException:
net.sourceforge.wurfl.core.web.WURFLServletContextListener

This is my first listener class that is suppose to load. It worked
fine before maven'izing my application.

3. Installing M2E-WTP and then hitting the run button gives you

SEVERE: Error configuring application listener of class
net.sourceforge.wurfl.core.web.WURFLServletContextListener
java.lang.ClassNotFoundException:
net.sourceforge.wurfl.core.web.WURFLServletContextListener

4. Adding more xml to pom:

<plugin>
    	<artifactId>maven-compiler-plugin</artifactId>
    	<version>2.0.2</version>
    	<configuration>
     		<source>1.6</source>
     		<target>1.6</target>
    	</configuration>
   	  </plugin>

and then hitting run gives you:

SEVERE: Error configuring application listener of class
net.sourceforge.wurfl.core.web.WURFLServletContextListener
java.lang.ClassNotFoundException:
net.sourceforge.wurfl.core.web.WURFLServletContextListener

This is day 2 trying to get an existing working mvc webapp to work.


Back to the top