-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
105 lines (92 loc) · 4.11 KB
/
settings.gradle.kts
File metadata and controls
105 lines (92 loc) · 4.11 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
rootProject.name = "manis-bom"
dependencyResolutionManagement {
repositories {
mavenCentral()
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")
}
}
}
maven("https://reposilite.atlasengine.ca/public")
}
versionCatalogs {
create("libs") {
version("mycelium.bom", "1.6.4")
version("aonyx", "0.7.1")
version("hibernate.bom", "7.3.2.Final")
version("cloudnet.bom", "4.0.0-RC16")
version("common.io", "2.22.0")
version("zt.zip", "1.17")
version("caffeine", "3.2.3")
version("worldSeed", "11.5.6")
version("commons.geometry", "1.0")
version("postgresql", "42.7.11")
version("google.autovalue", "1.1.1")
version("rabbitmq", "5.30.0")
version("h2", "2.4.240")
version("jaxb", "4.0.7")
version("cyclonedx", "3.2.4")
library("mycelium.bom", "net.onelitefeather", "mycelium-bom").versionRef("mycelium.bom")
library("aonyx.bom", "net.onelitefeather", "aonyx-bom").versionRef("aonyx")
library("hibernate.bom", "org.hibernate.orm", "hibernate-platform").versionRef("hibernate.bom")
library("cloudnet.bom", "eu.cloudnetservice.cloudnet", "bom").versionRef("cloudnet.bom")
library("postgresql", "org.postgresql", "postgresql").versionRef("postgresql")
library("h2", "com.h2database", "h2").versionRef("h2")
library("jaxb.runtime", "org.glassfish.jaxb", "jaxb-runtime").versionRef("jaxb")
library("jaxb.impl", "com.sun.xml.bind", "jaxb-impl").versionRef("jaxb")
library("google.service", "com.google.auto.service", "auto-service").versionRef("google.autovalue")
library("rabbitmq", "com.rabbitmq", "amqp-client").versionRef("rabbitmq")
library("commons.geometry.core", "org.apache.commons", "commons-geometry-core").versionRef("commons.geometry")
library(
"commons.geometry.euclidean",
"org.apache.commons",
"commons-geometry-euclidean"
).versionRef("commons.geometry")
library(
"commons.geometry.spherical",
"org.apache.commons",
"commons-geometry-spherical"
).versionRef("commons.geometry")
library(
"commons.geometry.parent",
"org.apache.commons",
"commons-geometry-parent"
).versionRef("commons.geometry")
library("common.io", "commons-io", "commons-io").versionRef("common.io")
library("zt.zip", "org.zeroturnaround", "zt-zip").versionRef("zt.zip")
library("caffeine", "com.github.ben-manes.caffeine", "caffeine").versionRef("caffeine")
library("world.seed.engine", "net.worldseed.multipart", "WorldSeedEntityEngine").versionRef("worldSeed")
bundle(
"geometry.full", listOf(
"commons.geometry.core",
"commons.geometry.euclidean",
"commons.geometry.spherical",
"commons.geometry.parent"
)
)
bundle(
"geometry.game", listOf(
"commons.geometry.core",
"commons.geometry.euclidean",
)
)
bundle(
"jaxb", listOf(
"jaxb.runtime",
"jaxb.impl"
)
)
plugin("cyclonedx", "org.cyclonedx.bom").versionRef("cyclonedx")
}
}
}