SeeTestAutomation- Maven Repository - Maven and Gradle Syntax
info
Please note that this tool is classified as a Legacy tool. We recommend transitioning to our updated solutions to maintain optimal performance and security in your workflows. For more information on this matter, please reach out to technical support .
The Experitest repository holds the SeeTest client builds for integration with Maven projects.
The repository path and dependency list:
pom.xml
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>Your.Group.Id</groupId>
<artifactId>Your.Artifact.Id</artifactId>
<version>Your.Version</version>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<id>Experitest.repo1</id>
<name>YourName</name>
<url>https://cloud.experitest.com/repo/</url>
<layout>default</layout>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.experitest</groupId>
<artifactId>seetest-client</artifactId>
<version>11.0</version>
</dependency>
</dependencies>
</project>
Gradle Sample
apply plugin: 'java'
repositories {
maven {
url "https://cloud.experitest.com/repo/"
}
mavenCentral()
}
dependencies {
...
testCompile group: 'com.experitest', name: 'seetest-client', version: '11.0'
...
}