mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2025-12-05 06:11:52 +00:00
Add platformBundledModules to gradle.properties
This commit is contained in:
parent
1807398948
commit
13a0fb863b
@ -44,6 +44,8 @@ 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(',') })
|
||||||
|
|
||||||
|
bundledModules(providers.gradleProperty("platformBundledModules").map { it.split(',') })
|
||||||
|
|
||||||
testFramework(TestFrameworkType.Platform)
|
testFramework(TestFrameworkType.Platform)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,6 +18,8 @@ platformVersion = 2024.3.6
|
|||||||
platformPlugins =
|
platformPlugins =
|
||||||
# Example: platformBundledPlugins = com.intellij.java
|
# Example: platformBundledPlugins = com.intellij.java
|
||||||
platformBundledPlugins =
|
platformBundledPlugins =
|
||||||
|
# Example: platformBundledModules = intellij.spellchecker
|
||||||
|
platformBundledModules =
|
||||||
|
|
||||||
# Gradle Releases -> https://github.com/gradle/gradle/releases
|
# Gradle Releases -> https://github.com/gradle/gradle/releases
|
||||||
gradleVersion = 9.0.0
|
gradleVersion = 9.0.0
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user