Skip to content

Commit 5afbd75

Browse files
committed
chore(dependencies): rework used dependencies
1 parent 6001d7b commit 5afbd75

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

agones/build.gradle.kts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
plugins {
2-
id("java")
2+
java
33
`java-library`
44
}
55

6-
repositories {
7-
mavenCentral()
8-
}
9-
106
dependencies {
117
api(libs.agones4j)
128
api(libs.grpc.stub)

common/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ java {
1212
}
1313

1414
dependencies {
15-
implementation(platform(libs.microtus.bom))
16-
implementation(platform(libs.dungeon.bom))
15+
implementation(platform(libs.mycelium.bom))
16+
implementation(platform(libs.aonyx.bom))
1717
compileOnly(libs.minestom)
1818
compileOnly(libs.aves)
1919
compileOnly(libs.xerus)
2020

2121
testImplementation(libs.minestom)
22-
testImplementation(libs.minestom.test)
22+
testImplementation(libs.cyano)
2323
testImplementation(libs.aves)
2424
testImplementation(libs.xerus)
2525
testImplementation(libs.junit.api)

game/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ java {
1919
}
2020

2121
dependencies {
22-
implementation(platform(libs.microtus.bom))
23-
implementation(platform(libs.dungeon.bom))
22+
implementation(platform(libs.mycelium.bom))
23+
implementation(platform(libs.aonyx.bom))
2424
implementation(project(":common"))
2525
implementation(project(":agones"))
2626
implementation(libs.minestom)
2727
implementation(libs.aves)
2828
implementation(libs.xerus)
29-
implementation(libs.canis)
29+
// implementation(libs.canis)
3030

3131
testImplementation(libs.minestom)
32-
testImplementation(libs.minestom.test)
32+
testImplementation(libs.cyano)
3333
testImplementation(libs.aves)
3434
testImplementation(libs.xerus)
3535
testImplementation(libs.junit.api)

settings.gradle.kts

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,26 +30,30 @@ dependencyResolutionManagement {
3030
versionCatalogs {
3131
create("libs") {
3232
version("publishdata", "1.4.0")
33-
version("minestom", "1.5.0-SNAPSHOT")
34-
version("aves", "1.6.0-SNAPSHOT")
35-
version("xerus", "1.3.0-SNAPSHOT")
3633
version("shadow", "8.3.5")
3734
version("agones4j", "2.0.2")
3835
version("grpc", "1.68.0")
3936
version("tomcat-annotations-api", "6.0.53")
4037

41-
library("microtus.bom", "net.onelitefeather.microtus", "bom").versionRef("minestom")
42-
library("dungeon.bom", "net.theevilreaper.dungeon.bom", "base").version("1.1.1")
38+
version("bom", "1.4.2")
39+
version("aonyx", "0.5.1")
4340

44-
library("minestom", "net.onelitefeather.microtus", "Microtus").withoutVersion()
45-
library("minestom-test", "net.onelitefeather.microtus.testing", "testing").withoutVersion()
41+
library("mycelium.bom", "net.onelitefeather", "mycelium-bom").versionRef("bom")
42+
library("aonyx.bom", "net.onelitefeather", "aonyx-bom").versionRef("aonyx")
43+
library("minestom", "net.minestom", "minestom").withoutVersion()
44+
library("adventure", "net.kyori", "adventure-text-minimessage").withoutVersion()
45+
library("cyano", "net.onelitefeather", "cyano").withoutVersion()
46+
library("guira", "net.onelitefeather", "guira").withoutVersion()
4647
library("junit.api", "org.junit.jupiter", "junit-jupiter-api").withoutVersion()
4748
library("junit.engine", "org.junit.jupiter", "junit-jupiter-engine").withoutVersion()
49+
library("junit.platform.launcher", "org.junit.platform", "junit-platform-launcher").withoutVersion()
50+
library("junit.params", "org.junit.jupiter", "junit-jupiter-params").withoutVersion()
51+
library("aves", "net.theevilreaper", "aves").version("1.11.1-SNAPSHOT")
52+
library("xerus", "net.theevilreaper", "xerus").withoutVersion()
53+
4854
library("mockito.core", "org.mockito", "mockito-core").withoutVersion()
4955
library("mockito.junit", "org.mockito", "mockito-junit-jupiter").withoutVersion()
5056

51-
library("aves", "de.icevizion.lib", "aves").versionRef("aves")
52-
library("xerus", "net.theevilreaper.xerus", "xerus").versionRef("xerus")
5357
library("canis", "com.github.theEvilReaper", "Canis").version("master-SNAPSHOT")
5458

5559
library("agones4j", "net.infumia", "agones4j").versionRef("agones4j")

setup/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ application {
2121
}
2222

2323
dependencies {
24-
implementation(platform(libs.microtus.bom))
25-
implementation(platform(libs.dungeon.bom))
24+
implementation(platform(libs.mycelium.bom))
25+
implementation(platform(libs.aonyx.bom))
2626
implementation(project(":common"))
2727
implementation(libs.minestom)
2828
implementation(libs.aves)
2929
implementation(libs.xerus)
30-
implementation(libs.canis)
30+
// implementation(libs.canis)
3131

3232
testImplementation(libs.minestom)
33-
testImplementation(libs.minestom.test)
33+
testImplementation(libs.cyano)
3434
testImplementation(libs.xerus)
3535
testImplementation(libs.aves)
3636
testImplementation(libs.junit.api)

0 commit comments

Comments
 (0)