Marriage Master is a Bukkit/Spigot plugin that allows you to marry another player in Minecraft to gain some extras.
The plugin can be build in 3 different configurations. All the details about the different build configs and runtime modes can be found here.
git clone https://github.com/GeorgH93/MarriageMaster.git
cd MarriageMaster
mvn package
The final file will be in the MarriageMaster/target
folder, named MarriageMaster-<CurrentVersion>.jar
.
This version works without the PCGF-PluginLib, however some API features are not available.
git clone https://github.com/GeorgH93/MarriageMaster.git
cd MarriageMaster
mvn package -P Standalone
The final file will be in the MarriageMaster/target
folder, named MarriageMaster-<CurrentVersion>-Standalone.jar
.
This is the version of the plugin published on dev.bukkit.org and spigotmc.org.
git clone https://github.com/GeorgH93/MarriageMaster.git
cd MarriageMaster
mvn clean install -P Standalone
mvn clean package -P Release
The final file will be in the MarriageMaster/target
folder, named MarriageMaster-<CurrentVersion>-Release.jar
.
Marriage Master V2 comes with a very powerful API that allows you to change almost everything about this plugin. Most of the plugins commands are implemented only using methods and data provided by the API. If you think there is something missing feel free to open a feature request. Please do not access the data of the plugin over other ways than the provided API, the inner workings will change and I wont keep track of what you are using in your plugin. For more details about the API please check the following links.
Source Code & Details ⚫ JavaDoc ⚫ Build Server