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