Commit 0119c3a5 authored by Stephane Nicoll's avatar Stephane Nicoll

Fix metadata for spring.profiles.[include|active]

See gh-6995
parent 604d0ced
...@@ -180,13 +180,13 @@ ...@@ -180,13 +180,13 @@
}, },
{ {
"name": "spring.profiles.active", "name": "spring.profiles.active",
"type": "java.lang.String", "type": "java.util.List<java.lang.String>",
"sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener", "sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener",
"description": "Comma-separated list of active profiles. Can be overridden by a command line switch." "description": "Comma-separated list of active profiles. Can be overridden by a command line switch."
}, },
{ {
"name": "spring.profiles.include", "name": "spring.profiles.include",
"type": "java.lang.String", "type": "java.util.List<java.lang.String>",
"sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener", "sourceType": "org.springframework.boot.context.config.ConfigFileApplicationListener",
"description": "Unconditionally activate the specified comma separated profiles." "description": "Unconditionally activate the specified comma separated profiles."
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment