Skip to content

Commit b1f4e81

Browse files
snjezafbricon
authored andcommitted
Support Kotlin,Groovy in Gradle projects
1 parent 68c3baa commit b1f4e81

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,8 @@ The following settings are supported:
265265
New in 1.53.0
266266
* `java.templates.newFile.enabled` : Enable/disable automatic generation of class body and package declaration when creating a new Java file. Set to `false` to create empty Java files. Defaults to `true`.
267267
* `java.updateImportsOnPaste.enabled` : Enable/disable auto organize imports when pasting code. Defaults to `true`.
268+
* `java.jdt.ls.kotlinSupport.enabled`: [Experimental] Specify whether to enable `org.jetbrains.kotlin.jvm` plugin in Gradle projects. Defaults to `true`.
269+
* `java.jdt.ls.groovySupport.enabled`: [Experimental] Specify whether to enable `groovy` plugin in Gradle projects. Defaults to `true`.
268270

269271
Semantic Highlighting
270272
===============

package.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,20 @@
406406
"scope": "window",
407407
"order": 80
408408
},
409+
"java.jdt.ls.kotlinSupport.enabled": {
410+
"type": "boolean",
411+
"default": true,
412+
"markdownDescription": "[Experimental] Specify whether to enable `org.jetbrains.kotlin.jvm` plugin in Gradle projects. Defaults to `true`.",
413+
"scope": "window",
414+
"order": 80
415+
},
416+
"java.jdt.ls.groovySupport.enabled": {
417+
"type": "boolean",
418+
"default": true,
419+
"markdownDescription": "[Experimental] Specify whether to enable `groovy` plugin in Gradle projects. Defaults to `true`.",
420+
"scope": "window",
421+
"order": 80
422+
},
409423
"java.jdt.ls.androidSupport.enabled": {
410424
"type": "string",
411425
"enum": [

0 commit comments

Comments
 (0)