Skip to content
evan saulpaugh edited this page Jul 16, 2025 · 125 revisions

Build

Now available in maven central.

Or...

Clone the project and install to your local maven repository using gradle publishToMavenLocal or mvn install. Then you can use one of these:

implementation("com.esaulpaugh:headlong:13.3.2-SNAPSHOT")
<dependency>
    <groupId>com.esaulpaugh</groupId>
    <artifactId>headlong</artifactId>
    <version>13.3.2-SNAPSHOT</version>
</dependency>

Alternatively...

  • Run gradle build or gradle jar which output to /build/libs
  • Use mvn package which outputs to /target
  • Execute ant all (optionally with "-Dgradle-cache=true") which outputs to build/lib
  • Add headlong as a project dependency

Some APIs require gson. Test packages require junit. Tests should take less than one minute to run. Jar size is ~137 KiB.

Clone this wiki locally