- Building Minecraft Server Modifications
- Cody M. Sommer
- 382字
- 2021-08-04 10:09:53
Adding Bukkit as a library
Now that we have created our main class, we need to add the Bukkit API as the library for our project. As we can recall from the previous chapter, the API includes the code that we can access to modify the CraftBukkit server. It is available for download at http://dl.bukkit.org/downloads/bukkit/. Again, choose the version that matches your client version and the version of CraftBukkit that you downloaded. Once you have downloaded the file, you will have to move it to a permanent location. I suggest you create a folder named Libraries
in which to place it. The filename will most likely have a version appended to it. Similar to what we did for craftbukkit.jar
, we will rename this file; this helps us to easily update it in the future. So the new location of your bukkit jar
will be C:\Users\Owner\Documents\NetBeansProjects\Libraries\bukkit.jar
. Remember your file location, because now that we have downloaded the Bukkit API we can create a library for it in NetBeans.
In NetBeans, inside the Projects tab, you will see a Libraries folder. If you right click on it you are presented with the option Add Library.... Click on it to bring up a list of your current libraries.

For the first time, we need to create the Bukkit library. For any future project it would already be present and we can simply select it. Click on Create... and type Bukkit
as the Library Name. In the next window there is an Add JAR/Folder... button. Click on it to add the bukkit jar
file that you have just downloaded. We will leave the Sources tab empty and click on the Javadoc tab next. Now, add the URL http://jd.bukkit.org/beta/apidocs/and click on OK. This allows us to read some of the API documentation directly in our IDE. Now we are able to select Bukkit as a library to add it to our project.
Note
Note that in order to update to a newer version of Bukkit you can simply replace the current bukkit.jar
file with the new one, just as you would do to update the craftbukkit.jar
on your server. No additional modifications need to be done to your existing projects. However, you will have to check the code to see if there are any new errors presented.
- TypeScript入門與實戰
- TensorFlow Lite移動端深度學習
- Testing with JUnit
- 軟件架構設計:大型網站技術架構與業務架構融合之道
- Java Web基礎與實例教程(第2版·微課版)
- 程序員面試算法寶典
- Python測試開發入門與實踐
- C語言程序設計
- Windows Server 2016 Automation with PowerShell Cookbook(Second Edition)
- 快人一步:系統性能提高之道
- Raspberry Pi Home Automation with Arduino(Second Edition)
- 人工智能算法(卷1):基礎算法
- ASP.NET求職寶典
- iOS開發項目化入門教程
- Greenplum構建實時數據倉庫實踐