Add deprecated metadata for remote debug support

See gh-10076
This commit is contained in:
Stephane Nicoll 2017-08-25 16:31:14 +02:00
parent 8a12a6ce36
commit a076adbb51
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{
"properties": [
{
"name": "spring.devtools.remote.debug.enabled",
"type": "java.lang.Boolean",
"description": "Enable remote debug support.",
"defaultValue": true,
"deprecation": {
"reason": "Remote debug is no longer supported.",
"level": "error"
}
},
{
"name": "spring.devtools.remote.debug.local-port",
"type": "java.lang.Integer",
"description": "Local remote debug server port.",
"defaultValue": 8000,
"deprecation": {
"reason": "Remote debug is no longer supported.",
"level": "error"
}
}
]
}