Skip to content

CloudburstMC/Network

Repository files navigation

Network

Introduction

Network components used within Cloudburst projects.

Components

Maven

Repository:

For releases, use Maven Central. Snapshots can be found in the repository below.

Gradle (Kotlin DSL)
repositories {
    maven("https://repo.opencollab.dev/maven-snapshots/")
}
Gradle
repositories {
    maven {
        url 'https://repo.opencollab.dev/maven-snapshots/'
    }
}
Maven
<repositories>
  <repository>
    <id>opencollab-snapshots</id>
    <url>https://repo.opencollab.dev/maven-snapshots/</url>
  </repository>
</repositories>