JSP EL desabilitado

Ola pessoal, nao estou conseguindo usar a
expression language, ela parece estar desabilitada em algum
lugar mas nao no meu xml.
Codigo:

<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Insert title here</title>
</head>
<body>
<h1><c:set var="email" value="jeanmarcel@" /></h1>
Seu email e: <c:out value="${email}"></c:out><br />
${3 * 5}

</body>
</html>

Saida:

Seu email e: ${email} ${3 * 5}
Ja tentei:

<jsp-config> <jsp-property-group> <url-pattern>*.jsp</url-pattern> <el-ignored>false</el-ignored> </jsp-property-group> </jsp-config>
Obrigado!

use isso:

<%@page isELIgnored=“false”%>

no começo da página.

Funciono…
valeu!!!