Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 1.26 KB

File metadata and controls

50 lines (38 loc) · 1.26 KB
title Development
description Build LockiPrefixes from source

Prerequisites

  • Git
  • JDK installed (8, 16, or 21 depending on target module)
  • Gradle wrapper included in the repository

Clone and build

git clone https://github.com/locki/lockiprefixes.git
cd lockiprefixes

Build one target module

Use the module that matches your server versions:

./gradlew :legacy:shadowJar -x test
./gradlew :mid:shadowJar -x test
./gradlew :modern:shadowJar -x test
./gradlew :latest:shadowJar -x test

Build all plugin variants

./gradlew shadowJar -x test

Output artifacts are generated in each module's build/libs folder.

Build troubleshooting

Use the module that matches your installed Java version, or install the required JDK version and rebuild. On modern Paper versions, verify that enforce-secure-profile is set to false in server.properties. Check the Versions page and switch to the correct artifact for your server generation.