-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle.kts
27 lines (22 loc) · 1001 Bytes
/
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
rootProject.name = "tsa"
include("app")
include("web")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
version("quarkus", "3.17.2")
version("mapstruct", "1.6.3")
plugin("quarkus", "io.quarkus").versionRef("quarkus")
plugin("lombok", "io.freefair.lombok").version("8.11")
plugin("spotless", "com.diffplug.spotless").version("6.25.0")
library("quarkus-bom", "io.quarkus", "quarkus-bom").versionRef("quarkus")
library("bouncycastle", "org.bouncycastle", "bcpkix-jdk18on").version("1.79")
library("mapstruct-processor", "org.mapstruct", "mapstruct-processor").versionRef("mapstruct")
library("mapstruct-runtime", "org.mapstruct", "mapstruct").versionRef("mapstruct")
}
create("testLibs") {
library("assertj", "org.assertj:assertj-core:3.26.3")
library("archunit", "com.tngtech.archunit:archunit:1.3.0")
}
}
}