Skip to content

okocraft/Box

Repository files navigation

Box

GitHub release (latest SemVer) GitHub Workflow Status GitHub

A Paper plugin to provide virtual containers that can store 2.1 billion items per item.

Requirements

  • Java 21+
  • Paper 1.20.5+

Installation

Please read Installation and Setup page on GitHub Wiki.

Compiling from source

git clone https://github.com/okocraft/Box.git
cd Box/
./gradlew build

You can find the bundled jar in the bundle/build/libs directory.

API

Javadocs

Usage

1. Add a repository

<repository>
    <id>okocraft-box-repo</id>
    <url>https://okocraft.github.io/Box/maven/</url>
</repository>
repositories {
    maven {
        url 'https://okocraft.github.io/Box/maven/'
    }
}
repositories {
    maven {
        url = uri("https://okocraft.github.io/Box/maven/")
    }
}

For snapshot version, use https://okocraft.github.io/Box/maven-snapshot/

2. Add to dependencies

<dependency>
    <groupId>net.okocraft.box</groupId>
    <artifactId>box-api</artifactId>
    <version>5.3.1</version>
    <scope>provided</scope>
</dependency>
dependencies {
    compileOnly 'net.okocraft.box:box-api:5.3.1'
}
dependencies {
    compileOnly("net.okocraft.box:box-api:5.3.1")
}

License

This project is under the GPL-3.0 license. Please see LICENSE for more info.

Copyright © 2019-2024, OKOCRAFT