LilyBukkit-Core
LilyBukkit-Core is the server software that implements the LilyBukkit API.
Download
Latest release (Lilypad QA):
Alpha 2.0.0.2,
Changelog
Older versions
Installing
- Create a separate folder and put the JAR in it.
- (optional) Create a startup script,
start.bat
(start.sh
, if you're on Linux). Put the following command in it:java -Xms1G -Xmx1G -jar LilyBukkit-aX.X.X.X.jar --nogui
, where X.X.X.X is the release you're using Xms1G
- this parameter controls the minimum amount of RAM, which would be allocated to your server. Change theG
toM
, if you want to specify the size in Megabytes.Xmx1G
- this parameter controls the maximum amount of RAM, that could be allocated to your server. Change theG
toM
, if you want to specify the size in Megabytes.nogui
- this parameter disables the GUI frontend of the server. If you want to use that, simply delete this parameter.- If you didn't create a startup script, open the command line (or the terminal in Linux) in the created folder and use the same command to start the server.
- After the server outputted
[INFO] Done! For help, type "help" or "?"
, close the server using the commandstop
- Go to
server.properties
and configure the server for your needs. See this wiki page on server.properties for more info. - After editing
server.properties
, editbukkit.yml
if you want to make any additional changes. - Now you can install Bukkit plugins, but be warned that they might not work flawlessly as the API was changed quite a bit.
LilyBukkit-API
LilyBukkit-API is a fork of Bukkit API for AlphaVer Minecraft versions.
Download
Older versions
- 1.1.1, Sources, Changelog
- 1.1.0, Sources, Changelog
- 1.0.9, Sources, Changelog
- 1.0.8, Sources, Changelog
- 1.0.7, Sources, Changelog
- 1.0.6, Sources, Changelog
- 1.0.5, Sources, Changelog
- 1.0.4, Sources, Changelog
- 1.0.3, Sources, Changelog
- 1.0.2, Sources, Changelog
- 1.0.1, Sources, Changelog
- 1.0.0, Sources, Changelog
Installing
X.X.X stands for the release you're using.Maven
Add the following code to yourpom.xml
:<dependency> <groupId>ru.vladthemountain</groupId> <artifactId>lilybukkit</artifactId> <version>X.X.X</version> <scope>system</scope> <systemPath>${project.basedir}/relative/path/to/lilybukkit-X.X.X.jar</systemPath> </dependency>
Gradle
Add the following code to yourbuild.gradle
:
dependencies { implementation files('/relative/path/to/lilybukkit-X.X.X.jar') }