Installation

Bifurcan is a Java library distributed as a standard Maven artifact. You can add it to your project using your preferred build tool.

Maven

To add Bifurcan to a Maven project, add the following dependency to your pom.xml:

<dependency>
  <groupId>io.lacuna</groupId>
  <artifactId>bifurcan</artifactId>
  <version>0.2.0-rc1</version>
</dependency>

Gradle

For Gradle users, add this to your build.gradle file's dependencies block:

implementation 'io.lacuna:bifurcan:0.2.0-rc1'

Requirements

Bifurcan is compatible with Java 8 and higher. The project.clj specifies the compilation target:

:javac-options ["-target" "1.8" "-source" "1.8"]