The most widely used, high-performance Minecraft server that aims to fix gameplay and mechanics inconsistencies.
Support and Project Discussion:
Paperclip is a jar file that you can download and run just like a normal jar file.
Download Paper from our downloads page.
Run the Paperclip jar directly from your server. Just like old times
- Documentation on using Paper: docs.papermc.io
- For a sneak peek at upcoming features, see here
- See our API patches here
- See upcoming, pending, and recently added API here
- Paper API javadocs here: papermc.io/javadocs
<repository>
<id>geist</id>
<url>https://reposilite.aventox.com/releases</url>
</repository>
<dependency>
<groupId>com.aventox.geist</groupId>
<artifactId>geist</artifactId>
<version>1.21.3-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
repositories {
maven {
url = uri("https://reposilite.aventox.com/releases")
}
}
dependencies {
compileOnly("com.aventox.geist:geist:1.21.3-R0.1-SNAPSHOT")
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}
To compile Paper, you need JDK 21 and an internet connection.
Clone this repo, run ./gradlew applyPatches
, then ./gradlew createMojmapBundlerJar
from your terminal. You can find the compiled jar in the project root's build/libs
directory.
To get a full list of tasks, run ./gradlew tasks
.