Box GitHub Pages

Javadocs

Maven Repository

For release

Maven

<repository>
    <id>okocraft-box-repo</id>
    <url>https://okocraft.github.io/Box/maven/</url>
</repository>

Gradle (Groovy DSL)

repositories {
    maven {
        url 'https://okocraft.github.io/Box/maven/'
    }
}

Gradle (Kotlin DSL)

repositories {
    maven {
        url = uri("https://okocraft.github.io/Box/maven/")
    }
}

For snapshot

Maven

<repository>
    <id>okocraft-box-snapshot-repo</id>
    <url>https://okocraft.github.io/Box/maven-snapshot/</url>
</repository>

Gradle (Groovy DSL)

repositories {
    maven {
        url 'https://okocraft.github.io/Box/maven-snapshot/'
    }
}

Gradle (Kotlin DSL)

repositories {
    maven {
        url = uri("https://okocraft.github.io/Box/maven-snapshot/")
    }
}