selenium
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.mastfrog</groupId>
<artifactId>selenium</artifactId>
<version>2.9.7</version>
</dependency><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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>
<parent>
<groupId>com.mastfrog</groupId>
<artifactId>mastfrog-parent</artifactId>
<version>2.9.7</version>
<relativePath/>
</parent>
<artifactId>selenium</artifactId>
<url>https://github.com/timboudreau/giulius-selenium-tests</url>
<name>Selenium - Guice - JUnit</name>
<properties>
<enforcer.skip>true</enforcer.skip>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>giulius-tests</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>giulius-annotations</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>giulius-annotation-processors</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit-driver</artifactId>
<exclusions>
<exclusion>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-client</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<exclusions>
<exclusion>
<artifactId>selenium-safari-driver</artifactId>
<groupId>org.seleniumhq.selenium</groupId>
</exclusion>
<exclusion>
<artifactId>netty</artifactId>
<groupId>io.netty</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>embedded-jetty</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.assertthat</groupId>
<artifactId>selenium-shutterbug</artifactId>
</dependency>
<!-- HtmlUnit drags in old incompatible versions which
have security warnings, so replace them with compatible versions
-->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<parallel/>
<parallelMavenExecution>false</parallelMavenExecution>
<perCoreThreadCount>1</perCoreThreadCount>
<threadCount>1</threadCount>
<reuseForks>false</reuseForks>
</configuration>
</plugin>
</plugins>
</build>
<issueManagement>
<system>Github</system>
<url>https://github.com/timboudreau/giulius-selenium-tests/issues</url>
</issueManagement>
<scm>
<url>https://github.com/timboudreau/giulius-selenium-tests.git</url>
<connection>scm:git:https://github.com/timboudreau/giulius-selenium-tests.git</connection>
<developerConnection>git@github.com/timboudreau/giulius-selenium-tests.git</developerConnection>
</scm>
<organization>
<name>Mastfrog Technologies</name>
<url>https://mastfrog.com</url>
</organization>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Tim Boudreau</name>
<email>tim@timboudreau.com</email>
<url>https://timboudreau.com</url>
</developer>
</developers>
</project>