A library for communication with a Minecraft client/server.
Find a file
2024-04-24 03:53:42 -04:00
.github/workflows Migrate to gradle, fix examples (#769) 2023-12-19 13:01:53 -05:00
example Add full support for the transfer packet 2024-04-11 23:39:55 +01:00
gradle Migrate to gradle, fix examples (#769) 2023-12-19 13:01:53 -05:00
src Use nullable helper methods 2024-04-24 03:53:42 -04:00
.gitignore Migrate to gradle, fix examples (#769) 2023-12-19 13:01:53 -05:00
build.gradle.kts 23w51a 2024-01-22 23:27:22 +00:00
gradlew Migrate to gradle, fix examples (#769) 2023-12-19 13:01:53 -05:00
gradlew.bat Migrate to gradle, fix examples (#769) 2023-12-19 13:01:53 -05:00
Jenkinsfile Migrate to gradle, fix examples (#769) 2023-12-19 13:01:53 -05:00
jitpack.yml Create jitpack.yml (#778) 2023-12-22 19:32:29 -08:00
LICENSE.txt Update license year. 2021-05-13 00:28:31 -07:00
README.md Migrate to gradle, fix examples (#769) 2023-12-19 13:01:53 -05:00
settings.gradle.kts Migrate to gradle, fix examples (#769) 2023-12-19 13:01:53 -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/.

Javadocs

You can find the Javadocs for MCProtocolLib on opencollab.

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.