Where can I find jsf-impl for my jsf 2 webapp?
In maven repo I got version 1.2.
In http://download.java.net/maven/2/javax/faces/ I see only jsf-api, but not jsf-impl
Im currently using tomcat 7 and experimenting with primary.
Thanks!
UPDATE
I managed to use both api and impl, but I'm still not sure which one I should use:
<dependency> <groupId>com.sun.faces</groupId> <artifactId>jsf-api</artifactId> <version>2.0.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.sun.faces</groupId> <artifactId>jsf-impl</artifactId> <version>2.0.3</version> <scope>compile</scope> </dependency>
UPDATE
Sorry for the ambiguity, but this is not only the version that I should use.
I doubted because:
- I notice the existence of 2 groups of identifiers javax.faces and com.sun.faces
- I do not see jsf-impl from the maven repository
- Which repository should I use to get the latest version
Thanks:-)!
source share