-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
69 lines (56 loc) · 2.56 KB
/
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
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 = "gradle-java-template"
include(":api")
include(":services")
include(":models")
include(":benchmarks")
include(":project-coverage")
pluginManagement {
plugins {
id("nebula.dependency-lock") version "12.7.1"
id("io.freefair.lombok") version "8.7.1"
id("io.quarkus") version "3.8.2"
}
}
// All catalogs have to end with a "Libs" suffix, a requirement of Gradle 8.
// https://docs.gradle.org/8.0.2/userguide/platforms.html#sec:multiple
dependencyResolutionManagement {
versionCatalogs {
create("quarkusLibs") {
version("openapi", "3.1")
library("openapi", "org.eclipse.microprofile.openapi", "microprofile-openapi-api")
.versionRef("openapi")
}
create("jakartaLibs") {
version("inject", "2.0.1")
library("inject", "jakarta.inject", "jakarta.inject-api")
.versionRef("inject")
}
create("jacksonLibs") {
version("jackson", "2.16.1")
library("core", "com.fasterxml.jackson.core", "jackson-core").versionRef("jackson")
library("databind", "com.fasterxml.jackson.core", "jackson-databind").versionRef("jackson")
library("annotations", "com.fasterxml.jackson.core", "jackson-annotations").versionRef("jackson")
}
create("testLibs") {
version("junit", "5.10.1")
version("junit-launcher", "1.10.0")
version("assertj", "3.24.2")
version("mockito", "5.8.0")
version("jmh", "1.37")
library("jmh-core", "org.openjdk.jmh", "jmh-core").versionRef("jmh")
library("jmh-processor", "org.openjdk.jmh", "jmh-generator-annprocess").versionRef("jmh")
library("junit-launcher", "org.junit.platform", "junit-platform-launcher").versionRef("junit-launcher")
library("junit-core", "org.junit.jupiter", "junit-jupiter").versionRef("junit")
library("assertj-core", "org.assertj", "assertj-core").versionRef("assertj")
library("mockito", "org.mockito", "mockito-core").versionRef("mockito")
}
create("loggingLibs") {
version("slf4j", "2.0.6")
version("jboss", "3.0.4.Final")
version("jboss-slf4j", "2.0.0.Final")
library("slf4j-api", "org.slf4j", "slf4j-api").versionRef("slf4j")
library("jboss-slf4j", "org.jboss.slf4j", "slf4j-jboss-logmanager").versionRef("jboss-slf4j")
library("jboss-logger", "org.jboss.logmanager", "jboss-logmanager").versionRef("jboss")
}
}
}