I try to create simple project with JSF, Eclipse and Maven.
I used
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
for download by Maven jsf-api. But if I understand correct I also need jsf-impl?
When I try add like:
<dependency>
<groupId>javax.faces</groupId>
<artifactId>jsf-impl</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
nothing find.
Where I can find jsf-impl?
Thanks.
On the same website that I posted on your last question, the instructions explain that you shouldn’t need jsf-impl, because your app server should provide it. The site goes on to mention how to get it from maven if you really need it.