move to proper page: note about com.intellij.modules.vcs

This commit is contained in:
Yann Cébron 2024-10-07 16:37:50 +02:00
parent 309981d5de
commit 29693d4b02
2 changed files with 11 additions and 11 deletions

View File

@ -313,14 +313,3 @@ Please upgrade to Kotlin 1.9.0. See the [](using_kotlin.md#incremental-compilati
<include from="snippets.md" element-id="missingContent"/>
### plugin.xml: `Cannot resolve plugin com.intellij.modules.vcs`
Add an explicit [dependency](tools_intellij_platform_gradle_plugin_dependencies_extension.md) on the bundled module:
```kotlin
dependencies {
intellijPlatform {
bundledModule("intellij.platform.vcs.impl")
}
}
```

View File

@ -521,5 +521,16 @@ To correctly run your tests or a specific IDE:
</tab>
</tabs>
### plugin.xml: `Cannot resolve plugin com.intellij.modules.vcs`
Add an explicit [dependency](tools_intellij_platform_gradle_plugin_dependencies_extension.md) on the bundled module:
```kotlin
dependencies {
intellijPlatform {
bundledModule("intellij.platform.vcs.impl")
}
}
```
<include from="snippets.md" element-id="missingContent"/>