A library for communication with a Minecraft client/server.
Find a file
2023-09-12 15:34:26 -04:00
.github/workflows Update deploy.yml to fix release builds 2023-07-31 22:09:09 +01:00
example 1.20.2-pre1 2023-09-06 18:06:21 +01:00
src 1.20.2-pre3 2023-09-12 15:34:26 -04:00
.gitignore General cleanup, fixes, and re-versioning. 2015-07-20 11:13:18 -07:00
Jenkinsfile Build javadocs 2023-03-14 12:22:33 +00:00
LICENSE.txt Update license year. 2021-05-13 00:28:31 -07:00
pom.xml 1.20.2-pre2 (#751) 2023-09-07 17:19:03 -04:00
README.md Fix #721 2023-01-07 19:50:24 -05:00

MCProtocolLib

MCProtocolLib is a simple library for communicating with Minecraft clients and servers. It allows developers to build custom bots, clients, or servers for Minecraft with ease.

Example Code

See the example folder for sample usage.

Adding as a Dependency

MCProtocolLib builds are published to the Open Collaboration repository. Follow the below steps to add MCProtocolLib as a dependency to your project.

Maven

<repositories>
    <repository>
        <id>opencollab</id>
        <url>https://repo.opencollab.dev/maven-releases/</url>
    </repository>
</repositories>

<dependency>
    <groupId>com.github.steveice10</groupId>
    <artifactId>mcprotocollib</artifactId>
    <version>(version here)</version>
</dependency>

Gradle

allprojects {
    repositories {
        maven { url 'https://repo.opencollab.dev/maven-releases/' }
    }
}

dependencies {
    implementation 'com.github.steveice10:mcprotocollib:(version here)'
}

Snapshots

To use snapshot builds, switch the URL to https://repo.opencollab.dev/maven-snapshots/.

Building the Source

MCProtocolLib uses Maven to manage dependencies. To build the source code, run mvn clean install in the project root directory.

Support and Development

Please join the GeyserMC Discord server and visit the #mcprotocollib channel for discussion and support for this project.

License

MCProtocolLib is licensed under the MIT license.