### Build Fat JAR Source: https://github.com/xyness/simpleclaimsystem/blob/main/BUILDING.md Compiles the project and creates a fat JAR file containing all dependencies, ready for deployment. ```shell ./gradlew clean buildFatJar ``` -------------------------------- ### Make Gradle Executable Source: https://github.com/xyness/simpleclaimsystem/blob/main/BUILDING.md Ensures the Gradle wrapper script has execute permissions, a prerequisite for running build commands. ```shell chmod +x ./gradlew ``` -------------------------------- ### Deploy to Spigot Server Source: https://github.com/xyness/simpleclaimsystem/blob/main/BUILDING.md Moves the compiled fat JAR file to the plugins directory of a Spigot server, renaming it for clarity. ```shell mv ./build/libs/fat.jar /plugins/SimpleClaimSystem.jar ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.