ciao a tutti,
questa è una semplice jsp che implementa una form di login

codice:
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>

<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
    </head>
    <body>

    <h1>JSP Page</h1>
    
    
    
    <form action="j_security_check" method="POST">
              Username:<input type="text" name="j_username">

              Password:<input type="password" name="j_password">
              <input type="submit" value="Login">
    </form>
    
    </body>
</html>
come mai l'IDE mi sottolinea in rosso la direttiva

<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

dandomi l'errore


http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application



Premetto che nel web.xml tutto è settato correttamente per questo tipo di login, ruoli, ecc ecc


Manca qualcosa?
cosa devo fare??


grazie x l'aiuto