Testify relies on internal classes inside Tapestry that are not public APIs - that means that new versions of Tapestry can legitimately break Testify. We will endeavour to keep up-to-date with changes in Tapestry so there is always a version of Testify that will work for you.
These are the versions you currently need for different versions of Tapestry:
| Tapestry version | Testify version |
| 5.1.0.x | 1.0.2 |
| 5.2.4 | 1.0.3 |
| 5.3.0 | Not supported |
| 5.3.x (x>=1) | 1.0.4 |
Newer versions (>= v1.0.4) of Tapestry Testify are hosted on the Maven central repository.
If you don't use Maven, then download the jars from the maven repository by hand: http://repo1.maven.org/maven2/net/sourceforge/tapestrytestify/tapestry-testify/1.0.4.
If you use Maven, just include the dependency:
<dependency>
<groupId>net.sourceforge.tapestrytestify</groupId>
<artifactId>tapestry-testify</artifactId>
<version>1.0.4</version>
<scope>test</scope>
</dependency>
The formos servers weren't available last time I looked - if you need earlier versions please raise a ticket and I'll re-build are re-publish the jars elsewhere
If you don't use Maven, then download the jars from the maven repository by hand: http://tapestry.formos.com/maven-repository/com/formos/tapestry/tapestry-testify/.
If you use Maven, just include the dependency:
<repository>
<id>tapestry</id>
<url>http://tapestry.formos.com/maven-repository</url>
</repository>
<dependency>
<groupId>com.formos.tapestry</groupId>
<artifactId>tapestry-testify</artifactId>
<version>1.0.3</version>
<scope>test</scope>
</dependency>
For the latest snapshot build you can download directly from: https://oss.sonatype.org/content/groups/public/net/sourceforge/tapestrytestify/tapestry-testify/1.0.5-SNAPSHOT.
If you use Maven, just include the dependency:
<repository>
<id>sonatype-nexus</id>
<url>https://oss.sonatype.org/content/groups/public</url>
</repository>
<dependency>
<groupId>net.sourceforge.tapestrytestify</groupId>
<artifactId>tapestry-testify</artifactId>
<version>1.0.5-SNAPSHOT</version>
<scope>test</scope>
</dependency>