Add a comment for bundledModules

This commit is contained in:
vldf 2025-08-07 13:00:54 +03:00 committed by Jakub Chrzanowski
parent cd13a2d1a2
commit 2d9584084c

View File

@ -44,6 +44,7 @@ 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(',') })
// Module Dependencies. Use `platformBundledModules` property from the gradle.properties file for bundled IntelliJ Platform modules.
bundledModules(providers.gradleProperty("platformBundledModules").map { it.split(',') }) bundledModules(providers.gradleProperty("platformBundledModules").map { it.split(',') })
testFramework(TestFrameworkType.Platform) testFramework(TestFrameworkType.Platform)