Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.27 KB

README.md

File metadata and controls

33 lines (25 loc) · 1.27 KB

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("eu.sculkpowered.server:api:1.0.0-SNAPSHOT")
    annotationProcessor("eu.sculkpowered.server:api:1.0.0-SNAPSHOT")
}
Example Plugins