Skip to content

Commit a54265f

Browse files
BAEL-197 - EL3 dependency added
1 parent 5b06a35 commit a54265f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

jsf/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</dependency>
2828
<dependency>
2929
<groupId>javax.el</groupId>
30-
<artifactId>el-api</artifactId>
30+
<artifactId>javax.el-api</artifactId>
3131
<version>${javax.el.version}</version>
3232
</dependency>
3333

@@ -127,7 +127,7 @@
127127

128128
<!-- JSF -->
129129
<com.sun.faces.version>2.1.7</com.sun.faces.version>
130-
<javax.el.version>2.2</javax.el.version>
130+
<javax.el.version>3.0.0</javax.el.version>
131131

132132
<!-- logging -->
133133
<org.slf4j.version>1.7.13</org.slf4j.version>

jsf/src/main/java/com/baeldung/springintegration/controllers/ELSampleBean.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
package com.baeldung.springintegration.controllers;
22

3-
import java.util.Random;
43
import javax.annotation.PostConstruct;
4+
import javax.el.LambdaExpression;
55
import javax.faces.application.Application;
66
import javax.faces.application.FacesMessage;
77
import javax.faces.bean.ManagedBean;
88
import javax.faces.bean.ViewScoped;
9-
import javax.faces.component.html.HtmlInputText;
109
import javax.faces.context.FacesContext;
10+
import java.util.Random;
1111

1212
@ManagedBean(name = "ELBean")
1313
@ViewScoped

0 commit comments

Comments
 (0)