cloudnet
A modern application that can dynamically and easily deliver Minecraft oriented software
1.7K

CloudNet is using the eu.cloudnetservice.cloudnet group id and is available through maven central. The most important
submodules are:
| artifact id | usage |
|---|---|
| driver | When developing plugins or modules, available on all platforms. |
| node | When developing a module which needs more specific access to node functions than the driver can offer. |
| wrapper-jvm | When developing plugins which need some more specific access to the service api than the driver can offer. |
| bridge | When trying to catch player events and/or interacting with players regardless where they are on the network. |
| bom | When you want to import all dependencies with the same version based on the imported bill of materials. |
To add the CloudNet dependency using gradle (replace %version% with the latest version shown in the badge above):
repositories {
// ensure maven central is added
mavenCentral()
}
dependencies {
// optional - you can also specify versions directly
implementation platform('eu.cloudnetservice.cloudnet:bom:%version%')
compileOnly 'eu.cloudnetservice.cloudnet:driver'
// without bom
compileOnly 'eu.cloudnetservice.cloudnet:driver:%version%'
}
To add the CloudNet dependency using maven (replace %version% with the latest version shown in the badge above):
<!-- optional - you can also specify versions directly -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>eu.cloudnetservice.cloudnet</groupId>
<artifactId>bom</artifactId>
<version>%version%</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>eu.cloudnetservice.cloudnet</groupId>
<artifactId>driver</artifactId>
<version>%version%</version> <!-- only needed when bom is not used -->
<scope>provided</scope>
</dependency>
</dependencies>
Snapshots for CloudNet are build off the nightly branch and are available from the central portal snapshot repository:
https://central.sonatype.com/repository/maven-snapshots/. You can declare a dependency on CloudNet as shown above
just append the -SNAPSHOT suffix to the version.
To compile CloudNet you need JDK 25 and an internet connection. Then clone this repository and run ./gradlew inside
the cloned project.
@ApiStatus.Internal can change or get removed without a warning, even between
patch releases. We recommend to not use these methods and try to find an alternative for them.@ApiStatus.Experimental can change or get removed without a warning, even between
patch releases. While the api method is still in an experimental state, that does not mean that the implementation is
considered experimental.@Deprecated should get replaced as soon as possible (the javadoc of the method
will contain and explanation why the method is deprecated and how to replace the usage). This annotation is in most
cases paired with @ApiStatus.ScheduledForRemoval indicating the minor version when the method gets removed.Content type
Image
Digest
sha256:c9676e0a6…
Size
91.4 MB
Last updated
about 10 hours ago
docker pull cloudnetservice/cloudnet:nightly-ba21f821