Skip to content
evan saulpaugh edited this page Feb 10, 2025 · 115 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.0.0-SNAPSHOT")
<dependency>
    <groupId>com.esaulpaugh</groupId>
    <artifactId>headlong</artifactId>
    <version>13.0.0-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 build-jar 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 ~132 KiB.

Clone this wiki locally