2. Now you need to run a series of Terminal commands. Open Terminal.app (should be in Applications/Utilities) and run these two commands individually by copying and pasting them into the input area:
Code (Text):
git config --global user.name BuildTools
git config --global user.email [email protected]
git config --global user.email [email protected]
3. Next, you must clone the Bukkit files from the Spigot hub. Run this command in Terminal:
Code (Text):
git clone https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
Code (Text):
mvn
If you do not have Maven, you'll want to install Homebrew (which is very helpful for installing these dependencies) with this command:
Code (Text):
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Code (Text):
brew install maven
5. Your Bukkit folder should have installed in your Home directory (To get there, use "Command" + "Shift" + G, put "~/" in the input box, then continue).
6. Back in terminal, you'll need to use Maven to clean-install Bukkit. Run each of these commands separately, then wait while it installs:
Code (Text):
cd ~/bukkit
mvn clean install
mvn clean install
You have now completed the tutorial, you can now rename the file if you would like.