@@ -11,6 +11,8 @@ dependencyResolutionManagement {
1111 repositories {
1212 mavenCentral()
1313 maven(" https://reposilite.atlasengine.ca/public" )
14+ maven(" https://central.sonatype.com/repository/maven-snapshots/" )
15+ maven(" https://repository.derklaro.dev/snapshots/" )
1416 maven {
1517 name = " OneLiteFeatherRepository"
1618 url = uri(" https://repo.onelitefeather.dev/onelitefeather" )
@@ -34,6 +36,7 @@ dependencyResolutionManagement {
3436 version(" agones4j" , " 2.0.2" )
3537 version(" grpc" , " 1.68.0" )
3638 version(" tomcat-annotations-api" , " 6.0.53" )
39+ version(" cloudnet" , " 4.0.0-RC15-SNAPSHOT" )
3740
3841 version(" bom" , " 1.4.4" )
3942 version(" aonyx" , " 0.5.2" )
@@ -61,10 +64,32 @@ dependencyResolutionManagement {
6164 library(" grpc.protobuf" , " io.grpc" , " grpc-protobuf" ).versionRef(" grpc" )
6265 library(" grpc.netty" , " io.grpc" , " grpc-netty" ).versionRef(" grpc" )
6366 library(" grpc.okhttp" , " io.grpc" , " grpc-okhttp" ).versionRef(" grpc" )
64- library(" tomcat-annotations-api" , " org.apache.tomcat" , " annotations-api" ).versionRef(" tomcat-annotations-api" )
67+ library(
68+ " tomcat-annotations-api" ,
69+ " org.apache.tomcat" ,
70+ " annotations-api"
71+ ).versionRef(" tomcat-annotations-api" )
72+
73+ library(" cloudnet-bom" , " eu.cloudnetservice.cloudnet" , " bom" ).versionRef(" cloudnet" )
74+ library(" cloudnet-bridge" , " eu.cloudnetservice.cloudnet" , " bridge-api" ).withoutVersion()
75+ library(" cloudnet-bridge-impl" , " eu.cloudnetservice.cloudnet" , " bridge-impl" ).withoutVersion()
76+ library(" cloudnet-driver-impl" , " eu.cloudnetservice.cloudnet" , " driver-impl" ).withoutVersion()
77+ library(" cloudnet-platform-inject" , " eu.cloudnetservice.cloudnet" , " platform-inject-api" ).withoutVersion()
78+ library(" cloudnet-jvm-wrapper" , " eu.cloudnetservice.cloudnet" , " wrapper-jvm-api" ).withoutVersion()
6579
6680 plugin(" shadow" , " com.gradleup.shadow" ).versionRef(" shadow" )
6781 plugin(" publishdata" , " de.chojo.publishdata" ).versionRef(" publishdata" )
82+
83+ bundle(
84+ " cloudnet" ,
85+ listOf (
86+ " cloudnet-bridge" ,
87+ " cloudnet-bridge-impl" ,
88+ " cloudnet-driver-impl" ,
89+ " cloudnet-platform-inject" ,
90+ " cloudnet-jvm-wrapper"
91+ )
92+ )
6893 }
6994 }
7095}
0 commit comments