开源软件名称(OpenSource Name):GeyserMC/MCProtocolLib开源软件地址(OpenSource Url):https://github.com/GeyserMC/MCProtocolLib开源编程语言(OpenSource Language):Java 100.0%开源软件介绍(OpenSource Introduction):MCProtocolLibMCProtocolLib 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 CodeSee example/com/github/steveice10/mc/protocol/test/MinecraftProtocolTest.java for sample usage. Adding as a DependencyMCProtocolLib 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> Gradleallprojects {
repositories {
maven { url 'https://repo.opencollab.dev/maven-releases/' }
}
}
dependencies {
implementation 'com.github.steveice10:mcprotocollib:(version here)'
} SnapshotsTo use snapshot builds, switch the URL to Building the SourceMCProtocolLib uses Maven to manage dependencies. To build the source code, run Support and DevelopmentPlease join the GeyserMC Discord server and visit the #mcprotocollib channel for discussion and support for this project. LicenseMCProtocolLib is licensed under the MIT license. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论