Use kebab-case for property default values in metadata

See gh-36170
This commit is contained in:
Johnny Lim 2023-07-03 21:06:08 +09:00 committed by Phillip Webb
parent 2e11349c93
commit e97c5a7118

View File

@ -4,23 +4,23 @@
"properties": [
{
"name": "spring.docker.compose.lifecycle-management",
"defaultValue": "START_AND_STOP"
"defaultValue": "start-and-stop"
},
{
"name": "spring.docker.compose.readiness.wait",
"defaultValue": "ALWAYS"
"defaultValue": "always"
},
{
"name": "spring.docker.compose.start.command",
"defaultValue": "UP"
"defaultValue": "up"
},
{
"name": "spring.docker.compose.start.log-level",
"defaultValue": "INFO"
"defaultValue": "info"
},
{
"name": "spring.docker.compose.stop.command",
"defaultValue": "STOP"
"defaultValue": "stop"
}
]
}