Skip to content

2.2.1 (1.20/1.20.1)

Latest
Compare
Choose a tag to compare
@lukalt lukalt released this 13 Jun 13:15
· 5 commits to master since this release

This version requires the latest development build of ProtocolLib: https://ci.dmulloy2.net/job/ProtocolLib/lastSuccessfulBuild/

**The only supported versions of Minecraft are 1.20 and 1.20.1. **

Javadocs: https://lukalt.github.io/PacketWrapper/javadocs/apidocs/overview-tree.html

Changes since 2.2.0-1.20:

  • Fixed api version
  • Update to ProtocolLib 5.1.0-SNAPSHOT

Use this version with maven:

First add my repository to your pom.xml so Maven can find the library.

<repositories>
    <repository>
        <id>lukasalt-repo</id>
        <url>https://repo.lukasa.lt/repository/maven-public/</url>
    </repository>
</repositories>

Then add PacketrRapper as a dependency.

<dependencies>
    <dependency>
        <groupId>com.comphenix.packetwrapper</groupId>
        <artifactId>PacketWrapper</artifactId>
        <version>1.20-2.2.1</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

Use this version with Gradle:

First add my repository so Gradle can find the dependency

repositories {
    ...
    maven { url 'https://repo.lukasa.lt/repository/maven-public/' }
}

Then add PacketWrapper as a dependency:

dependencies {
    ...
    compile 'com.comphenix.packetwrapper:PacketWrapper:1.20-2.2.1'
}