-
Notifications
You must be signed in to change notification settings - Fork 12
/
dependencies.gradle
56 lines (51 loc) · 1.2 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
def VERSIONS = [
libs.roasterApi,
libs.roasterJdt,
libs.handlebars,
libs.picocli,
// logging
libs.logback,
libs.slf4j,
// test
libs.assertj,
libs.mockitoCore,
libs.mockitoInline
]
def MICROMETER_PLATFORM_VERSIONS = [
libs.micrometerBom, libs.micrometerTracingBom
]
def PLATFORM_VERSIONS = [
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-docs-generator-bom') }
.each { api(group: it.group, name: it.name, version: it.version.toString()) }
}
javaPlatform.allowDependencies()
MICROMETER_PLATFORM_VERSIONS.each { api platform(it) }
}
}
}