quantum
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.perfecto</groupId> <artifactId>quantum</artifactId> <version>3.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>io.perfecto</groupId> <artifactId>quantum</artifactId> <version>3.0.0</version> <packaging>jar</packaging> <description>Quantum is QAF based open source project powered by Perforce</description> <url> https://help.perfecto.io/perfecto-help/content/perfecto/automation-testing/quantum.htm</url> <developers> <developer> <name>Prasant Kumar Sutaria</name> <email>psutaria@perforce.com</email> <organization>Perfecto Mobile by Perforce</organization> <organizationUrl>https://www.perfecto.io</organizationUrl> </developer> </developers> <licenses> <license> <name>MIT License</name> <distribution>repo</distribution> <url>https://opensource.org/license/mit</url> </license> </licenses> <properties> <io.netty.version>4.1.118.Final</io.netty.version> <jvm.version>11</jvm.version> <selenium.version>4.13.0</selenium.version> <selenium-http.version>4.13.0</selenium-http.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <testng.version>7.7.1</testng.version> <commons.logging.version>1.3.4</commons.logging.version> <log4j.version>2.23.1</log4j.version> <commons.collections.version>4.1</commons.collections.version> <dom4j.version>2.1.4</dom4j.version> <apache.http.client5.version>5.4.1</apache.http.client5.version> <cukes.version>7.11.1</cukes.version> <hamcrest.version>2.2</hamcrest.version> <org.json.version>20240303</org.json.version> <qaf.version>3.2.0</qaf.version> <poi.version>5.3.0</poi.version> <appium.client.version>8.6.0</appium.client.version> <jsoup.version>1.15.4</jsoup.version> <gson.version>2.12.1</gson.version> <jackson.version>2.18.2</jackson.version> <guava.jre.version>33.3.1-jre</guava.jre.version> <webdriver.manager.version>5.6.4</webdriver.manager.version> <slf4j.version>2.0.16</slf4j.version> <http.components.version>4.5.14</http.components.version> <commons.io.version>2.18.0</commons.io.version> <commons.beanutils.version>1.9.4</commons.beanutils.version> <maven.java.doc.plugin.version>3.5.0</maven.java.doc.plugin.version> <maven.compiler.plugin.version>3.14.0</maven.compiler.plugin.version> <maven.source.plugin.version>3.3.1</maven.source.plugin.version> <maven.jar.plugin.version>2.4</maven.jar.plugin.version> <maven.compiler.release>11</maven.compiler.release> </properties> <scm> <url>https://github.com/Project-Quantum/Quantum</url> </scm> <!-- <scm>--> <!-- <developerConnection>scm:git:https://github.com/Project-Quantum/Quantum</developerConnection>--> <!-- </scm>--> <!-- <distributionManagement>--> <!-- <repository>--> <!-- <id>repo1.perfectomobile.com</id>--> <!-- <url>https://repo1.perfectomobile.com/repositories/maven</url>--> <!-- </repository>--> <!-- </distributionManagement>--> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.java.doc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>${jvm.version}</source> <!--<target>${jvm.version}</target>--> <failOnError>false</failOnError> <excludePackageNames> com.quantum.listeners:com.quantum.axe:com.qmetry.qaf.automation.*:com.perfecto.reports</excludePackageNames> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.plugin.version}</version> <configuration> <archive> <manifestEntries> <frameworkVersion>${project.version}</frameworkVersion> </manifestEntries> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>jai</id> <url> https://repository.jboss.org/nexus/content/repositories/thirdparty-releases</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> </dependency> <!-- <dependency>--> <!-- <groupId>com.perfecto.reporting-sdk</groupId>--> <!-- <artifactId>reportium-testng</artifactId>--> <!-- <version>${reportium-sdk.version}</version>--> <!-- <exclusions>--> <!-- <exclusion>--> <!-- <groupId>junit</groupId>--> <!-- <artifactId>junit</artifactId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <groupId>commons-io</groupId>--> <!-- <artifactId>commons-io</artifactId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <groupId>org.testng</groupId>--> <!-- <artifactId>testng</artifactId>--> <!-- </exclusion>--> <!-- <exclusion>--> <!-- <groupId>commons-logging</groupId>--> <!-- <artifactId>commons-logging</artifactId>--> <!-- </exclusion>--> <!-- </exclusions>--> <!-- </dependency>--> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons.io.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-java --> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-java</artifactId> <version>${cukes.version}</version> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>${org.json.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.poi/poi --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>${poi.version}</version> <exclusions> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> </exclusions> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-lite --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml-lite</artifactId> <version>${poi.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>${poi.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup --> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>${jsoup.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging --> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>${commons.logging.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest --> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>${hamcrest.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.hamcrest/hamcrest-core --> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>${hamcrest.version}</version> </dependency> <dependency> <groupId>com.qmetry</groupId> <artifactId>qaf</artifactId> <version>${qaf.version}</version> <exclusions> <exclusion> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> </exclusion> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> <exclusion> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> </exclusion> <exclusion> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> </exclusion> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> </exclusion> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> <exclusion> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> </exclusion> <exclusion> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> </exclusion> <exclusion> <groupId>info.cukes</groupId> <artifactId>cucumber-java</artifactId> </exclusion> <exclusion> <groupId>org.testng</groupId> <artifactId>testng</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>java-client</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-support</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.qmetry</groupId> <artifactId>qaf-support</artifactId> <version>${qaf.version}</version> <exclusions> <exclusion> <groupId>com.qmetry</groupId> <artifactId>qaf</artifactId> </exclusion> <exclusion> <groupId>org.testng</groupId> <artifactId>testng</artifactId> </exclusion> <exclusion> <groupId>info.cukes</groupId> <artifactId>cucumber-java</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>java-client</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-support</artifactId> </exclusion> <exclusion> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </exclusion> </exclusions> </dependency> <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient --> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${http.components.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/io.netty/netty-codec-http --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec-http</artifactId> <version>${io.netty.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/io.netty/netty-common --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> <version>${io.netty.version}</version> </dependency> <dependency> <groupId>io.appium</groupId> <artifactId>java-client</artifactId> <version>${appium.client.version}</version> <exclusions> <exclusion> <groupId>org.asynchttpclient</groupId> <artifactId>async-http-client</artifactId> </exclusion> <exclusion> <groupId>io.netty</groupId> <artifactId>netty-common</artifactId> </exclusion> <exclusion> <groupId>io.netty</groupId> <artifactId>netty-codec-http</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> </exclusion> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-ie-driver</artifactId> </exclusion> </exclusions> </dependency> <!-- https://mvnrepository.com/artifact/org.asynchttpclient/async-http-client --> <!-- <dependency>--> <!-- <groupId>org.asynchttpclient</groupId>--> <!-- <artifactId>async-http-client</artifactId>--> <!-- <version>3.0.1</version>--> <!-- </dependency>--> <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils --> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>${commons.beanutils.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${selenium.version}</version> <exclusions> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-ie-driver</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-http-jdk-client</artifactId> <version>${selenium-http.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> <version>${selenium.version}</version> <exclusions> <exclusion> <groupId>org.asynchttpclient</groupId> <artifactId>async-http-client</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> <version>${selenium.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-support</artifactId> <version>${selenium.version}</version> </dependency> <dependency> <groupId>org.dom4j</groupId> <artifactId>dom4j</artifactId> <version>${dom4j.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.google.guava/guava --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.jre.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>${commons.collections.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>[2.12.6.1,)</version> </dependency> </dependencies> </project>