-
Notifications
You must be signed in to change notification settings - Fork 1
/
dependencies.gradle
63 lines (59 loc) · 1.67 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
def VERSIONS = [
'org.apache.logging.log4j:log4j-core:2.+',
'com.squareup.okhttp3:okhttp:latest.release',
// logging
'ch.qos.logback:logback-classic:1.2.+',
'org.slf4j:slf4j-api:1.7.+',
// test
'com.github.tomakehurst:wiremock-jre8-standalone:latest.release',
'ru.lanwen.wiremock:wiremock-junit5:latest.release',
'org.assertj:assertj-core:latest.release',
'org.awaitility:awaitility:latest.release',
'org.junit.jupiter:junit-jupiter:5.8.+',
'org.junit.platform:junit-platform-launcher:1.8.+',
'org.junit.vintage:junit-vintage-engine:5.8.+',
'org.mockito:mockito-core:latest.release',
'org.mockito:mockito-inline:latest.release',
'org.testcontainers:testcontainers:latest.release',
'org.testcontainers:junit-jupiter:latest.release'
]
def PLATFORM_VERSIONS = [
'io.micrometer:micrometer-bom:1.10.0-SNAPSHOT',
'org.junit:junit-bom:5.8.+'
]
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
}
}
PLATFORM_VERSIONS.each {
implementation platform(it)
}
}
}
plugins.withId('java-platform') {
dependencies {
constraints {
rootProject.subprojects.findAll {
!it.name.contains('micrometer-otel-conventions-bom')
}.each {
api(group: it.group,
name: it.name,
version: it.version.toString())
}
}
javaPlatform.allowDependencies()
PLATFORM_VERSIONS.each {
api platform(it)
}
}
}
}