Skip to content

Commit d418c41

Browse files
committed
sync: 03daa80
1 parent 83f98cd commit d418c41

2 files changed

Lines changed: 2 additions & 17 deletions

File tree

build.gradle.kts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff 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)

gradle.properties

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff 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
2920
kotlin.stdlib.default.dependency = false
3021

0 commit comments

Comments
 (0)