Code

version 1.0.0

Download: bayou-1.0.0.zip (source and binary)

Requires: JDK 8 (no other dependencies)

Release note

GitHub

https://github.com/zhong-j-yu/bayou.git

Maven

Use the following repository, dependency, and compiler options for Maven. Note that

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>com.github.zhong-j-yu</groupId>
        <artifactId>bayou</artifactId>
        <version>1.0.0</version>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.3</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
    </plugins>
</build>