Add platformBundledModules to gradle.properties

This commit is contained in:
vldf 2025-08-07 11:21:56 +03:00 committed by Jakub Chrzanowski
parent f45d97a1e6
commit cd13a2d1a2
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.
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
bundledModules(providers.gradleProperty("platformBundledModules").map { it.split(',') })
testFramework(TestFrameworkType.Platform)
}
}

View File

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