Download JSFUnit
There are three ways to get the JSFUnit binaries. Choose one below.
Direct Downloads 2.0.0.Beta2
Name | Description | Release date | License | Release notes | Download |
---|---|---|---|---|---|
jboss-jsfunit-core-2.0.0.Beta2.jar | JSFUnit Core jar | 2011-09-08 | LGPL | Release Notes | Download Downloads: 0 |
jsfunit-arquillian-2.0.0.Beta2.jar | Arquillian Test Runner | 2011-09-08 | LGPL | Release Notes | Download Downloads: 0 |
jsfunit-cactus-2.0.0.Beta2.jar | Cactus Test Runner | 2011-09-08 | LGPL | Release Notes | Download Downloads: 0 |
jboss-jsfunit-richfaces-2.0.0.Beta2.jar | RichFaces/Ajax4jsf Client jar for JSFUnit | 2011-09-08 | LGPL | Release Notes | Download Downloads: 0 |
Direct Downloads 1.3.0.Final
Name | Description | Size | Release date | License | Download |
---|---|---|---|---|---|
jboss-jsfunit-core-1.3.0.Final.jar | JSFUnit Core jar | 77 KB | 2010-08-10 | LGPL | Download Downloads: 0 |
jboss-jsfunit-richfaces-1.3.0.Final.jar | RichFaces/Ajax4jsf Client jar for JSFUnit | 6 KB | 2010-08-10 | LGPL | Download Downloads: 0 |
jboss-jsfunit-ant-1.3.0.Final.jar | JSFUnit Ant Task jar | 13 KB | 2010-08-10 | LGPL | Download Downloads: 0 |
jboss-jsfunit-microdeployer-1.3.0.Final.jar | JSFUnit Deployer for JBoss AS 5.x | 5 MB | 2010-08-11 | LGPL | Download Downloads: 0 |
jboss-jsfunit-analysis-1.3.0.Final.jar | JSFUnit Static Analysis Tools | 120 KB | 2010-08-10 | LGPL | Download Downloads: 0 |
For Maven Users
Maven users can point to the JBoss Maven Repository at https://repository.jboss.org/nexus/content/groups/public.
Sample pom declarations for JSFUnit 2.0.0.Beta2 and JSFUnit 1.3.0.Final are as follows:
<!-- Sample declarations for JSFUnit 2.0.0.Beta2 -->
<repositories>
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Maven Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<!-- jar needed for running JSFUnit under Arquillian. For Cactus, replace the artifactId with jsfunit-cactus -->
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jsfunit-arquillian</artifactId>
<version>2.0.0.Beta2</version>
</dependency>
<!-- RichFaces and Ajax4jsf Client jar -->
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jboss-jsfunit-richfaces</artifactId>
<version>2.0.0.Beta2</version>
</dependency>
<!-- Ant task used to "jsfunify" a WAR file -->
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jboss-jsfunit-ant</artifactId>
<version>2.0.0.Beta2</version>
</dependency><!-- JSFUnit Static Analysis Tools -->
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jboss-jsfunit-analysis</artifactId>
<version>2.0.0.Beta2</version>
</dependency>
<repositories>
<repository>
<id>jboss</id>
<name>JBoss Repository</name>
<url>https://repository.jboss.org/nexus/content/groups/public-jboss</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.3.0.Final</version>
</dependency>
<!-- RichFaces and Ajax4jsf Client jar -->
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jboss-jsfunit-richfaces</artifactId>
<version>1.3.0.Final</version>
</dependency>
<!-- Ant task used to "jsfunify" a WAR file -->
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jboss-jsfunit-ant</artifactId>
<version>1.3.0.Final</version>
</dependency><!-- JSFUnit Static Analysis Tools -->
<dependency>
<groupId>org.jboss.jsfunit</groupId>
<artifactId>jboss-jsfunit-analysis</artifactId>
<version>1.3.0.Final</version>
</dependency>
Download from Maven Repository
You can also download everything directly from the JBoss Maven Repository.
https://repository.jboss.org/nexus/index.html#nexus-search;quick~jsfunit
From there you can get all the example WARs, .md5, and .sha1 files.