Skip to content

Bukkit/Spigot/Paper based Minecraft server used by caramel.moe (Only API)

License

Notifications You must be signed in to change notification settings

caramel-moe/Daydream-API

Repository files navigation

Daydream (API Only)

Daydream is not a fork aimed at performance improvement. It exists to add unstable and poorly designed APIs.

caramel.moe Build Status Discord

ENGLISH, KOREAN

License

All API patches are licensed under the MIT license, unless otherwise noted in the patch headers.

Daydream inherits its licensing from upstream projects.

PaperMC/Paper

API

Dependency Information

Maven

<repository>
    <id>caramel-repo</id>
    <url>https://repo.caramel.moe/repository/maven-public/</url>
</repository>
<repository>
    <id>papermc</id>
    <url>https://repo.papermc.io/repository/maven-public/</url>
</repository>

<dependency>
    <groupId>moe.caramel</groupId>
    <artifactId>daydream-api</artifactId>
    <version>1.21.4-R0.1-SNAPSHOT</version>
    <scope>provided</scope>
</dependency>

Gradle

repositories {
    // caramel.moe Repository
    maven("https://repo.caramel.moe/repository/maven-public/")
    // PaperMC Repository
    maven("https://repo.papermc.io/repository/maven-public/")
}

dependencies {
    // Daydream API
    compileOnly("moe.caramel", "daydream-api", "1.21.4-R0.1-SNAPSHOT")
}