Browse Source

Add `platformBundledModules` to gradle.properties

pull/543/head
vldf 4 months ago committed by Jakub Chrzanowski
parent
commit
cd13a2d1a2
  1. 2
      build.gradle.kts
  2. 2
      gradle.properties

2
build.gradle.kts

@ -44,6 +44,8 @@ dependencies { @@ -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)
}
}

2
gradle.properties

@ -18,6 +18,8 @@ platformVersion = 2024.3.6 @@ -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

Loading…
Cancel
Save