wix-webdriver-manager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.wix</groupId>
<artifactId>wix-webdriver-manager</artifactId>
<version>1.2.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>
<packaging>jar</packaging>
<parent>
<groupId>com.wix</groupId>
<artifactId>wix-oss-java-parent</artifactId>
<version>0.38.0</version>
</parent>
<groupId>com.wix</groupId>
<artifactId>wix-webdriver-manager</artifactId>
<version>1.2.0</version>
<name>Wix WebDriver Manager</name>
<description>Module on creating any web-driver on any supported environment</description>
<url>https://wix.com</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/wix/wix-webdriver-manager</url>
<connection>scm:git:git://github.com/wix/wix-webdriver-manager.git</connection>
<developerConnection>scm:git:git@github.com:wix/wix-webdriver-manager.git</developerConnection>
<tag>1.2.0</tag>
</scm>
<issueManagement>
<url>https://github.com/wix/wix-webdriver-manager/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>
<dependency>
<groupId>io.appium</groupId>
<artifactId>java-client</artifactId>
<version>7.0.0</version>
</dependency>
<dependency>
<groupId>io.github.bonigarcia</groupId>
<artifactId>webdrivermanager</artifactId>
<version>3.6.1</version>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>1.10</version>
</dependency>
</dependencies>
</project>