Skip to content

Commit

Permalink
data_grip.md: fix plugin ID
Browse files Browse the repository at this point in the history
  • Loading branch information
YannCebron committed Sep 23, 2024
1 parent d3a5afa commit 87c0cfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions topics/products/datagrip/data_grip.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Plugin projects targeting DataGrip can be developed using [IntelliJ IDEA](idea.m
Define a dependency using [`datagrip()`](tools_intellij_platform_gradle_plugin_dependencies_extension.md), see _Versions_ link on top of this page for all available versions.
See [](tools_intellij_platform_gradle_plugin.md#dependenciesLocalPlatform) for using a local installation.

A dependency on the bundled `DatabaseTools` plugin must be added using the [`bundledPlugin()`](tools_intellij_platform_gradle_plugin_dependencies_extension.md#plugins) helper.
A dependency on the bundled `com.intellij.database` plugin must be added using the [`bundledPlugin()`](tools_intellij_platform_gradle_plugin_dependencies_extension.md#plugins) helper.

Minimum <path>build.gradle.kts</path> setup:

Expand All @@ -39,7 +39,7 @@ repositories {
dependencies {
intellijPlatform {
datagrip("<versionNumber>")
bundledPlugin("DatabaseTools")
bundledPlugin("com.intellij.database")
}
}
```
Expand Down

0 comments on commit 87c0cfc

Please sign in to comment.