You can download webdrivermanager-1.4.9.jar in this page.
GNU Lesser General Public License
webdrivermanager-1.4.9.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/io.github.bonigarcia/webdrivermanager/pom.properties META-INF/maven/io.github.bonigarcia/webdrivermanager/pom.xml application.properties io.github.bonigarcia.wdm.Architecture.class io.github.bonigarcia.wdm.BrowserManager.class io.github.bonigarcia.wdm.ChromeDriverManager.class io.github.bonigarcia.wdm.Downloader.class io.github.bonigarcia.wdm.DriverVersion.class io.github.bonigarcia.wdm.EdgeDriverManager.class io.github.bonigarcia.wdm.GitHubApi.class io.github.bonigarcia.wdm.InternetExplorerDriverManager.class io.github.bonigarcia.wdm.MarionetteDriverManager.class io.github.bonigarcia.wdm.OperaDriverManager.class io.github.bonigarcia.wdm.OperativeSystem.class io.github.bonigarcia.wdm.PhantomJsDriverManager.class io.github.bonigarcia.wdm.VoidDriverManager.class io.github.bonigarcia.wdm.WdmConfig.class io.github.bonigarcia.wdm.WebDriverManager.class simplelogger.properties
webdrivermanager-1.4.9.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>io.github.bonigarcia</groupId> <artifactId>webdrivermanager</artifactId> <version>1.4.9</version> <properties> <slf4j.version>1.7.12</slf4j.version> <commons-io.version>2.4</commons-io.version> <gson.version>2.3.1</gson.version> <config.version>1.2.1</config.version> <commons-lang3.version>3.4</commons-lang3.version> <jarchivelib.version>0.7.1</jarchivelib.version> <jsoup.version>1.9.2</jsoup.version> <junit.version>4.12</junit.version> <hamcrest.version>1.3</hamcrest.version> <selenium-java.version>2.53.1</selenium-java.version> <htmlunit-driver.version>2.20</htmlunit-driver.version> <phantomjsdriver.version>1.2.1</phantomjsdriver.version> <maven-release-plugin.version>2.5.1</maven-release-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-surefire-plugin>2.19.1</maven-surefire-plugin> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.target>1.7</maven.compiler.target> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.argument.target>${maven.compiler.target}</maven.compiler.argument.target> <maven.compiler.argument.source>${maven.compiler.source}</maven.compiler.argument.source> </properties> <name>Webdriver Manager</name> <description> This piece of software is a small library aimed to automate the Selenium Webdriver binary management in Java. </description> <url>https://github.com/bonigarcia/webdrivermanager</url> <developers> <developer> <id>boni.garcia</id> <name>Boni Garcia</name> <email>boni.gg@gmail.com</email> </developer> </developers> <licenses> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/bonigarcia/webdrivermanager.git</connection> <developerConnection>scm:git:git@github.com:bonigarcia/webdrivermanager.git</developerConnection> <url>https://github.com/bonigarcia/webdrivermanager</url> <tag>webdrivermanager-1.4.9</tag> </scm> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/bonigarcia/webdrivermanager/issues</url> </issueManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> </dependency> <dependency> <groupId>com.typesafe</groupId> <artifactId>config</artifactId> <version>${config.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <dependency> <groupId>org.rauschig</groupId> <artifactId>jarchivelib</artifactId> <version>${jarchivelib.version}</version> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>${jsoup.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${selenium-java.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> <version>${selenium-java.version}</version> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>htmlunit-driver</artifactId> <version>${htmlunit-driver.version}</version> </dependency> <dependency> <groupId>com.codeborne</groupId> <artifactId>phantomjsdriver</artifactId> <version>${phantomjsdriver.version}</version> <exclusions> <exclusion> <artifactId>selenium-java</artifactId> <groupId>org.seleniumhq.selenium</groupId> </exclusion> <exclusion> <artifactId>selenium-api</artifactId> <groupId>org.seleniumhq.selenium</groupId> </exclusion> <exclusion> <artifactId>selenium-remote-driver</artifactId> <groupId>org.seleniumhq.selenium</groupId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin}</version> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus snapshot repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Nexus release repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <configuration> <passphrase>${gpg.passphrase}</passphrase> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>io.github.bonigarcia</groupId> <artifactId>webdrivermanager</artifactId> <version>1.4.9</version> </dependency>
If you think the following webdrivermanager-1.4.9.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download webdrivermanager-1.4.9.jar file