D3strukt0r / spigot-build

Only builds the spigot.jar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Spigot builder

Only builds the spigot.jar

Project

License Contributor Covenant

main-branch (alias stable, latest)

GH Action CI/CD

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

What things you need to install the software and how to install them

  • Java 8 (For Spigot <= 1.16.5)
  • Java 16+ (For Spigot >= 1.17)

Installing

Download the Spigot version you want to from the releases page.

In the same directory create a shell script to run Spigot (where # is your allocated server memory in GB):

Windows (start.bat)

@echo off
java -Xms#G -Xmx#G -XX:+UseG1GC -jar spigot.jar nogui
pause

Linux (start.sh)

#!/bin/sh

java -Xms#G -Xmx#G -XX:+UseG1GC -jar spigot.jar nogui

and run chmod a+x start.sh to make it executable

Mac OS X (start.sh)

#!/bin/sh

cd "$( dirname "$0" )"
java -Xms#G -Xmx#G -XX:+UseG1GC -jar spigot.jar nogui

and run chmod a+x start.sh to make it executable

For more detail check the official Spigot Wiki.

Built With

Contributing

Please read CODE_OF_CONDUCT.md for details on our code of conduct, and CONTRIBUTING.md for the process for submitting pull requests to us.

Versioning

The is no project related versioning. The versions seen are the ones used for Minecraft. For changes see the CHANGELOG.md file. For the versions available, see the tags on this repository.

Authors

All the authors can be seen in the AUTHORS.md file.

Contributors can be seen in the CONTRIBUTORS.md file.

See also the full list of contributors who participated in this project.

License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE.md file for details

Acknowledgments

A list of used libraries and code with their licenses can be seen in the ACKNOWLEDGMENTS.md file.

About

Only builds the spigot.jar

License:GNU General Public License v3.0