-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibs.versions.toml
More file actions
35 lines (34 loc) · 1.79 KB
/
Copy pathlibs.versions.toml
File metadata and controls
35 lines (34 loc) · 1.79 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
# Kept in one place so every module builds against the same versions.
# `terrace-config-annotations` must not take a dependency from here at all, by design: a service
# annotating its configuration types should not have to pull in Jackson or a schema validator just
# to compile against the annotations.
[versions]
junit = "5.11.4"
assertj = "3.27.3"
jackson = "2.18.9"
jackson3 = "3.0.0"
lombok = "1.18.46"
lombok-plugin = "9.1.0"
spotless-plugin = "8.10.2"
palantir-java-format = "2.98.0"
json-schema-validator = "1.5.5"
spring-boot = "3.5.16"
compile-testing = "0.21.0"
tomlj = "1.1.1"
jspecify = "1.0.1"
jetbrains-annotations = "26.1.0"
checkstyle = "10.26.1"
vanniktech-publish-plugin = "0.37.0"
[libraries]
junit-bom = { module = "org.junit:junit-bom", version.ref = "junit" }
assertj-core = { module = "org.assertj:assertj-core", version.ref = "assertj" }
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson" }
jackson-databind-v3 = { module = "tools.jackson.core:jackson-databind", version.ref = "jackson3" }
lombok = { module = "org.projectlombok:lombok", version.ref = "lombok" }
json-schema-validator = { module = "com.networknt:json-schema-validator", version.ref = "json-schema-validator" }
compile-testing = { module = "com.google.testing.compile:compile-testing", version.ref = "compile-testing" }
spring-boot-starter = { module = "org.springframework.boot:spring-boot-starter", version.ref = "spring-boot" }
spring-boot-starter-test = { module = "org.springframework.boot:spring-boot-starter-test", version.ref = "spring-boot" }
tomlj = { module = "org.tomlj:tomlj", version.ref = "tomlj" }
jspecify = { module = "org.jspecify:jspecify", version.ref = "jspecify" }
jetbrains-annotations = { module = "org.jetbrains:annotations", version.ref = "jetbrains-annotations" }