-
Notifications
You must be signed in to change notification settings - Fork 45
/
dependencies.gradle
74 lines (68 loc) · 1.54 KB
/
dependencies.gradle
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
def VERSIONS = [
libs.javaxServlet,
libs.jakartaWeb,
libs.micrometerContextPropagation,
libs.aopAlliance,
libs.aspectjweaver,
libs.springContext,
libs.springCore,
// logging
libs.logback,
libs.log4j,
libs.slf4j,
// zipkin
libs.zipkinAws,
// wavefront
libs.wavefrontSdk,
libs.wavefrontReporter,
// test
libs.assertj,
libs.awaitility,
libs.mockitoCore,
libs.mockitoJunit,
libs.wiremock,
libs.testcontainers,
libs.testcontainersJunit
]
def MICROMETER_PLATFORM_VERSIONS = [
libs.micrometerBom
]
def PLATFORM_VERSIONS = [
libs.zipkinReporterBom,
libs.braveBom,
libs.otelInstrumentationBomAlpha,
libs.reactorBom,
libs.junitBom
]
subprojects {
plugins.withId('java-library') {
dependencies {
constraints {
// Direct dependencies
VERSIONS.each { version ->
// java-library plugin has three root configurations, so we apply constraints too all of
// them so they all can use the managed versions.
api version
compileOnly version
runtimeOnly version
}
}
(MICROMETER_PLATFORM_VERSIONS + PLATFORM_VERSIONS).each { bom ->
api platform(bom)
compileOnly platform(bom)
runtimeOnly platform(bom)
}
}
}
plugins.withId('java-platform') {
dependencies {
constraints {
rootProject.subprojects
.findAll { !it.name.contains('micrometer-tracing-bom') && !it.name.contains('benchmarks') }
.each { api(group: it.group, name: it.name, version: it.version.toString()) }
}
javaPlatform.allowDependencies()
MICROMETER_PLATFORM_VERSIONS.each { api platform(it) }
}
}
}