Invictum / minecraft-executor-interface

Plugin provides ability to send commands for execution remotely

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Codacy Badge BukkitDev

Minecraft Executor Interface (MEI)

MEI is a Minecraft plugin provides ability to send commands for execution from external sources.

Configuration and Support

For configuration details refer to project documentation page at Wiki section

Check project page at dev.bukkit.org for support

Contribution

Apache Maven and JDK8 should be installed to contribute. To build plugin from sources, just emmit command in terminal with sources

mvn clean package -Prelease

This will build sources, run tests and produce plugin JAR file into target/minecraft-executor-interface-1.0.0-SNAPSHOT-jar-with-dependencies.jar

Sometimes it is necessary to rebuld plugin for specific Minecraft server version. To achieve it edit dependency section in pom.xml file

<dependency>
    <groupId>org.spigotmc</groupId>
    <artifactId>spigot-api</artifactId>
    <version>1.10.2-R0.1-SNAPSHOT</version>
    <scope>provided</scope>
    <type>jar</type>
</dependency>

Set suited version for spigot-api, save file and rebuild plugin as usual.

MEI is free software and available under the GPL license.

About

Plugin provides ability to send commands for execution remotely

License:GNU General Public License v3.0


Languages

Language:Java 100.0%