-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalog.settings.gradle.kts
45 lines (32 loc) · 2.14 KB
/
catalog.settings.gradle.kts
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
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("avaje-json", "2.3")
version("junit", "5.11.3")
version("recordbuilder", "43")
version("mapstruct", "1.6.2")
library("avaje-json", "io.avaje", "avaje-jsonb").versionRef("avaje-json")
library("avaje-json-processor", "io.avaje", "avaje-jsonb-generator").versionRef("avaje-json")
library("avaje-prisms", "io.avaje:avaje-prisms:1.34")
library("jakarta-inject", "jakarta.inject:jakarta.inject-api:2.0.1")
library("jetbrains-annotations", "org.jetbrains:annotations:26.0.1")
library("utilitary", "com.karuslabs:utilitary:3.0.0")
library("postgresql", "org.postgresql:postgresql:42.7.4")
library("junit-api", "org.junit.jupiter", "junit-jupiter-api").versionRef("junit")
library("junit-params", "org.junit.jupiter", "junit-jupiter-params").versionRef("junit")
library("recordbuilder-processor", "io.soabase.record-builder", "record-builder-processor").versionRef("recordbuilder")
library("recordbuilder-core", "io.soabase.record-builder", "record-builder-core").versionRef("recordbuilder")
library("embeddedpostgres", "io.zonky.test:embedded-postgres:2.0.7")
library("liquibase-core", "org.liquibase:liquibase-core:4.30.0")
library("mapstruct-processor", "org.mapstruct", "mapstruct-processor").versionRef("mapstruct")
library("mapstruct-compile", "org.mapstruct", "mapstruct").versionRef("mapstruct")
library("jspecify", "org.jspecify:jspecify:1.0.0")
library("javapoet", "com.palantir.javapoet:javapoet:0.5.0")
library("guava", "com.google.guava:guava:33.3.1-jre")
library("compile-testing", "com.google.testing.compile:compile-testing:0.21.0")
library("compile-testing-extension", "io.github.kiskae:compile-testing-extension:1.0.2")
library("yaml", "org.yaml:snakeyaml:2.3")
bundle("compile-testing", listOf("guava", "compile-testing", "compile-testing-extension"))
}
}
}