Skip to content

0.0.2

Latest
Compare
Choose a tag to compare
@2008Choco 2008Choco released this 18 Feb 15:04
· 6 commits to main since this release
a28affa

Changes

  • Lazily fetch Class and Registry constants from BukkitProtocolConfiguration, better supporting legacy versions

Dependency Information

Maven

<repositories>
    <repository>
        <id>choco-repo</id>
        <url>http://repo.choco.wtf/releases</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>wtf.choco</groupId>
        <artifactId>networking-{PLATFORM}</artifactId>
        <version>0.0.2</version>
    </dependency>
</dependencies>

Gradle (Groovy):

repositories {
    maven { url = "http://repo.choco.wtf/releases"; allowInsecureProtocol = true }
}

dependencies {
    implementation 'wtf.choco:networking-{PLATFORM}:0.0.2'
}

Gradle (Kotlin DSL):

repositories {
    maven { url = "http://repo.choco.wtf/releases"; allowInsecureProtocol = true }
}

dependencies {
    implementation("wtf.choco:networking-{PLATFORM}:0.0.2")
}