使用maven找不到htmlunit工件

时间:2013-10-27 13:30:36

标签: java maven selenium-webdriver htmlunit

我有以下pom.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>
  <groupId>com.aaaa</groupId>
  <artifactId>david1</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <dependencies>
  <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.37.1</version>
    </dependency> 
  </dependencies>
</project>

我收到错误: 缺少神器net.sourceforge.htmlunit:htmlunit:jar:2.13

可能是什么原因?

从有效的pom我得到

<repositories>
    <repository>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>central</id>
      <name>Central Repository</name>
      <url>http://repo.maven.apache.org/maven2</url>
    </repository>
  </repositories>

我确实试图谷歌错误,但没有找到任何东西。

致以最诚挚的问候,

大卫

1 个答案:

答案 0 :(得分:1)

似乎无法解决selenium-java的某些传递依赖关系。

可疑的是2.37.1版本未列在MVNRepository中。

可能还没有发布。尝试更稳定的版本,例如2.35.0