eyes-selenium-java5
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.applitools</groupId> <artifactId>eyes-selenium-java5</artifactId> <version>5.80.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-java5</artifactId> <groupId>com.applitools</groupId> <version>5.80.0</version> <name>eyes-selenium-java5</name> <url>http://www.applitools.com</url> <description>Applitools Eyes SDK for Selenium Java WebDriver</description> <licenses> <license> <name>Applitools License</name> <url>https://www.applitools.com/eula/sdk</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/applitools/eyes.sdk.javascript1</connection> <developerConnection>scm:git:ssh://github.com:applitools/eyes.sdk.javascript1</developerConnection> <url>https://github.com/applitools/eyes.sdk.javascript1</url> </scm> <developers> <developer> <id>team@applitools.com</id> <name>Applitools Team</name> <email>team@applitools.com</email> <url>http://www.applitools.com</url> <organization>Applitools</organization> <organizationUrl>http://www.applitools.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+2</timezone> </developer> </developers> <dependencies> <dependency> <groupId>com.applitools</groupId> <artifactId>eyes-selenium-common-java5</artifactId> <version>5.71.2</version> </dependency> <dependency> <groupId>com.applitools</groupId> <artifactId>eyes-sdk-core-java5</artifactId> <version>5.82.0</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.applitools</groupId> <artifactId>eyes-connectivity-java5</artifactId> <version>5.66.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.helger</groupId> <artifactId>ph-css</artifactId> <version>6.1.1</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>7.7.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.6.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <version>4.6.1</version> <scope>test</scope> </dependency> <!-- <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-devtools-v131</artifactId> <version>4.27.0</version> <scope>test</scope> </dependency> --> </dependencies> <properties> <unitSuiteFile>unitTestsSuite.xml</unitSuiteFile> <integrationSuiteFile>integrationTestsSuite.xml</integrationSuiteFile> <e2eSuiteFile>e2eTestsSuite.xml</e2eSuiteFile> <defaultSuiteFile>${unitSuiteFile},${integrationSuiteFile},${e2eSuiteFile}</defaultSuiteFile> <suiteFile>${defaultSuiteFile}</suiteFile> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.0</version> <configuration> <suiteXmlFiles> <suiteXmlFile>${suiteFile}</suiteXmlFile> </suiteXmlFiles> <useFile>false</useFile> <trimStackTrace>false</trimStackTrace> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> <distributionManagement> <snapshotRepository> <id>snapshot</id> <name>Maven central snapshots repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>maven</id> <activation> <property> <name>maven</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts-on-verify</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>install</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>maven</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.3.0</version> <configuration> <descriptors> <descriptor>src/assembly/bin.xml</descriptor> </descriptors> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>snapshot</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts-on-verify</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>install</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>snapshot</serverId> <nexusUrl>https://oss.sonatype.org/content/repositories/snapshots</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.3.0</version> <configuration> <descriptors> <descriptor>src/assembly/bin.xml</descriptor> </descriptors> </configuration> </plugin> </plugins> </build> </profile> <!-- TODO: add jfrog --> <!-- <profile>--> <!-- <id>jfrog</id>--> <!-- <activation>--> <!-- <property>--> <!-- <name>jfrog</name>--> <!-- <value>true</value>--> <!-- </property>--> <!-- </activation>--> <!-- <build>--> <!-- <plugins>--> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-gpg-plugin</artifactId>--> <!-- <version>1.6</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <id>sign-artifacts-on-verify</id>--> <!-- <phase>verify</phase>--> <!-- <goals>--> <!-- <goal>sign</goal>--> <!-- </goals>--> <!-- <configuration>--> <!-- <gpgArguments>--> <!-- <arg>--pinentry-mode</arg>--> <!-- <arg>loopback</arg>--> <!-- </gpgArguments>--> <!-- </configuration>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-source-plugin</artifactId>--> <!-- <version>2.2.1</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <id>attach-sources</id>--> <!-- <goals>--> <!-- <goal>jar</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <!-- <plugin>--> <!-- <artifactId>maven-dependency-plugin</artifactId>--> <!-- <executions>--> <!-- <execution>--> <!-- <phase>install</phase>--> <!-- <goals>--> <!-- <goal>copy-dependencies</goal>--> <!-- </goals>--> <!-- <configuration>--> <!-- <outputDirectory>${project.build.directory}/lib</outputDirectory>--> <!-- </configuration>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-javadoc-plugin</artifactId>--> <!-- <version>2.9.1</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <id>attach-javadocs</id>--> <!-- <goals>--> <!-- <goal>jar</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <!-- <plugin>--> <!-- <groupId>org.sonatype.plugins</groupId>--> <!-- <artifactId>nexus-staging-maven-plugin</artifactId>--> <!-- <version>1.6.13</version>--> <!-- <extensions>true</extensions>--> <!-- <configuration>--> <!-- <serverId>jfrog</serverId>--> <!-- <nexusUrl></nexusUrl>--> <!-- <autoReleaseAfterClose>true</autoReleaseAfterClose>--> <!-- </configuration>--> <!-- </plugin>--> <!-- <plugin>--> <!-- <groupId>org.apache.maven.plugins</groupId>--> <!-- <artifactId>maven-assembly-plugin</artifactId>--> <!-- <version>3.3.0</version>--> <!-- <configuration>--> <!-- <descriptors>--> <!-- <descriptor>src/assembly/bin.xml</descriptor>--> <!-- </descriptors>--> <!-- </configuration>--> <!-- </plugin>--> <!-- </plugins>--> <!-- </build>--> <!-- </profile>--> </profiles> </project>