pavog/PacketListenerAPI


API to modify Minecraft packets https://www.spigotmc.org/resources/2930/

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.pavog:packetlistenerapi:3.7.2-SNAPSHOT'
	}
	dependencies {
		implementation("com.github.pavog:packetlistenerapi:3.7.2-SNAPSHOT")
	}
	<dependency>
	    <groupId>com.github.pavog</groupId>
	    <artifactId>packetlistenerapi</artifactId>
	    <version>3.7.2-SNAPSHOT</version>
	</dependency>

                            
    libraryDependencies += "com.github.pavog" % "packetlistenerapi" % "3.7.2-SNAPSHOT"
        
        

                            
    :dependencies [[com.github.pavog/packetlistenerapi "3.7.2-SNAPSHOT"]]
        
        

Readme


PacketListenerAPI

!! This is a fork of the original PacketListenerAPI !!

I created this fork to provide a working version of PacketListenerAPI even if the repository server of inventivetalent is offline.

Build Status

Use PacketListenerAPI from jitpack instead of inventivetalent's repo

Add this to the repositories in your pom.xml:

<repository>
  <id>jitpack.io</id>
  <url>https://jitpack.io</url>
</repository>

Add this to the dependencies in your pom.xml:

<dependency>
  <groupId>com.github.pavog</groupId>
  <artifactId>PacketListenerAPI</artifactId>
  <version>3.7.2-SNAPSHOT</version>
</dependency>

API to modify Minecraft packets

SpigotMC page