I use eclipse and Apachw Maven. I install maven plugin for eclipse. And have project. I add some dependencies for servlet-api into my pom file you can see them :
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jstl-impl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>jstl-api</artifactId>
<version>1.2</version>
</dependency>
I refresh my project, make maven clean and then package but in result I get this:

so mabe someone can help me? (I can download and add all this libraries in web-inf/lib folder but I don't wan do this)
UPDATE
