Skip to content

Installation

Kiber2009 edited this page Jul 4, 2026 · 5 revisions

Warning

ContentAPI requires Paper API
Bukkit and Spigot are not supported

For server owners

Install a library plugin from any of the 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 the 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