From 2d9584084cf2b6a0be448586e9862b7aee93992e Mon Sep 17 00:00:00 2001 From: vldf Date: Thu, 7 Aug 2025 13:00:54 +0300 Subject: [PATCH] Add a comment for `bundledModules` --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index ef7ac67..00ac511 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -44,6 +44,7 @@ dependencies { // Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace. 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(',') }) testFramework(TestFrameworkType.Platform)