mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-12-01 21:09:18 -06:00
136 lines
4.2 KiB
XML
136 lines
4.2 KiB
XML
<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>driver-web</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
<artifactId>mvn-defaults</artifactId>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<version>3.12.93-SNAPSHOT</version>
|
|
<relativePath>../mvn-defaults</relativePath>
|
|
</parent>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>
|
|
A nosqlbench driver module;
|
|
Provides the ability to drive steps through the webdriver API.
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>io.nosqlbench</groupId>
|
|
<artifactId>engine-api</artifactId>
|
|
<version>3.12.93-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
<artifactId>htmlunit-driver</artifactId>
|
|
<version>2.39.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
<artifactId>selenium-api</artifactId>
|
|
<version>3.141.59</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.seleniumhq.selenium</groupId>-->
|
|
<!-- <artifactId>selenium-json</artifactId>-->
|
|
<!-- <version>4.0.0-alpha-5</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
<artifactId>selenium-remote-driver</artifactId>
|
|
<version>3.141.59</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
<artifactId>selenium-java</artifactId>
|
|
<version>3.141.59</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
<artifactId>selenium-chrome-driver</artifactId>
|
|
<version>3.141.59</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
<artifactId>selenium-htmlunit-driver</artifactId>
|
|
<version>2.52.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
<version>4.5.12</version>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.seleniumhq.selenium</groupId>-->
|
|
<!-- <artifactId>selenium-devtools</artifactId>-->
|
|
<!-- <version>4.0.0-alpha-5</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.seleniumhq.selenium</groupId>-->
|
|
<!-- <artifactId>selenium-htmlunit-driver</artifactId>-->
|
|
<!-- <version>2.52.0</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.squareup.okhttp3</groupId>-->
|
|
<!-- <artifactId>okhttp</artifactId>-->
|
|
<!-- <version>4.5.0</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.seleniumhq.selenium</groupId>-->
|
|
<!-- <artifactId>selenium-htmlunit-driver</artifactId>-->
|
|
<!-- <version></version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- test scope only -->
|
|
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>shade</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|