tools_intellij_platform_gradle_plugin_dependencies_extension.md: cleanup

This commit is contained in:
Yann Cébron 2024-04-09 15:50:13 +02:00
parent 1ab981364d
commit f53940b4a3

View File

@ -20,7 +20,7 @@ It also includes methods for adding [(bundled) plugins](#plugins), [JetBrains Ru
- setup Maven Central and [`defaultRepositories()`](tools_intellij_platform_gradle_plugin_repositories_extension.md#default-repositories) - setup Maven Central and [`defaultRepositories()`](tools_intellij_platform_gradle_plugin_repositories_extension.md#default-repositories)
- target IntelliJ IDEA Community %ijPlatform% - target IntelliJ IDEA Community %ijPlatform%
- add dependency on a bundled Java plugin - add dependency on the bundled Java plugin
- add IntelliJ Plugin Verifier, Marketplace ZIP Signer CLI, and code instrumentation tools - add IntelliJ Plugin Verifier, Marketplace ZIP Signer CLI, and code instrumentation tools
- add Test Framework for testing plugin with JUnit4 - add Test Framework for testing plugin with JUnit4
@ -65,21 +65,21 @@ See [](#custom-target-platforms) for non-default targets.
| Function | Description | | Function | Description |
|----------------------------------|-----------------------------------------------------| |----------------------------------|-----------------------------------------------------|
| `androidStudio(version)` | [Android Studio](android_studio.md) | | `androidStudio(version)` | [Android Studio](android_studio.md) |
| `aqua(version)` | Aqua | | `aqua(version)` | [Aqua](https://www.jetbrains.com/aqua/) |
| `clion(version)` | [CLion](clion.md) | | `clion(version)` | [CLion](clion.md) |
| `datagrip(version)` | DataGrip | | `datagrip(version)` | [DataGrip](data_grip.md) |
| `dataspell(version)` | DataSpell | | `dataspell(version)` | [DataSpell](https://www.jetbrains.com/dataspell/) |
| `fleetBackend(version)` | Fleet Backend | | `fleetBackend(version)` | Fleet Backend |
| `gateway(version)` | Gateway | | `gateway(version)` | Gateway |
| `goland(version)` | [GoLand](goland.md) | | `goland(version)` | [GoLand](goland.md) |
| `intellijIdeaCommunity(version)` | [IntelliJ IDEA Community](idea.md) | | `intellijIdeaCommunity(version)` | [IntelliJ IDEA Community](idea.md) |
| `intellijIdeaUltimate(version)` | [IntelliJ IDEA Ultimate](idea_ultimate.md) | | `intellijIdeaUltimate(version)` | [IntelliJ IDEA Ultimate](idea_ultimate.md) |
| `mps(version)` | MPS | | `mps(version)` | [MPS](https://www.jetbrains.com/mps/) |
| `phpstorm(version)` | [PhpStorm](phpstorm.md) | | `phpstorm(version)` | [PhpStorm](phpstorm.md) |
| `pycharmCommunity(version)` | [PyCharm Community](pycharm.md) | | `pycharmCommunity(version)` | [PyCharm Community](pycharm.md) |
| `pycharmProfessional(version)` | [PyCharm Professional](pycharm.md) | | `pycharmProfessional(version)` | [PyCharm Professional](pycharm.md) |
| `rider(version)` | [Rider](rider.md) | | `rider(version)` | [Rider](rider.md) |
| `rubymine(version)` | RubyMine | | `rubymine(version)` | [RubyMine](rubymine.md) |
| `rustrover(version)` | [RustRover](https://www.jetbrains.com/rust/) | | `rustrover(version)` | [RustRover](https://www.jetbrains.com/rust/) |
| `webstorm(version)` | [WebStorm](webstorm.md) | | `webstorm(version)` | [WebStorm](webstorm.md) |
| `writerside(version)` | [Writerside](https://www.jetbrains.com/writerside/) | | `writerside(version)` | [Writerside](https://www.jetbrains.com/writerside/) |
@ -153,7 +153,7 @@ See also:
## Java Runtime ## Java Runtime
Using the `jetbrainsRuntime()` dependency helper, it is possible to load a custom version of JetBrains Runtime. Using the `jetbrainsRuntime()` dependency helper, it is possible to load a custom version of JetBrains Runtime.
However, it is recommended to rely on a runtime bundled within the IntelliJ Platform dependency, if present. However, it is recommended to rely on the runtime bundled within the IntelliJ Platform dependency, if present.
| Function | Description | | Function | Description |
|-----------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------| |-----------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|