File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ The following settings are supported:
125125
126126New in 0.56.0:
127127* ` java.import.gradle.offline.enabled ` : Enable/disable the Gradle offline mode. Defaults to ` false ` .
128+ * ` java.configuration.runtimes ` : Java Execution Environments.
128129
129130Troubleshooting
130131===============
Original file line number Diff line number Diff line change 444444 "description" : " Automatically show build status on startup." ,
445445 "default" : false ,
446446 "scope" : " window"
447+ },
448+ "java.configuration.runtimes" : {
449+ "type" : " array" ,
450+ "label" : " Java Execution Environments." ,
451+ "items" : {
452+ "type" : " object" ,
453+ "default" : {},
454+ "required" : [
455+ " path" ,
456+ " name"
457+ ],
458+ "properties" : {
459+ "name" : {
460+ "type" : " string" ,
461+ "enum" : [
462+ " J2SE-1.5" ,
463+ " JavaSE-1.6" ,
464+ " JavaSE-1.7" ,
465+ " JavaSE-1.8" ,
466+ " JavaSE-9" ,
467+ " JavaSE-10" ,
468+ " JavaSE-11" ,
469+ " JavaSE-12" ,
470+ " JavaSE-13"
471+ ],
472+ "label" : " Java Execution Environment name. Must be unique"
473+ },
474+ "path" : {
475+ "type" : " string" ,
476+ "label" : " JDK path.\n On Windows, backslashes must be escaped, i.e.\n\" path\" :\" C:\\\\ Program Files\\\\ Java\\\\ jdk1.8.0_161\" "
477+ },
478+ "sources" : {
479+ "type" : " string" ,
480+ "label" : " JDK sources."
481+ },
482+ "javadoc" : {
483+ "type" : " string" ,
484+ "label" : " JDK javadoc."
485+ },
486+ "default" : {
487+ "type" : " boolean" ,
488+ "label" : " Is default runtime? Only one runtime can be default."
489+ }
490+ },
491+ "additionalProperties" : false
492+ },
493+ "default" : [],
494+ "description" : " Java Execution Environments -> Runtimes." ,
495+ "scope" : " machine"
447496 }
448497 }
449498 },
You can’t perform that action at this time.
0 commit comments