-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
49 lines (46 loc) · 2.22 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
49 lines (46 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
rootProject.name = "stelaris-cli"
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://repo.onelitefeather.dev/releases")
maven("https://oss.sonatype.org/content/repositories/snapshots/")
maven {
name = "OneLiteFeatherRepository"
url = uri("https://repo.onelitefeather.dev/onelitefeather")
if (System.getenv("CI") != null) {
credentials {
username = System.getenv("ONELITEFEATHER_MAVEN_USERNAME")
password = System.getenv("ONELITEFEATHER_MAVEN_PASSWORD")
}
} else {
credentials(PasswordCredentials::class)
authentication {
create<BasicAuthentication>("basic")
}
}
}
}
versionCatalogs {
create("libs") {
version("kotlin", "2.4.10")
version("bom", "1.8.3")
version("junit", "6.1.3")
version("dartpoet", "2.3.1")
version("guava", "33.7.1-jre")
version("jgit", "7.7.1.202607240634-r")
version("shadow", "9.6.1")
library("mycelium.bom", "net.onelitefeather", "mycelium-bom").versionRef("bom")
library("minestom", "net.minestom", "minestom").withoutVersion()
library("cyano", "net.onelitefeather", "cyano").withoutVersion()
library("dartpoet", "net.theevilreaper", "dartpoet").versionRef("dartpoet")
library("guava", "com.google.guava", "guava").versionRef("guava")
library("jgit", "org.eclipse.jgit", "org.eclipse.jgit").versionRef("jgit")
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("6.1.3")
plugin("kotlin", "org.jetbrains.kotlin.jvm").versionRef("kotlin")
plugin("shadow", "com.gradleup.shadow").versionRef("shadow")
}
}
}