组织ID: |
org.seleniumhq.selenium |
项目ID: |
htmlunit-driver |
版本: |
2.21 |
最后修改时间: |
2018-07-26 11:04:02 |
包类型: |
jar |
标题: |
htmlunit-driver |
描述: |
WebDriver compatible driver for HtmlUnit headless browser |
相关URL: |
https://github.com/SeleniumHQ/htmlunit-driver |
大小: |
60.98KB |
|
Maven引入代码: |
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit-driver</artifactId>
<version>2.21</version>
</dependency>
|
Gradle引入代码: |
org.seleniumhq.selenium:htmlunit-driver:2.21
|
下载Jar包: |
|
POM文件内容: |
<?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>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit-driver</artifactId>
<version>2.21</version>
<name>htmlunit-driver</name>
<description>WebDriver compatible driver for HtmlUnit headless browser</description>
<url>https://github.com/SeleniumHQ/htmlunit-driver</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>
<scm>
<connection>scm:git:git@github.com:SeleniumHQ/htmlunit-driver.git</connection>
<developerConnection>scm:git:git@github.com:SeleniumHQ/htmlunit-driver.git</developerConnection>
<url>https://github.com/SeleniumHQ/htmlunit-driver</url>
</scm>
<developers>
<developer>
<id>barancev</id>
<name>Alexei Barantsev</name>
<roles>
<role>Owner</role>
</roles>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<selenium.version>2.53.0</selenium.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-support</artifactId>
<version>${selenium.version}</version>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>2.21</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.2</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-support</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<exclusions>
<exclusion>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>standalone</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<configuration>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-support</artifactId>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.webbitserver</groupId>
<artifactId>webbit</artifactId>
<version>0.4.15</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<encoding>utf-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<includes>
<include>**/*.java</include>
</includes>
</configuration>
</plugin>
<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>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</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>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.openqa.selenium.htmlunit.AsyncScriptExecutor$AsyncScriptResult.class
org.openqa.selenium.htmlunit.AsyncScriptExecutor.class
org.openqa.selenium.htmlunit.HtmlUnitAlert.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$1.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$2.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$3.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$4.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$5.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$6.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$HtmlUnitNavigation.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$HtmlUnitOptions$1.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$HtmlUnitOptions.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$HtmlUnitTargetLocator.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$HtmlUnitTimeouts.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$HtmlUnitWindow.class
org.openqa.selenium.htmlunit.HtmlUnitDriver$JavaScriptResultsCollection.class
org.openqa.selenium.htmlunit.HtmlUnitDriver.class
org.openqa.selenium.htmlunit.HtmlUnitKeyboard.class
org.openqa.selenium.htmlunit.HtmlUnitMouse.class
org.openqa.selenium.htmlunit.HtmlUnitWebElement$1.class
org.openqa.selenium.htmlunit.HtmlUnitWebElement$2.class
org.openqa.selenium.htmlunit.HtmlUnitWebElement.class
org.openqa.selenium.htmlunit.InputKeysContainer.class
org.openqa.selenium.htmlunit.KeyboardModifiersState.class
META-INF/maven/org.seleniumhq.selenium/htmlunit-driver/pom.xml
META-INF/maven/org.seleniumhq.selenium/htmlunit-driver/pom.properties
|
依赖Jar: |
selenium-api-${selenium.version}.jar
/org.seleniumhq.selenium/selenium-api/${selenium.version}
查看selenium-api所有版本文件
selenium-support-${selenium.version}.jar
/org.seleniumhq.selenium/selenium-support/${selenium.version}
查看selenium-support所有版本文件
htmlunit-2.21.jar
/net.sourceforge.htmlunit/htmlunit/2.21
查看htmlunit所有版本文件
commons-collections-3.2.2.jar
/commons-collections/commons-collections/3.2.2
查看commons-collections所有版本文件
guava-19.0.jar
/com.google.guava/guava/19.0
查看guava所有版本文件
|