Hi everyone.
I have a Java Maven project on Eclipse with a simple Servlet that should display Hello World.
Whenever I try to access it, I get the following error message in my console :
java.lang.ClassNotFoundException: javax.servlet.http.HttpServlet
However, I checked my pom.xml, it contains this :
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
Also, if I check in my project build path, it contains the right library :
Am I missing something ?
Thanks in advance.