-
Notifications
You must be signed in to change notification settings - Fork 446
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Download java sources lazily #870
Conversation
README.md
Outdated
@@ -103,6 +103,9 @@ The following settings are supported: | |||
*New in 0.42.0:* | |||
* `java.foldingRange.enabled`: Enable/disable smart folding range support. If disabled, it will use the default indentation-based folding range provided by VS Code. | |||
|
|||
*New in 0.43.0:* | |||
* `java.maven.downloadSources`: Enable/disable downloading Maven source artifacts. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enable/disable eager download of Maven source artifacts
package.json
Outdated
"java.maven.downloadSources": { | ||
"type": "boolean", | ||
"default": false, | ||
"description": "Enable/disable downloading Maven source artifacts.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enable/disable eager download of Maven source artifacts
@fbricon I have updated the PR. |
README.md
Outdated
@@ -103,6 +103,9 @@ The following settings are supported: | |||
*New in 0.42.0:* | |||
* `java.foldingRange.enabled`: Enable/disable smart folding range support. If disabled, it will use the default indentation-based folding range provided by VS Code. | |||
|
|||
*New in 0.43.0:* | |||
* `java.maven.downloadSources`: Enable/disable downloading Maven source artifacts on startup. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enable/disable eager download of Maven source artifacts
sorry, I changed my mind earlier and you missed my comment update
Signed-off-by: Snjezana Peco <snjezana.peco@redhat.com>
Requires eclipse-jdtls/eclipse.jdt.ls#986
Signed-off-by: Snjezana Peco snjezana.peco@redhat.com