Introduction

At any time, all the code in the git repository should be compilable and should pass all the unit tests. There is no guarantee that it will be full featured - this is a work in progress.

Latest build

Build server.

Sonatype hosts HtmlUnit snapshot, which is manually updated by the team once in a while. If you need a recent build feel free to contact us.

Maven snapshot

Add the snapshot repository and dependency to your pom.xml

<project>
<!-- ... -->
<repository>
    <name>Central Portal Snapshots</name>
    <id>central-portal-snapshots</id>
    <url>https://central.sonatype.com/repository/maven-snapshots/</url>
    <releases>
        <enabled>false</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>

<!-- ... -->
<dependencies>
  <dependency>
      <groupId>org.htmlunit</groupId>
      <artifactId>htmlunit</artifactId>
      <version>4.14.0-SNAPSHOT</version>
  </dependency>
  <!-- ... -->
</dependencies>

<!-- ... -->

Gradle snapshot

Add the snapshot repository and dependency to your build.gradle

<project>
repositories {
  maven { url "https://central.sonatype.com/repository/maven-snapshots/" }
  // ...
}
// ...
dependencies {
    implementation group: 'org.htmlunit', name: 'htmlunit', version: '4.14.0-SNAPSHOT'
  // ...
}