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>
<repository>
<id>jai</id>
<url>https://repository.jboss.org/nexus/content/repositories/thirdparty-releases</url>
</repository>
Maven Dependency Entry:
<dependency>
<groupId>com.qmetry</groupId>
<artifactId>qaf</artifactId>
<version>2.1.8</version>
</dependency>
<dependency>
<groupId>com.qmetry</groupId>
<artifactId>qaf-support</artifactId>
<version>2.1.8</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" />
<ibiblio name="jai" m2compatible="true"
root="https://repository.jboss.org/nexus/content/repositories/thirdparty-releases" />
</chain>
</resolvers>
</ivysettings>
IVY Dependency Entry
<dependency org="com.qmetry" name="qaf" rev="2.1.8" />
<dependency org="com.qmetry" name="qaf-support" rev="2.1.8" />
Direct Download
You can download QAF jar from here. You can download QAF Support jar from here.