-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
23 lines (17 loc) · 766 Bytes
/
settings.gradle.kts
File metadata and controls
23 lines (17 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
rootProject.name = "cyano"
dependencyResolutionManagement {
repositories {
mavenCentral()
}
versionCatalogs {
create("libs") {
version("minestom", "2026.04.13-1.21.11")
version("junit", "6.0.3")
library("minestom","net.minestom", "minestom").versionRef("minestom")
library("junit.api", "org.junit.jupiter", "junit-jupiter-api").versionRef("junit")
library("junit.params", "org.junit.jupiter", "junit-jupiter-params").versionRef("junit")
library("junit.engine", "org.junit.jupiter", "junit-jupiter-engine").versionRef("junit")
library("junit.platform.launcher", "org.junit.platform", "junit-platform-launcher").versionRef("junit")
}
}
}