File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 <maven .compiler.target>1.7</maven .compiler.target>
2121 <maven .compiler.source>1.7</maven .compiler.source>
2222 <hibernate-validator .version>5.0.1.Final</hibernate-validator .version>
23+ <el .api.version>2.2</el .api.version>
2324 </properties >
2425
2526 <dependencies >
3233 <groupId >org.hibernate</groupId >
3334 <artifactId >hibernate-validator</artifactId >
3435 <version >${hibernate-validator.version} </version >
36+ <!--
37+ Using compile scope here, and not runtime, because we may need to use some
38+ hibernate-validator specific annotations (like @Email)
39+ -->
40+ <scope >compile</scope >
41+ </dependency >
42+ <dependency >
43+ <groupId >javax.el</groupId >
44+ <artifactId >el-api</artifactId >
45+ <version >${el.api.version} </version >
46+ </dependency >
47+ <dependency >
48+ <groupId >org.glassfish.web</groupId >
49+ <artifactId >el-impl</artifactId >
50+ <version >${el.api.version} </version >
51+ <scope >runtime</scope >
3552 </dependency >
3653 </dependencies >
3754
You can’t perform that action at this time.
0 commit comments