Skip to content

Commit e97c5a7

Browse files
izeyephilwebb
authored andcommitted
Use kebab-case for property default values in metadata
See gh-36170
1 parent 2e11349 commit e97c5a7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spring-boot-project/spring-boot-docker-compose/src/main/resources/META-INF/additional-spring-configuration-metadata.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@
44
"properties": [
55
{
66
"name": "spring.docker.compose.lifecycle-management",
7-
"defaultValue": "START_AND_STOP"
7+
"defaultValue": "start-and-stop"
88
},
99
{
1010
"name": "spring.docker.compose.readiness.wait",
11-
"defaultValue": "ALWAYS"
11+
"defaultValue": "always"
1212
},
1313
{
1414
"name": "spring.docker.compose.start.command",
15-
"defaultValue": "UP"
15+
"defaultValue": "up"
1616
},
1717
{
1818
"name": "spring.docker.compose.start.log-level",
19-
"defaultValue": "INFO"
19+
"defaultValue": "info"
2020
},
2121
{
2222
"name": "spring.docker.compose.stop.command",
23-
"defaultValue": "STOP"
23+
"defaultValue": "stop"
2424
}
2525
]
2626
}

0 commit comments

Comments
 (0)