-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibs.versions.toml
More file actions
98 lines (76 loc) · 3.83 KB
/
libs.versions.toml
File metadata and controls
98 lines (76 loc) · 3.83 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
[versions]
# plugins
shadow = "8.3.8"
juppiter = "0.5.0-beta.2"
spotless = "7.2.1"
nexusPublish = "2.0.0"
checkstyleTools = "10.26.1"
# testing
junit = "5.13.3"
mockito = "5.19.0"
junitLauncher = "1.13.3"
testcontainers = "1.21.3"
# compile time processing
lombok = "1.18.38"
# runtime dependencies
gson = "2.13.1"
jjwt = "0.12.6"
guava = "33.4.8-jre"
annotations = "26.0.2"
unirest = "4.5.0"
caffeine = "3.2.2"
# logging
slf4j = "2.0.17"
logback = "1.5.18"
# validation
expressly = "6.0.0"
jakartaValidationApi = "3.1.1"
hibernateValidator = "9.0.1.Final"
# netty stuff
netty = "5.0.0.Alpha6-SNAPSHOT"
nettyContribHaProxy = "5.0.0.Alpha2"
[libraries]
# compile time processing
lombok = { group = "org.projectlombok", name = "lombok", version.ref = "lombok" }
# netty
nettyHandler = { group = "io.netty", name = "netty5-handler", version.ref = "netty" }
nettyCodecHttp = { group = "io.netty", name = "netty5-codec-http", version.ref = "netty" }
nettyNativeEpoll = { group = "io.netty", name = "netty5-transport-native-epoll", version.ref = "netty" }
nettyNativeKqueue = { group = "io.netty", name = "netty5-transport-native-kqueue", version.ref = "netty" }
nettyContribHaProxy = { group = "io.netty.contrib", name = "netty-codec-haproxy", version.ref = "nettyContribHaProxy" }
# runtime dependencies
guava = { group = "com.google.guava", name = "guava", version.ref = "guava" }
gson = { group = "com.google.code.gson", name = "gson", version.ref = "gson" }
unirest = { group = "com.konghq", name = "unirest-java-core", version.ref = "unirest" }
caffeine = { group = "com.github.ben-manes.caffeine", name = "caffeine", version.ref = "caffeine" }
# jjwt
jjwtApi = { group = "io.jsonwebtoken", name = "jjwt-api", version.ref = "jjwt" }
jjwtImpl = { group = "io.jsonwebtoken", name = "jjwt-impl", version.ref = "jjwt" }
jjwtGson = { group = "io.jsonwebtoken", name = "jjwt-gson", version.ref = "jjwt" }
# junit
junitApi = { group = "org.junit.jupiter", name = "junit-jupiter-api", version.ref = "junit" }
junitParams = { group = "org.junit.jupiter", name = "junit-jupiter-params", version.ref = "junit" }
junitEngine = { group = "org.junit.jupiter", name = "junit-jupiter-engine", version.ref = "junit" }
junitLauncher = { group = "org.junit.platform", name = "junit-platform-launcher", version.ref = "junitLauncher" }
# general testing
mockito = { group = "org.mockito", name = "mockito-junit-jupiter", version.ref = "mockito" }
# testcontainers
testContainers = { group = "org.testcontainers", name = "testcontainers", version.ref = "testcontainers" }
testContainersJunit = { group = "org.testcontainers", name = "junit-jupiter", version.ref = "testcontainers" }
# validation
expressly = { group = "org.glassfish.expressly", name = "expressly", version.ref = "expressly" }
hibernateValidator = { group = "org.hibernate.validator", name = "hibernate-validator", version.ref = "hibernateValidator" }
jakartaValidationApi = { group = "jakarta.validation", name = "jakarta.validation-api", version.ref = "jakartaValidationApi" }
# general
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }
# logging
slf4j = { group = "org.slf4j", name = "slf4j-api", version.ref = "slf4j" }
logbackCore = { group = "ch.qos.logback", name = "logback-core", version.ref = "logback" }
logbackClassic = { group = "ch.qos.logback", name = "logback-classic", version.ref = "logback" }
# dummy versions, just here for renovate to detect that there is something to update
checkstyleTools = { group = "com.puppycrawl.tools", name = "checkstyle", version.ref = "checkstyleTools" }
[plugins]
shadow = { id = "com.gradleup.shadow", version.ref = "shadow"}
spotless = { id = "com.diffplug.spotless", version.ref = "spotless" }
juppiter = { id = "eu.cloudnetservice.juppiter", version.ref = "juppiter" }
nexusPublish = { id = "io.github.gradle-nexus.publish-plugin", version.ref = "nexusPublish" }