From a076adbb514c3808ddb381ce67a990750b3dee29 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 25 Aug 2017 16:31:14 +0200 Subject: [PATCH] Add deprecated metadata for remote debug support See gh-10076 --- ...itional-spring-configuration-metadata.json | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 spring-boot-devtools/src/main/resources/META-INF/additional-spring-configuration-metadata.json diff --git a/spring-boot-devtools/src/main/resources/META-INF/additional-spring-configuration-metadata.json b/spring-boot-devtools/src/main/resources/META-INF/additional-spring-configuration-metadata.json new file mode 100644 index 0000000000..d68cdbc0e1 --- /dev/null +++ b/spring-boot-devtools/src/main/resources/META-INF/additional-spring-configuration-metadata.json @@ -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" + } + } + ] +} \ No newline at end of file