File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,14 +22,8 @@ dependencies {
2222 intellijPlatform {
2323 intellijIdea(providers.gradleProperty(" platformVersion" ))
2424
25- // Plugin Dependencies. Uses `platformBundledPlugins` property from the gradle.properties file for bundled IntelliJ Platform plugins.
26- bundledPlugins(providers.gradleProperty(" platformBundledPlugins" ).map { it.split(' ,' ) })
27-
28- // Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
29- plugins(providers.gradleProperty(" platformPlugins" ).map { it.split(' ,' ) })
30-
31- // Module Dependencies. Uses `platformBundledModules` property from the gradle.properties file for bundled IntelliJ Platform modules.
32- bundledModules(providers.gradleProperty(" platformBundledModules" ).map { it.split(' ,' ) })
25+ // Plugin Dependencies - https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
26+ bundledPlugins(" com.intellij.java" , " org.jetbrains.plugins.yaml" , " com.intellij.modules.json" )
3327
3428 testFramework(TestFrameworkType .Platform )
3529 testFramework(TestFrameworkType .JUnit5 )
Original file line number Diff line number Diff line change @@ -16,15 +16,6 @@ platformVersion = 2025.3
1616# current template version
1717# platformVersion = 2025.2.6.1
1818
19- # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
20- # Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
21- platformPlugins =
22- # Example: platformBundledPlugins = com.intellij.java
23- platformBundledPlugins = com.intellij.java, org.jetbrains.plugins.yaml, com.intellij.modules.json
24- # com.intellij.swagger
25- # Example: platformBundledModules = intellij.spellchecker
26- platformBundledModules =
27-
2819# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
2920kotlin.stdlib.default.dependency = false
3021
You can’t perform that action at this time.
0 commit comments