Reputation: 9201
I downloaded the zip version of Glassfish 3.1.2.2 and unzip it in my local directory.
When I try to add the following glassfish directory as a runtime library, it says there is no glassfish runtime.
I checked out the folder and I think it is missing some jsf jar such as jsf-impl..
How do I set this up? DO I really need to download some 3rd party jsf implmentation jars?
Thanks
Upvotes: 0
Views: 3060
Reputation: 1109432
I checked out the folder and I think it is missing some jsf jar such as jsf-impl.
The two JARs jsf-api.jar
and jsf-impl.jar
have since Mojarra 2.1.6 been merged into a single JAR javax.faces.jar
. This was done so to be in line with general Java EE Maven rules. See also issue 2028.
Upvotes: 2