Lightweight core plugin for Paper servers providing config, database and command infrastructure for plugin developers.
VertexCore is a Paper-only core plugin designed as a shared foundation for plugin developers.
It provides reusable infrastructure for configuration handling, database access and command execution,
reducing duplicated boilerplate across multiple plugins.
VertexCore is not a gameplay plugin.
It is intended to be used as a dependency by other plugins.
VertexCore.jar into your server’s plugins folderPlugins using VertexCore must declare it as a dependency.
VertexCore is distributed via jitpack.io.
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
compileOnly("com.github.Tebrox:VertexCore:v1.0.0")
}
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.github.Tebrox</groupId>
<artifactId>VertexCore</artifactactId>
<version>v1.0.0</version>
<scope>provided</scope>
</dependency>
MIT License