Download webdriver-factory-3.0.jar file

Introduction

You can download webdriver-factory-3.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

webdriver-factory-3.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/ru.stqa.selenium/webdriver-factory/pom.properties
META-INF/maven/ru.stqa.selenium/webdriver-factory/pom.xml
ru.stqa.selenium.factory.AbstractWebDriverPool.class
ru.stqa.selenium.factory.DefaultDriverAlivenessChecker.class
ru.stqa.selenium.factory.DriverAlivenessChecker.class
ru.stqa.selenium.factory.LocalDriverProvider.class
ru.stqa.selenium.factory.LooseWebDriverPool.class
ru.stqa.selenium.factory.ReflectionBasedLocalDriverProvider.class
ru.stqa.selenium.factory.ReflectionBasedRemoteDriverProvider.class
ru.stqa.selenium.factory.RemoteDriverProvider.class
ru.stqa.selenium.factory.SingleWebDriverPool.class
ru.stqa.selenium.factory.ThreadLocalSingleWebDriverPool.class
ru.stqa.selenium.factory.WebDriverFactory.class
ru.stqa.selenium.factory.WebDriverFactoryMode.class
ru.stqa.selenium.factory.WebDriverPool.class

Pom

webdriver-factory-3.0.pom file content.

<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>

  <groupId>ru.stqa.selenium</groupId>
  <artifactId>webdriver-factory</artifactId>
  <version>3.0</version>
  <packaging>jar</packaging>

  <name>webdriver-factory</name>
  <description>An utility to manage WebDriver instances</description>
  <url>https://github.com/barancev/webdriver-factory</url>

  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <developers>
    <developer>
      <id>barancev</id>
      <name>Alexei Barantsev</name>
      <roles>
        <role>Owner</role>
      </roles>
    </developer>
  </developers>

  <scm>
    <connection>scm:git:git@github.com:barancev/webdriver-factory.git</connection>
    <developerConnection>scm:git:git@github.com:barancev/webdriver-factory.git</developerConnection>
    <url>https://github.com/barancev/webdriver-factory</url>
    <tag>webdriver-factory-3.0</tag>
  </scm>

  <dependencies>
    <dependency>
      <groupId>org.seleniumhq.selenium</groupId>
      <artifactId>selenium-java</artifactId>
      <version>2.53.1</version>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.seleniumhq.selenium</groupId>
      <artifactId>htmlunit-driver</artifactId>
      <version>2.21</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <configuration>
            <source>1.6</source>
            <target>1.6</target>
            <showDeprecation>true</showDeprecation>
            <showWarnings>true</showWarnings>
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <configuration>
            <includes>
              <include>**/*.java</include>
            </includes>
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-gpg-plugin</artifactId>
          <executions>
            <execution>
              <id>sign-artifacts</id>
              <phase>verify</phase>
              <goals>
                <goal>sign</goal>
              </goals>
            </execution>
          </executions>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.5.3</version>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.6</version>
      </plugin>
    </plugins>
  </build>

  <distributionManagement>
    <snapshotRepository>
      <id>sonatype-nexus-snapshots</id>
      <url>http://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
    <repository>
      <id>sonatype-nexus-staging</id>
      <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
    </repository>
  </distributionManagement>
</project>

POM Entry

<dependency>
   <groupId>ru.stqa.selenium</groupId>
   <artifactId>webdriver-factory</artifactId>
   <version>3.0</version>
</dependency>

Download

If you think the following webdriver-factory-3.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download webdriver-factory-3.0.jar file




PreviousNext

Related