Skip to content

Latest commit

 

History

History
58 lines (44 loc) · 1.62 KB

README.md

File metadata and controls

58 lines (44 loc) · 1.62 KB

Daydream (API Only)

Daydream is Paper's Fork with the aim of using various API.

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://papermc.io/repo/repository/maven-public/</url>
</repository>

<dependency>
    <groupId>moe.caramel</groupId>
    <artifactId>daydream-api</artifactId>
    <version>1.21.3-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://papermc.io/repo/repository/maven-public/")
}

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