update readme

This commit is contained in:
Dan Mulloy 2023-04-09 20:10:01 -05:00
parent 71af32aa68
commit 456430f055
No known key found for this signature in database
GPG Key ID: F379C293F178751F
1 changed files with 6 additions and 4 deletions

View File

@ -20,8 +20,10 @@ Currently maintained by dmulloy2 on behalf of [Spigot](https://www.spigotmc.org/
### Compilation ### Compilation
ProtocolLib is built with [Maven](https://maven.apache.org/). If you have it installed, just run ProtocolLib is built with [Gradle](https://gradle.org/). If you have it installed, just run
`mvn package` in the root project folder. `./gradlew build` in the root project folder. Other gradle targets you may be interested in
include `clean`, `test`, and `shadowJar`. `shadowJar` will create a jar with all dependencies
(ByteBuddy) included.
### A new API ### A new API
@ -53,7 +55,7 @@ You can also add ProtocolLib as a Maven dependency:
<dependency> <dependency>
<groupId>com.comphenix.protocol</groupId> <groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib</artifactId> <artifactId>ProtocolLib</artifactId>
<version>4.7.0</version> <version>5.0.0-SNAPSHOT</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>
@ -67,7 +69,7 @@ repositories {
} }
dependencies { dependencies {
compileOnly group: "com.comphenix.protocol", name: "ProtocolLib", version: "4.7.0"; compileOnly 'com.comphenix.protocol:ProtocolLib:5.0.0-SNAPSHOT'
} }
``` ```