Skip to content

PineLib for Developers

Welcome to the PineLib documentation! This guide will help you get started with PineLib, a powerful library for building Minecraft plugins. Whether you’re a seasoned developer or new to plugin development, PineLib provides a robust set of tools and features to make your development process easier and more efficient.

repositories {
maven { url = 'https://jitpack.io' }
}
dependencies {
compileOnly 'dev.piny:PineLib:vX.X.X'
}
name: ExamplePlugin
prefix: ExamplePlugin
version: '${version}'
main: dev.piny.example.ExamplePlugin
api-version: '1.21'

First you need to get an instance of the PineLib class. You can do this by calling the static getInstance() method:

PineLib pineLib = PineLib.getInstance();