-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
55 lines (51 loc) · 2.43 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
55 lines (51 loc) · 2.43 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
50
51
52
53
54
55
rootProject.name = "tamias"
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://reposilite.atlasengine.ca/public")
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("shadow", "9.5.1")
version("projectiles", "2.1.6")
version("aonyx", "0.8.0")
version("cyclonedx", "3.3.0")
version("slf4j", "2.0.18")
version("pica", "0.1.0")
library("game.bom", "net.onelitefeather", "aonyx-bom").versionRef("aonyx")
library("slf4j.api", "org.slf4j", "slf4j-api").versionRef("slf4j")
library("atlas.projectiles", "ca.atlasengine", "atlas-projectiles").versionRef("projectiles")
library("minestom","net.minestom", "minestom").withoutVersion()
library("adventure", "net.kyori", "adventure-text-minimessage").withoutVersion()
library("cyano", "net.onelitefeather", "cyano").withoutVersion()
library("guira", "net.onelitefeather", "guira").withoutVersion()
library("pica", "net.onelitefeather", "pica").versionRef("pica")
library("junit.api", "org.junit.jupiter", "junit-jupiter-api").withoutVersion()
library("junit.engine", "org.junit.jupiter", "junit-jupiter-engine").withoutVersion()
library("junit.platform.launcher", "org.junit.platform", "junit-platform-launcher").withoutVersion()
library("junit.params", "org.junit.jupiter", "junit-jupiter-params").withoutVersion()
library("aves", "net.theevilreaper", "aves").withoutVersion()
library("xerus", "net.theevilreaper", "xerus").withoutVersion()
plugin("shadow", "com.gradleup.shadow").versionRef("shadow")
plugin("cyclonedx", "org.cyclonedx.bom").versionRef("cyclonedx")
}
}
}
include("common")
include("game")
include("setup")