MCProtocolLib/README.md
Alex 4f2e7a5b55
Move package/license to GeyserMC, gradle conventions and submodules (#782)
* Change packages

* Move everything to a protocol submodule

* gradle conventions, update license

---------

Co-authored-by: Konicai <71294714+Konicai@users.noreply.github.com>
2024-01-11 12:21:23 -05:00

96 lines
2.3 KiB
Markdown

# 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](https://github.com/GeyserMC/MCProtocolLib/tree/master/example/src/main/java/org/geysermc/mcprotocollib) folder for sample usage.
## Adding as a Dependency
MCProtocolLib builds are published to the [Open Collaboration repository](https://repo.opencollab.dev/ui/packages/gav:%2F%2Forg.geysermc:mcprotocollib).
Follow the below steps to add MCProtocolLib as a dependency to your project.
### Maven
#### Add the Repository
```xml
<repositories>
<repository>
<id>opencollab</id>
<url>https://repo.opencollab.dev/maven-releases/</url>
</repository>
</repositories>
```
#### Add the Dependency
```xml
<dependency>
<groupId>org.geysermc.mcprotocollib</groupId>
<artifactId>protocol</artifactId>
<version>(version here)</version>
</dependency>
```
### Gradle (Groovy DSL)
#### Add the Repository
```groovy
repositories {
maven {
name 'opencollab'
url 'https://repo.opencollab.dev/maven-releases/'
}
}
```
#### Add the Dependency
```groovy
dependencies {
implementation 'org.geysermc.mcprotocollib:protocol:(version here)'
}
```
### Gradle (Kotlin DSL)
#### Add the Repository
```kotlin
repositories {
maven("https://repo.opencollab.dev/maven-releases/") {
name = "opencollab"
}
}
```
#### Add the Dependency
```kotlin
dependencies {
implementation("org.geysermc.mcprotocollib:protocol:(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](https://ci.opencollab.dev/job/GeyserMC/job/MCProtocolLib/job/master/javadoc/overview-summary.html).
## 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](https://discord.gg/geysermc) and visit the **#mcprotocollib** channel for discussion and support for this project.
## License
MCProtocolLib is licensed under the **[MIT license](https://opensource.org/license/mit/)**.