Reputation: 65
I am building a project in Eclipse to run the the Omnifaces showcase to study how the library works, but the PusbBean.java
is not being found.
The class org.omnifaces.cdi.push.PushContext
is not in the library omnifaces-2.2.jar.
There is any new version available? Did I miss something?
Upvotes: 0
Views: 129
Reputation: 13512
Latest version is omnifaces2.3-SNAPSHOT here is the dependecy information
<dependency>
<groupId>org.omnifaces</groupId>
<artifactId>omnifaces</artifactId>
<version>2.3-SNAPSHOT</version>
</dependency>
and this jar contain PushContext
interface
Note:- This is Snapshot and not the final release as i saw @BalusC discussing about this Push component with core JSF development team.
Now check omnifaces2.0 javadocs
It clearly showing no such package exist in version2.2
Upvotes: 1