Skip to content

SculkPowered/sculk-server

Repository files navigation

Sculk-Server Latest release Build Status Discord

Minecraft-Server implementation that aims to be efficient and have a good API.

This software is not ready for production use!

Benefits

  • no overhead from unused vanilla features
  • more stable and modern api without the use of NMS

Disadvantages

  • no vanilla features (when you need them, but you can implement things yourself)
  • no support for Bukkit plugins

For Developers

Gradle
repositories {
    maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
    maven("https://libraries.minecraft.net")
}

dependencies {
    compileOnly("io.github.sculkpowered.server:api:1.0.0-SNAPSHOT")
    annotationProcessor("io.github.sculkpowered.server:api:1.0.0-SNAPSHOT")
}
Example Plugins