Skip to content

kokiriglade/popcorn

Repository files navigation

🍿 popcorn

A very opinionated utility library for Paper. Started off as a fork of corn's ItemBuilder utilities. Popcorn also contains a slightly modified version of IF that only supports Adventure components, and has no XML functionality.

You can find builds to put inside your server's plugins folder on Hangar.

Note

Popcorn only ever supports the latest version of Minecraft, and thus Paper.

Usage

Add to gradle build script

To add this project as a dependency for your Gradle project, make sure your dependencies section of your build.gradle.kts looks like the following:

dependencies {
    compileOnly("dev.kokiriglade:popcorn:[VERSION]")
    // ...
}

You also need to add my Maven repository:

repositories {
    maven("https://repo.celerry.com/releases")
    // ...
}

Dependency via paper-plugin.yml

# ...
dependencies:
    server:
        popcorn:
            load: BEFORE
            required: true
            join-classpath: true