Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Dockercraft | 6,300 | 2 years ago | July 12, 2022 | 18 | apache-2.0 | Lua | ||||
Docker + Minecraft = Dockercraft | ||||||||||
Cuberite | 4,600 | 21 hours ago | 561 | other | C++ | |||||
A lightweight, fast and extensible game server for Minecraft | ||||||||||
Pocketmine Mp | 3,058 | a day ago | 218 | September 24, 2022 | 372 | lgpl-3.0 | PHP | |||
A server software for Minecraft: Bedrock Edition in PHP | ||||||||||
Blockbench | 2,074 | 3 days ago | 316 | gpl-3.0 | JavaScript | |||||
Blockbench - A low poly 3D model editor | ||||||||||
Glowstone | 1,785 | a month ago | 63 | other | Java | |||||
A fast, customizable and compatible open source server for Minecraft: Java Edition | ||||||||||
Essentials | 1,640 | 18 hours ago | 170 | gpl-3.0 | Java | |||||
The modern Essentials suite for Spigot and Paper. | ||||||||||
Minecraftdev | 1,191 | 15 days ago | 219 | lgpl-3.0 | Kotlin | |||||
Plugin for IntelliJ IDEA that gives special support for Minecraft modding projects. | ||||||||||
Spongeapi | 1,119 | 15 days ago | 2 | May 19, 2022 | 153 | mit | Java | |||
A Minecraft plugin API | ||||||||||
Nukkit | 1,094 | 4 days ago | 171 | gpl-3.0 | Java | |||||
Cloudburst Nukkit - Nuclear-Powered Minecraft: Bedrock Edition Server Software | ||||||||||
Dragonproxy | 996 | 2 years ago | 25 | gpl-3.0 | Java | |||||
🐲 A proxy to allow Minecraft: Bedrock clients to connect to Minecraft: Java Edition servers. |
NoCheatPlus is a fork of the famous anti-cheat plugin NoCheat created by Evenprime. NoCheatPlus attempts to enforce "vanilla Minecraft" mechanics, as well as preventing players from abusing weaknesses in Minecraft or its protocol, making your server more safe. Organized in different sections, various checks are performed to test players doing, covering a wide range including flying and speeding, fighting hacks, fast block breaking and nukers, inventory hacks, chat spam and other types of malicious behaviour. For a more complete list have a look at the always outdated Features Page.
mvn clean package
, for a build without any of the "non free" modules, which depened on not publicly downloadable resources, such as the CraftBukkit/Spigot server jar - the reflection based compatibility module is still contained.-P nonfree_include
.-P nonfree_build
as well as activating the appropriate module to build via a profile such as -P cbdev
- see the tables below for reference.fr.neatmonster
, you might have to update the includes section within NCPCompatNonFreeJar as well. The related factories are located within the NCPPlugin module (e.g. MCAccessFactory).Install CB 1.7.5
.
Set goals to: install:install-file -Dfile=<PATH TO JAR> -DgroupId=org.bukkit -DartifactId=craftbukkit -Dversion=1.7.5-R0.1-SNAPSHOT -Dpackaging=jar
On Windows the X:\...\craftbukkit\3042\craftbukkit-1.7.5-R0.1-20140408.020329-16.jar
To let it run you might have to set the base directory, e.g. to ${workspace_loc}
, it does not seem to have significance.
Do set the correct version alongside the file name. On newer version of maven, you might do with much simplified goals, because the pom files inside the jars are parsed.
Options and profiles related to enabling/disabling including/building "non free" compatibility modules.
Profile | Parameter | Description |
---|---|---|
-P nonfree_include |
none | The "non free" modules are included via a pre-built jar file from the repository. |
-P nonfree_build |
none | Enable building "non free" compatibility modules. The NCPCompatNonFree jar file is built/installed/(deployed). |
none | none | The "non free" modules are neither built, nor included via a pre-built jar file. |
Profiles for choice of "non free" compatibility modules to build:
Profile | Description |
---|---|
none | Default build without any of the native access modules, might pose compatibility issues with latest Minecraft versions. The reflection based module is included here. |
-P all |
All compatibility modules. |
-P cbdev |
The latest version in development. |
-P spigot1_12_r1 |
Spigot 1.12 R1 (MC 1.12-1.12.2). |
-P spigot1_11_r1 |
Spigot 1.11 R1 (MC 1.11-1.11.2). |
-P spigot1_10_r1 |
Spigot 1.10 R1 (MC 1.10-1.10.2). |
-P spigot1_9_r2 |
Spigot 1.9 R2 (MC 1.9.4). |
-P spigot1_8_r3 |
Spigot 1.8 R3 (MC 1.8.4-1.8.8). |
-P spigot1_7_r4 |
Spigot 1.7 R4 (MC 1.7.10). |
-P cblegacy |
The pre-DMCA CraftBukkit builds. |
(On the long run, only the latest module for a major Minecraft release may be be kept, such as 1_8_r3 for all of 1.8.x.)