eyes-selenium-java3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.applitools</groupId> <artifactId>eyes-selenium-java3</artifactId> <version>5.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> <artifactId>eyes-selenium-java3</artifactId> <name>eyes-selenium-java3</name> <url>http://www.applitools.com</url> <description>Applitools Eyes SDK for Selenium Java WebDriver</description> <properties> <defaultSuiteFiles> passedTestsSuite.xml </defaultSuiteFiles> <suiteFile>${defaultSuiteFiles}</suiteFile> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <parent> <groupId>com.applitools</groupId> <artifactId>eyes-sdk-java3-parent</artifactId> <version>5.0.0</version> <relativePath>../pom.xml</relativePath> </parent> <dependencies> <dependency> <groupId>com.applitools</groupId> <artifactId>eyes-common-java3</artifactId> <version>5.0.0</version> </dependency> <dependency> <groupId>com.applitools</groupId> <artifactId>eyes-selenium-common-java3</artifactId> <version>5.0.0</version> </dependency> <dependency> <groupId>com.applitools</groupId> <artifactId>eyes-sdk-core-java3</artifactId> <version>5.0.0</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.applitools</groupId> <artifactId>eyes-universal-core</artifactId> <version>5.0.0</version> </dependency> <dependency> <groupId>com.helger</groupId> <artifactId>ph-css</artifactId> <version>6.1.1</version> </dependency> <dependency> <groupId>io.appium</groupId> <artifactId>java-client</artifactId> <version>7.0.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.0</version> <configuration> <properties> <property> <name>suitethreadpoolsize</name> <value>2</value> </property> </properties> <suiteXmlFiles> <suiteXmlFile>${suiteFile}</suiteXmlFile> </suiteXmlFiles> <useFile>false</useFile> <trimStackTrace>false</trimStackTrace> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <!--<plugin>--> <!--<groupId>org.codehaus.mojo</groupId>--> <!--<artifactId>exec-maven-plugin</artifactId>--> <!--<version>1.6.0</version>--> <!--<executions>--> <!--<execution>--> <!--<id>npm-install</id>--> <!--<phase>generate-sources</phase>--> <!--<goals>--> <!--<goal>exec</goal>--> <!--</goals>--> <!--<configuration>--> <!--<executable>npm</executable>--> <!--<workingDirectory>${project.basedir}/src/main/node_resources</workingDirectory>--> <!--<arguments>--> <!--<argument>update</argument>--> <!--</arguments>--> <!--</configuration>--> <!--</execution>--> <!--</executions>--> <!--</plugin>--> <!--<plugin>--> <!--<groupId>org.apache.maven.plugins</groupId>--> <!--<artifactId>maven-resources-plugin</artifactId>--> <!--<version>3.1.0</version>--> <!--<executions>--> <!--<execution>--> <!--<id>copy-resources</id>--> <!--<phase>generate-sources</phase>--> <!--<goals>--> <!--<goal>copy-resources</goal>--> <!--</goals>--> <!--<configuration>--> <!--<outputDirectory>${project.basedir}/src/main/resources</outputDirectory>--> <!--<resources>--> <!--<resource>--> <!--<directory>${project.basedir}/src/main/node_resources/node_modules/@applitools/dom-capture/dist</directory>--> <!--<filtering>true</filtering>--> <!--</resource>--> <!--<resource>--> <!--<directory>${project.basedir}/src/main/node_resources/node_modules/@applitools/dom-snapshot/dist</directory>--> <!--<filtering>true</filtering>--> <!--</resource>--> <!--</resources>--> <!--</configuration>--> <!--</execution>--> <!--</executions>--> <!--</plugin>--> </plugins> </build> </project>