We now have the JSF Portlet Bridge jars available on the java.net maven2 repository.
If you use Maven2 to build JSF Portlet webapplications, you can reference the JSF Portlet Bridge library in your pom.xml as shown below. After the war is built, it will contain jsf-portlet.jar
So insert the following into your pom.xml --
Under <repositories>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>https://maven2-repository.dev.java.net/nonav/repository</url>
</repository>
Under <dependencies>
<dependency>
<groupId>com.sun.faces.portlet</groupId>
<artifactId>jsf-portlet</artifactId>
<version>1.2.1</version>
<scope>compile</scope>
</dependency>
The current versions are 1.2.1 and 1.1.5







Quick FYI -- The tag cloud / top tags section on the blog has been moved to the top on the right nav bar. Also, the tags for each entry on the blog have been reviewed and refreshed. We hope that the tags now better serve locatability of the desired topic/content. 









