-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
23 lines (22 loc) · 1.35 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
rootProject.name = "stelaris-cli"
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("kotlin", "2.1.20")
version("minestom", "1.5.1")
version("junit", "5.12.1")
library("microtus-bom", "net.onelitefeather.microtus", "bom").versionRef("minestom")
library("jetbrains.annotation", "org.jetbrains", "annotations").withoutVersion()
library("microtus", "net.onelitefeather.microtus", "Microtus").withoutVersion()
library("dartpoet", "dev.themeinerlp", "dartpoet").version("0.0.1-SNAPSHOT")
library("guava", "com.google.guava", "guava").version("33.4.5-jre")
library("jgit", "org.eclipse.jgit", "org.eclipse.jgit").version("7.2.0.202503040940-r")
library("junit.jupiter", "org.junit.jupiter", "junit-jupiter-api").versionRef("junit")
library("junit.jupiter.params", "org.junit.jupiter", "junit-jupiter-params").versionRef("junit")
library("junit.jupiter.engine", "org.junit.jupiter", "junit-jupiter-engine").versionRef("junit")
library("junit.platform.launcher", "org.junit.platform", "junit-platform-launcher").version("1.12.1")
library("snakeyaml", "org.yaml", "snakeyaml").version("2.4")
plugin("kotlin", "org.jetbrains.kotlin.jvm").versionRef("kotlin")
}
}
}