From 13a0fb863b3d802906e5aedcde588b436884f42b Mon Sep 17 00:00:00 2001 From: vldf Date: Thu, 7 Aug 2025 11:21:56 +0300 Subject: [PATCH] Add `platformBundledModules` to gradle.properties --- build.gradle.kts | 2 ++ gradle.properties | 2 ++ 2 files changed, 4 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 2e4ddb7..ef7ac67 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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) } } diff --git a/gradle.properties b/gradle.properties index 3c522c5..dd4534f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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