Blank Project

If you are starting form scratch, please refer Creating Test Project under Get started.

Maven

You can use QAF as a Maven Artifact. Users would need to add this to their pom.xml:

Repository entry:

<repository>
    <id>qaf</id>
    <url>https://qmetry.github.io/qaf/dist</url>
</repository>

Maven Dependency Entry:

<dependency>
    <groupId>com.infostretch</groupId>
    <artifactId>qaf</artifactId>
    <version>2.1.7b</version>
</dependency>
<dependency>
    <groupId>com.infostretch</groupId>
    <artifactId>qaf-support</artifactId>
    <version>2.1.7b</version>
</dependency>

IVY

Create or update ivysettings.xml file to add new repository. Alternately you can add settings block into ivy.xml as well.

IVY settings

<?xml version="1.0" encoding="ISO-8859-1"?>
<ivysettings>
    <settings defaultResolver="qaf"/>
    <resolvers>
        <chain name="qaf">
            <ibiblio name="central" m2compatible="true"/>
            <ibiblio name="QAF" m2compatible="true" root="https://qmetry.github.io/qaf/dist" />
        </chain>
    </resolvers>
</ivysettings>

IVY Dependency Entry

<dependency org="com.infostretch" name="qaf" rev="2.1.7b" />
<dependency org="com.infostretch" name="qaf-support" rev="2.1.7b" />

Direct Download

You can download QAF jar from here.

You can download QAF Support jar from here.