[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[m2e-users] M2E not working as advertised.
|
- From: Jacques Koorts <jkoorts@xxxxxxxxx>
- Date: Thu, 10 May 2012 11:16:19 +0200
- Delivered-to: m2e-users@eclipse.org
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=DdIMslU8/EkeHtcyUxD3WEePgig+8LktdVukdA7pMEA=; b=k1KFV5qn6DtCyJhFQYaaLTejl4vYORUy1KXyvYgfJfhwcvNAEJ7eG4vFyrITxNJ66T 7V9ekUUDSXHWGw8BX0NsEuIYowgC0pXSzfQNvPUdheHRa3Q0AXkuaEFbeecdjEOJGQ2g KeLyLoGr7pMYVINtPyy6KjjzHG1RtJJcSroJPwSu6wz6aq52G+7KF/xUmuqAMokne/UQ i67BVNJdXV4DtpA1hyxGPHLbbnS3iW7fNkkegxNBh8sE0mfhy5dimeLr4IbwcZEclJcF B9EyW7mJxXozs030pYZwfMk+0hWw7ALwA+5oHATL0B0lB0M/Kly2V0BeA6TWNuo3z1ba E4Bg==
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.