-
Notifications
You must be signed in to change notification settings - Fork 4
Building
Technofied edited this page Apr 4, 2026
·
1 revision
This page is for developers and operators who compile Realty from the Git repository instead of downloading a release JAR.
You need JDK 21 and Git installed on the machine that runs the build.
From the repository root, run:
./gradlew :realty-paper:shadowJarThe server-ready JAR is written under realty-paper/build/libs/ and its name ends with -all.jar.
| Gradle task | What it produces |
|---|---|
:realty-paper-plan-extension:shadowJar |
The optional JAR that connects Realty to Plan analytics. |
:realty-areashop-importer:shadowJar |
The optional JAR that helps import AreaShop data into Realty. |
Each module writes its artifacts into its own build/libs/ folder.
The realty-paper module can start a local Paper 1.21.8 server through Gradle (runServer in realty-paper/build.gradle.kts) and pull in sample plugins for testing.
The project version is defined in the shared Gradle convention under buildSrc.
Next: Installation