Skip to content

Installation

Kiber edited this page Jun 24, 2026 · 4 revisions

Warning

ContentAPI requires Paper API
Bukkit and Spigot are not supported

For server owners

Just install library plugin from any of following sources

For plugin developers

  • Add ContentAPI to your project dependencies
    repositories {
        mavenCentral()
    }
    dependencies {
        // Replace CONTENTAPI_VERSION
        compileOnly("io.github.kiber2009.plugin:contentapi:CONTENTAPI_VERSION")
    }
  • Add ContentAPI to your plugin.yml dependencies
    depend: [ ContentAPI ]
  • If you are using xyz.jpenilla.run-paper Gradle plugin add ContentAPI plugin to your test server
    tasks.runServer {
        downloadPlugins {
            // You can use any of following sources
            // Replace CONTENTAPI_VERSION
            hangar("ContentAPI", "CONTENTAPI_VERSION")
            modrinth("ContentAPI", "CONTENTAPI_VERSION")
            github("Kiber2009", "ContentAPI", "vCONTENTAPI_VERSION", "contentapi-CONTENTAPI_VERSION.jar")
        }
    }

Clone this wiki locally