Update build information (#409)
- Switch to 4.3.0 version - Include Gradle information
Dieser Commit ist enthalten in:
Ursprung
01b68cf8e5
Commit
7573459a48
14
Readme.md
14
Readme.md
@ -53,11 +53,23 @@ 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>3.6.5</version>
|
<version>4.3.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
````
|
````
|
||||||
|
|
||||||
|
Or use the maven dependency with gradle:
|
||||||
|
|
||||||
|
```gradle
|
||||||
|
repositories {
|
||||||
|
maven { url "http://repo.dmulloy2.net/content/groups/public/" }
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compileOnly group: "com.comphenix.protocol", name: "ProtocolLib", version: "4.3.0";
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Then get a reference to ProtocolManager in onLoad() or onEnable() and you're good to go.
|
Then get a reference to ProtocolManager in onLoad() or onEnable() and you're good to go.
|
||||||
|
|
||||||
````java
|
````java
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren