Prison Documents - Table of Contents
The Prison documentation covers how to setup a Spigot server for use as either a test environment, a production server. These instructions covers how to use the spigotmc’s buildtools to simplify not only the initial setup, but also provides easy updates.
Buildtools also allows easy setup of many test environments since all you would need to do is to just change the version.
Documented updated: 2023-07-24
This is intended strictly as a high-level overview on how to setup Java. If you need more assistance, please search for online documentation since there are many good resources out there.
You can download it from [Sun SE Development Kit 8]https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html) for a product that you need.
You can also use Open JDK if Sun’s license does not fit your needs. OpenJDK Install
java -version
from a command lineDownload the spigot BuildTools.jar
file. Follow the directions from here:
https://www.spigotmc.org/wiki/buildtools/
Once you have downloaded BuildTools.jar, you will run one of the following commands (only one) from the command line. Multiple versions are shown as an example of how by simply specifying different versions, the same BuildTool will generate the different environments. The Windows and linux command line usage are the same. See the provided URL in the first step above for the list of valid versions that are supported by the BuildTools.jar file.
java -jar BuildTools.jar --rev 1.8.8
java -jar BuildTools.jar --rev 1.9.4
java -jar BuildTools.jar --rev 1.10.2
java -jar BuildTools.jar --rev 1.11
java -jar BuildTools.jar --rev 1.12.2
java -jar BuildTools.jar --rev 1.13.2
java -jar BuildTools.jar --rev 1.14.4
java -jar BuildTools.jar --rev 1.15.2
java -jar BuildTools.jar --rev 1.16.5
java -jar BuildTools.jar --rev 1.17.1
java -jar BuildTools.jar --rev 1.18.2
java -jar BuildTools.jar --rev 1.19.3
java -jar BuildTools.jar --rev 1.20.1
mkdir spigot-1.17.1
cd spigot-1.17.1
java -jar ../BuildTools.jar --rev 1.17.1
cd ..
mkdir spigot-1.8.8
cd spigot-1.8.8
java -jar ../BuildTools.jar --rev 1.8.8
Updating BuildTools: Once in a while you will be prompted to update the BuildTools.jar file. To do update it, all you need to do is to just download it, and replace the older one you were using.
Updating the built servers: Every once in a while, when you are starting a server, there may be a notification that the server software needs to be update and the server startup will be paused for about 20 seconds. Just rerun the BuildTools for the same version within the original build directory. The build tools will update all of the changed resources and then generate the new server jars that you copy to the actual server (see the next step).
Create a runnable server directory by creating a new directory outside of the build directory. Then copy the newly generated jar file, such as spigot-1.17.1.jar, to the new server run time directory.
NOTE: At the time when this document was updated, Spigot 1.18 was just released. Because 1.18 requires Java 17, it is advisable to use that version of Java. Prison, because it is still being ran on older servers and under older environments, it must try to support the widest array of Spigot versions; therefore it is built with the latest version of Java 1.8.x, and built using Spigot 1.13.2. The environments in which Prison is built, should not impact how you build and run your server, of which it could easily be with Java 17 and Spigot 18.
Windows example, if you’re still in the build directory:
cd ../..
mkdir spigot-1.17.1_server
copy /B builds\spigot-1.17.1\spigot-1.17.1.jar spigot-1.17.1_server
cd ../..
mkdir spigot-1.17.1_server
cp builds/spigot-1.17.1/spigot-1.17.1.jar spigot-1.17.1_server
Run the server for the first time (see the next step). It will start to auto-generate the server environment and then will stop. You will need to manually modify the eula.txt
file and set eula=true
. Save. Close. Restart the server. It will startup successfully now.
This is a simple example of what is needed for a windows cmd file. It sets the minimum memory to 2 GB and the max to 8 GB. A linux script would be similar, but without the pause.
java -Xms2g -Xmx8g -jar spigot-1.17.1.jar
pause
This should give you a functional server for which to run the Prison plugin.
You can now customize the server, such as by adding plugins, etc…
The same general instructions apply to paper server, but the big difference is that you download the runnable paper jar file from https://papermc.io/downloads and then place them in to your server runtime directory, and then follow the steps under Creating a Runnable Spigot Server but use the resources for the other platform. Then run the same general startup scripts.