Skip to main content
Version: CloudNet v3.3

Getting started with the API

Repositories

Releases

Use this repository to work with the release version of the API (recommended)

<repository>
<id>cloudnet-releases</id>
<url>https://repo.cloudnetservice.eu/repository/releases/</url>
</repository>

Snapshots

Use this repository to work with a snapshot version of the API (Only recommended for development!)

<repository>
<id>cloudnet-snapshots</id>
<url>https://repo.cloudnetservice.eu/repository/snapshots/</url>
</repository>

Dependencies

You have to replace ${VERSION} with the version which you want to use. (e.g. 3.3.0-RELEASE or 3.3.0-SNAPSHOT)

cloudnet-driver

This dependency includes the CloudNet-Driver API which can be used in plugins and modules.

<dependency>
<groupId>de.dytanic.cloudnet</groupId>
<artifactId>cloudnet-driver</artifactId>
<version>${VERSION}</version>
<scope>provided</scope>
</dependency>

cloudnet-wrapper-jvm

This dependency includes the CloudNet-Wrapper API which can be used in plugins.

<dependency>
<groupId>de.dytanic.cloudnet</groupId>
<artifactId>cloudnet-wrapper-jvm</artifactId>
<version>${VERSION}</version>
<scope>provided</scope>
</dependency>

cloudnet-bridge

This dependency includes the CloudNet-Bridge API which can be used in plugins and modules.

<dependency>
<groupId>de.dytanic.cloudnet</groupId>
<artifactId>cloudnet-bridge</artifactId>
<version>${VERSION}</version>
<scope>provided</scope>
</dependency>

cloudnet

This dependency includes the CloudNet-Application API which can be used in modules.

Warning

This dependency cannot be used in plugins!

<dependency>
<groupId>de.dytanic.cloudnet</groupId>
<artifactId>cloudnet</artifactId>
<version>${VERSION}</version>
<scope>provided</scope>
</dependency>

cloudnet-cloudperms

This dependency includes the CloudNet-CloudPerms API which can be used in plugins and modules.

<dependency>
<groupId>de.dytanic.cloudnet</groupId>
<artifactId>cloudnet-cloudperms</artifactId>
<version>${VERSION}</version>
<scope>provided</scope>
</dependency>

cloudnet-syncproxy

This dependency includes the CloudNet-SyncProxy API which can be used in proxy plugins and modules.

Tip

You can compile this dependency into your server plugin to be able to use it!

<dependency>
<groupId>de.dytanic.cloudnet</groupId>
<artifactId>cloudnet-syncproxy</artifactId>
<version>${VERSION}</version>
<scope>provided</scope>
</dependency>

cloudnet-signs

This dependency includes the CloudNet-Signs Module which can be used in plugins and modules.

<dependency>
<groupId>de.dytanic.cloudnet</groupId>
<artifactId>cloudnet-signs</artifactId>
<version>${VERSION}</version>
<scope>provided</scope>
</dependency>

cloudnet-npcs

This dependency includes the CloudNet-NPC Module which can be used in plugins and modules.

<dependency>
<groupId>de.dytanic.cloudnet</groupId>
<artifactId>cloudnet-npcs</artifactId>
<version>${VERSION}</version>
<scope>provided</scope>
</dependency>

Manual download

Dependency

cloudnet-driver

Version

3.4.0-RELEASE