There are three ways to get the JSFUnit binaries.
The first is to download the jars from the JSFUnit Downloads Page.
Maven users can point to the JBoss Maven Repository at http://repo1.maven.org/maven2.
Sample pom declarations are as follows:
<repositories>
<repository>
<id>jboss</id>
<name>JBoss Repository</name>
<url>http://repository.jboss.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<!-- Core jar needed for all JSFUnit tests -->
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jboss-jsfunit-core</artifactId>
<version>1.0.0.GA</version>
</dependency>
<!-- RichFaces and Ajax4jsf Client jar -->
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jboss-jsfunit-richfaces</artifactId>
<version>1.0.0.GA</version>
</dependency>
<!-- Ant task used to "jsfunify" a WAR file -->
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jboss-jsfunit-ant</artifactId>
<version>1.0.0.GA</version>
</dependency>
You can also download everything directly from the JBoss Maven Repository
at
http://repository.jboss.org/maven2/org/jboss/jsfunit/
This also includes the example WARs, .md5, and .sha1 files.