Add platformBundledModules to gradle.properties

This commit is contained in:
vldf 2025-08-07 11:21:56 +03:00 committed by Jakub Chrzanowski
parent 1807398948
commit 13a0fb863b
2 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,8 @@ dependencies {
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace. // Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') }) plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
bundledModules(providers.gradleProperty("platformBundledModules").map { it.split(',') })
testFramework(TestFrameworkType.Platform) testFramework(TestFrameworkType.Platform)
} }
} }

View File

@ -18,6 +18,8 @@ platformVersion = 2024.3.6
platformPlugins = platformPlugins =
# Example: platformBundledPlugins = com.intellij.java # Example: platformBundledPlugins = com.intellij.java
platformBundledPlugins = platformBundledPlugins =
# Example: platformBundledModules = intellij.spellchecker
platformBundledModules =
# Gradle Releases -> https://github.com/gradle/gradle/releases # Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 9.0.0 gradleVersion = 9.0.0