SugarcaneMC / Sugarcane

Highly optimized Purpur fork focusing on stability and performance.

Home Page:https://sugarcanemc.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool



✅ Highly optimized Airplane fork that focuses on stability and performance.

Discord Website Jenkins

We use patches from the following projects

❗ Reminder

This project is still work in progress, so there will not have stable builds for production for a while, until we perform enough tests to ensure it's stable enough for production.

We HIGHLY RECOMMEND TO NOT USE the development builds for any kind of production enviroment.

If you find any issue or have some suggestion, feel free to open a issue.

How To (Plugin developers)

Gradle

Groovy DSL

First, add the SugarcaneMC repository

repositories {
    maven {
        url 'https://mvn.sugarcanemc.org/repository/maven-public/'
    }
}

Then, add the Sugarcane-API dependency:

dependencies {
    compileOnly "org.sugarcanemc.sugarcane:sugarcane-api:1.17.1-R0.1-SNAPSHOT"
}

Kotlin DSL

First, add the SugarcaneMC repository

repositories {
    maven("https://mvn.sugarcanemc.org/repository/maven-public/")
}

Then, add the Sugarcane-API dependency:

dependencies {
    compileOnly("org.sugarcanemc.sugarcane:sugarcane-api:1.17.1-R0.1-SNAPSHOT")
}

Maven

First, add the SugarcaneMC repository

<repositories>
    <repository>
        <id>sugarcanemc-repo</id>
        <url>https://mvn.sugarcanemc.org/repository/maven-public/</url>
    </repository>
</repositories>

And then add the Sugarcane-API dependency:

<dependency>
    <groupId>org.sugarcanemc.sugarcane</groupId>
    <artifactId>sugarcane-api</artifactId>
    <version>1.17.1-R0.1-SNAPSHOT</version>
    <scope>provided</scope>
</dependency>

We also have a Discord Server for support

Try it for yourself

  • Jenkins - Download latest development builds for Minecraft 1.17.1 (Not for production).

Contributing

See CONTRIBUTING.md

About

Highly optimized Purpur fork focusing on stability and performance.

https://sugarcanemc.org

License:GNU General Public License v3.0