-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
69 lines (54 loc) · 2.96 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
69 lines (54 loc) · 2.96 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
rootProject.name = "universalis"
include("universalis-ws")
include("universalis-rest")
include("universalis-core")
include("universalis-example")
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
maven {
name = "EldoNexus"
url = uri("https://eldonexus.de/repository/maven-public/")
}
}
}
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
plugin("spotless", "com.diffplug.spotless").version("8.4.0")
version("jackson", "3.2.0")
library("jackson-core", "tools.jackson.core", "jackson-core").versionRef("jackson")
library("jackson-databind", "tools.jackson.core", "jackson-databind").versionRef("jackson")
library("jackson-annotations", "com.fasterxml.jackson.core", "jackson-annotations").version("2.22")
library("jackson-yaml", "tools.jackson.dataformat", "jackson-dataformat-yaml").versionRef("jackson")
bundle("jackson-full", listOf("jackson-core", "jackson-databind", "jackson-annotations", "jackson-yaml"))
bundle("jackson-lite", listOf("jackson-core", "jackson-databind", "jackson-annotations"))
library("jetbrains-annotations", "org.jetbrains:annotations:26.1.0")
version("slf4j", "2.0.18")
library("slf4j-api", "org.slf4j", "slf4j-api").versionRef("slf4j")
version("log4j", "2.26.0")
// "org.apache.logging.log4j", "log4j-core", "2.26.0"
library("apache-log4j-core", "org.apache.logging.log4j", "log4j-core").versionRef("log4j")
library("apache-log4j-slf4j", "org.apache.logging.log4j", "log4j-slf4j2-impl").versionRef("log4j")
bundle("log4j", listOf("apache-log4j-core", "apache-log4j-slf4j"))
library("bucket4j", "com.bucket4j:bucket4j-core:8.10.1")
library("apache-httpclient", "org.apache.httpcomponents.client5:httpclient5:5.6.2")
library("websocketclient", "com.neovisionaries:nv-websocket-client:2.14")
library("mongodb-bson", "org.mongodb:bson:5.8.0")
library("caffeine", "com.github.ben-manes.caffeine:caffeine:3.2.4")
}
create("testlibs") {
version("junit", "5.14.4")
library("junit-jupiter", "org.junit.jupiter", "junit-jupiter").versionRef("junit")
library("junit-params", "org.junit.jupiter", "junit-jupiter-params").versionRef("junit")
library("junit-platform-launcher", "org.junit.platform", "junit-platform-launcher").version("1.14.4")
library("junit-pioneer", "org.junit-pioneer", "junit-pioneer").version("2.3.0")
bundle("junit", listOf("junit-jupiter", "junit-params"))
version("mockito", "5.+")
library("mockito-core", "org.mockito", "mockito-core").versionRef("mockito")
version("slf4j", "2.0.17")
library("slf4j-noop", "org.slf4j", "slf4j-simple").versionRef("slf4j")
}
}
}