Getting YUI4JSF
There are two ways of downloading YUI4JSF library;
Download with Maven
YUI4JSF site hosts it's own maven repository to distribute the releases. In order to get yui4jsf with maven, you need
configure the sourceforge yui4jsf repository in your project configuration.
<repositories>
...
<repository>
<id>yui4jsf repo</id>
<name>YUI4JSF Repository for Maven</name>
<url>http://yui4jsf.sourceforge.net/maven/core/</url>
<layout>default</layout>
</repository>
...
</repositories>
That's it, now you can get a specific YUI4JSF release by adding the following dependency;
<dependency>
<groupId>net.sf.yui4jsf</groupId>
<artifactId>yui4jsf</artifactId>
<version>0.6</version>
<scope>compile</scope>
</dependency>
Sourceforge Downloads
Each release is distributed in yui4jsf's project site at sourceforge