File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed
configuration-metadata/spring-boot-configuration-metadata-changelog-generator Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ architectureCheck {
44
44
45
45
def dependenciesOf (String version ) {
46
46
if (version. startsWith(" 4." )) {
47
- return [
47
+ def modules = [
48
48
" spring-boot" ,
49
49
" spring-boot-activemq" ,
50
50
" spring-boot-actuator" ,
@@ -95,9 +95,6 @@ def dependenciesOf(String version) {
95
95
" spring-boot-ldap" ,
96
96
" spring-boot-liquibase" ,
97
97
" spring-boot-mail" ,
98
- " spring-boot-micrometer-metrics" ,
99
- " spring-boot-micrometer-observation" ,
100
- " spring-boot-micrometer-tracing" ,
101
98
" spring-boot-mongodb" ,
102
99
" spring-boot-mustache" ,
103
100
" spring-boot-neo4j" ,
@@ -136,6 +133,21 @@ def dependenciesOf(String version) {
136
133
" spring-boot-webservices" ,
137
134
" spring-boot-zipkin"
138
135
]
136
+ if (version. equals(" 4.0.0-M1" )) {
137
+ modules + = [
138
+ " spring-boot-metrics" ,
139
+ " spring-boot-observation" ,
140
+ " spring-boot-tracing"
141
+ ]
142
+ }
143
+ else {
144
+ modules + = [
145
+ " spring-boot-micrometer-metrics" ,
146
+ " spring-boot-micrometer-observation" ,
147
+ " spring-boot-micrometer-tracing"
148
+ ]
149
+ }
150
+ return modules
139
151
}
140
152
return [
141
153
" spring-boot" ,
You can’t perform that action at this time.
0 commit comments