Skip to content

Commit fec0a4f

Browse files
snjezafbricon
authored andcommitted
Add buildship offline mode preference
Signed-off-by: Snjezana Peco <snjezana.peco@redhat.com>
1 parent acd81d4 commit fec0a4f

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,12 @@ The following settings are supported:
120120
* `java.codeGeneration.toString.limitElements`: Limit number of items in arrays/collections/maps to list, if 0 then list all. Defaults to `0`.
121121
* `java.selectionRange.enabled`: Enable/disable Smart Selection support for Java. Disabling this option will not affect the VS Code built-in word-based and bracket-based smart selection.
122122
* `java.showBuildStatusOnStart.enabled`: Automatically show build status on startup. Defaults to `false`.
123-
124-
New in 0.55.0:
125123
* `java.project.referencedLibraries`: Configure glob patterns for referencing local libraries to a Java project.
126124
* `java.completion.maxResults`: Maximum number of completion results (not including snippets).Setting 0 will disable the limit and return all results. Be aware the performance will be very negatively impacted.
127125

126+
New in 0.56.0:
127+
* `java.import.gradle.offline.enabled`: Enable/disable the Gradle offline mode. Defaults to `false`.
128+
128129
Troubleshooting
129130
===============
130131
1. Check the status of the language tools on the lower right corner (marked with A on image below).

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,12 @@
139139
"description": "Enable/disable the Gradle wrapper.",
140140
"scope": "window"
141141
},
142+
"java.import.gradle.offline.enabled": {
143+
"type": "boolean",
144+
"default": false,
145+
"description": "Enable/disable the Gradle offline mode.",
146+
"scope": "window"
147+
},
142148
"java.import.gradle.version": {
143149
"type": "string",
144150
"default": null,

0 commit comments

Comments
 (0)