From 456430f055a560b8db2d3e5b52f8db291dbd3a29 Mon Sep 17 00:00:00 2001 From: Dan Mulloy Date: Sun, 9 Apr 2023 20:10:01 -0500 Subject: [PATCH] update readme --- Readme.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Readme.md b/Readme.md index 922a3ac1..e842356d 100644 --- a/Readme.md +++ b/Readme.md @@ -20,8 +20,10 @@ Currently maintained by dmulloy2 on behalf of [Spigot](https://www.spigotmc.org/ ### Compilation -ProtocolLib is built with [Maven](https://maven.apache.org/). If you have it installed, just run -`mvn package` in the root project folder. +ProtocolLib is built with [Gradle](https://gradle.org/). If you have it installed, just run +`./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 @@ -53,7 +55,7 @@ You can also add ProtocolLib as a Maven dependency: com.comphenix.protocol ProtocolLib - 4.7.0 + 5.0.0-SNAPSHOT provided @@ -67,7 +69,7 @@ repositories { } dependencies { - compileOnly group: "com.comphenix.protocol", name: "ProtocolLib", version: "4.7.0"; + compileOnly 'com.comphenix.protocol:ProtocolLib:5.0.0-SNAPSHOT' } ```