Introduction
You can currently retrieve ATS libraries through Maven or a whole zipped archive
Maven
Here is the actual Maven repository location of all ATS artifacts.
Here is overview of ATS artifacts indexed in the MVNRepository site. Other ATS projects as TestExplorer and HTTP DB logger are listed one group level above,
here.
Following is a short Maven POM file you can use to depend to almost all ATS artifacts (including indirect dependencies).
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.my.product</groupId> <artifactId>my-tests</artifactId> <version>0.0.1-SNAPSHOT</version> <name>Simple Test Artifact</name> <properties> <ats.version>4.0.7</ats.version> </properties> <dependencies> <dependency> <groupId>com.axway.ats.framework</groupId> <artifactId>ats-rbv</artifactId> <version>${ats.version}</version> </dependency> <dependency> <groupId>com.axway.ats.framework</groupId> <artifactId>ats-uiengine</artifactId> <version>${ats.version}</version> </dependency> <dependency> <groupId>com.axway.ats.framework</groupId> <artifactId>ats-monitoringlibrary</artifactId> <version>${ats.version}</version> </dependency> </dependencies> </project>
Whole distribution
Here you can download a whole archive with all ATS libraries and their dependencies.
Back to parent page
Go to Table of Contents