-
-
Notifications
You must be signed in to change notification settings - Fork 152
Depending on pre‐built PacketEvents
retrooper edited this page Nov 3, 2024
·
12 revisions
Option 1: Download the latest release on Modrinth
Option 2: Download our development builds on Jenkins
Add this repository to your pom.xml
<repository>
<id>codemc-releases</id>
<url>https://repo.codemc.io/repository/maven-releases/</url>
</repository>
<repository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</repository>
Add the packetevents dependency to your pom.xml.
Replace PLATFORM with the platform you are developing for. (For example spigot or bungeecord)
<dependency>
<groupId>com.github.retrooper</groupId>
<artifactId>packetevents-PLATFORM</artifactId>
<version>2.6.0</version>
<scope>provided</scope>
</dependency>
Add this repository to your build.gradle
maven { url = uri("https://repo.codemc.io/repository/maven-releases/") }
maven { url = uri("https://repo.codemc.io/repository/maven-snapshots/") }
Add the packetevents dependency to your build.gradle
Replace PLATFORM with the platform you are developing for. (For example spigot or bungeecord)
compileOnly 'com.github.retrooper:packetevents-PLATFORM:2.6.0'
depend:
- packetevents
Examples of how to use PacketEvents
Click this!