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

According to the image with the Libraries tab you posted, the project isn’t imported as Maven Project, and looks more like a Eclipse Project (Dynamic Web Project), because it doesn’t have a “Maven Dependencies” entry.
In this case you can re-import your project with Existing Maven Projects option (not Existing Projects into Workspace) or …
You can leave it as it is and “Add Library” > “Server runtime” and pick some server instance.