i was using servlet 2.5 as follows:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
and i want to use servlet 3 since i am migrating to tomcat 7 so i can use EL 2.2, when i added the following dependency, it couldn't be found:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0</version>
<scope>provided</scope>
</dependency>
UPDATE:
I am using Spring 3, JSF 2, Tomcat 7
so what do you guys suggest ?