mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
move obsolete plugin_repository into /appendix and stop linking to it
This commit is contained in:
parent
8967d7a0ec
commit
00d940a370
@ -255,7 +255,7 @@
|
|||||||
* Licensing
|
* Licensing
|
||||||
|
|
||||||
## Part X - Plugin Repository \[moved]
|
## Part X - Plugin Repository \[moved]
|
||||||
* [Overview](plugin_repository/index.md)
|
* [Overview](appendix/plugin_repository_obsolete.md)
|
||||||
|
|
||||||
## Appendix I - Resources
|
## Appendix I - Resources
|
||||||
|
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
---
|
---
|
||||||
title: Plugin Repository
|
title: Plugin Repository [moved]
|
||||||
|
|
||||||
redirect_from:
|
redirect_from:
|
||||||
|
- /plugin_repository/index.html
|
||||||
- /plugin_repository/api/api_reference.html
|
- /plugin_repository/api/api_reference.html
|
||||||
- /plugin_repository/api/plugin_upload.html
|
- /plugin_repository/api/plugin_upload.html
|
||||||
- /plugin_repository/api/plugins_list.html
|
- /plugin_repository/api/plugins_list.html
|
@ -10,7 +10,7 @@ Starting with 2020.1 release, the ability to install, update and uninstall plugi
|
|||||||
For a plugin to support this, all restrictions listed below must be met. To verify a plugin locally, run _Plugin DevKit | Plugin descriptor | Plugin.xml dynamic plugin verification_
|
For a plugin to support this, all restrictions listed below must be met. To verify a plugin locally, run _Plugin DevKit | Plugin descriptor | Plugin.xml dynamic plugin verification_
|
||||||
inspection on all plugin descriptor files (required `plugin.xml` as well as any additional files).
|
inspection on all plugin descriptor files (required `plugin.xml` as well as any additional files).
|
||||||
|
|
||||||
For plugins hosted on the [JetBrains plugin repository](/plugin_repository/index.md) the built-in [Plugin Verifier](https://blog.jetbrains.com/platform/2018/07/plugins-repository-now-integrates-with-the-plugin-verification-tool/)
|
For plugins hosted on the [JetBrains plugin repository](https://plugins.jetbrains.com) the built-in [Plugin Verifier](https://blog.jetbrains.com/platform/2018/07/plugins-repository-now-integrates-with-the-plugin-verification-tool/)
|
||||||
will run these checks automatically. See [Plugin Verifier](/reference_guide/api_changes_list.md#plugin-verifier) for more information on how to run it locally.
|
will run these checks automatically. See [Plugin Verifier](/reference_guide/api_changes_list.md#plugin-verifier) for more information on how to run it locally.
|
||||||
|
|
||||||
During development, [Enabling Auto-Reload](/basics/ide_development_instance.md#enabling-auto-reload) will allow code changes to take effect immediately in the sandbox IDE instance.
|
During development, [Enabling Auto-Reload](/basics/ide_development_instance.md#enabling-auto-reload) will allow code changes to take effect immediately in the sandbox IDE instance.
|
||||||
|
@ -45,7 +45,7 @@ A lot of the functionality in the _IntelliJ Platform_ is language and product ag
|
|||||||
|
|
||||||
Documents how to use the _IntelliJ Platform_ to create a new, custom IDE, rather than plugins to an existing product, e.g. like WebStorm, or Android Studio.
|
Documents how to use the _IntelliJ Platform_ to create a new, custom IDE, rather than plugins to an existing product, e.g. like WebStorm, or Android Studio.
|
||||||
|
|
||||||
#### [Part X - Plugin Repository](/plugin_repository/index.md)
|
#### [Part X - Plugin Repository](/appendix/plugin_repository_obsolete.md)
|
||||||
|
|
||||||
This part has been moved to [JetBrains Marketplace documentation](https://plugins.jetbrains.com/docs/marketplace/about-marketplace.html).
|
This part has been moved to [JetBrains Marketplace documentation](https://plugins.jetbrains.com/docs/marketplace/about-marketplace.html).
|
||||||
|
|
||||||
|
@ -65,14 +65,14 @@ NOTE: Entries not starting with code quotes (`name`) can be added to document no
|
|||||||
IntelliJ API may be occasionally changed between releases, leading to incompatibilities of existing plugins with newer IDE builds.
|
IntelliJ API may be occasionally changed between releases, leading to incompatibilities of existing plugins with newer IDE builds.
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
> **NOTE** Starting with 2020.1 release, IntelliJ Platform–based IDEs will use compatibility check information provided by the [JetBrains plugin repository](/plugin_repository/index.md) to highlight possible compatibility issues to users directly in the IDE's "Plugins" manager.
|
> **NOTE** Starting with 2020.1 release, IntelliJ Platform–based IDEs will use compatibility check information provided by the [JetBrains plugin repository](https://plugins.jetbrains.com) to highlight possible compatibility issues to users directly in the IDE's "Plugins" manager.
|
||||||
Therefore, it is important to keep your plugins up to date with regard to the existing and upcoming API changes.
|
Therefore, it is important to keep your plugins up to date with regard to the existing and upcoming API changes.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
## Verifying Compatibility
|
## Verifying Compatibility
|
||||||
|
|
||||||
### Plugin Verifier
|
### Plugin Verifier
|
||||||
Compatibility with newer IDEs can easily be verified for plugins hosted on the [JetBrains plugin repository](/plugin_repository/index.md) using the built-in [Plugin Verifier](https://blog.jetbrains.com/platform/2018/07/plugins-repository-now-integrates-with-the-plugin-verification-tool/).
|
Compatibility with newer IDEs can easily be verified for plugins hosted on the [JetBrains plugin repository](https://plugins.jetbrains.com) using the built-in [Plugin Verifier](https://blog.jetbrains.com/platform/2018/07/plugins-repository-now-integrates-with-the-plugin-verification-tool/).
|
||||||
|
|
||||||
For local verification or non-public plugins, [intellij-plugin-verifier](https://github.com/JetBrains/intellij-plugin-verifier) can be used standalone as well.
|
For local verification or non-public plugins, [intellij-plugin-verifier](https://github.com/JetBrains/intellij-plugin-verifier) can be used standalone as well.
|
||||||
Integration in [Gradle build](/tutorials/build_system.md) is currently possible via some additional scripts, please see [this issue](https://github.com/JetBrains/gradle-intellij-plugin/issues/385) for details.
|
Integration in [Gradle build](/tutorials/build_system.md) is currently possible via some additional scripts, please see [this issue](https://github.com/JetBrains/gradle-intellij-plugin/issues/385) for details.
|
||||||
|
@ -8,7 +8,7 @@ The plugin takes care of the dependencies of your plugin project - both the base
|
|||||||
|
|
||||||
> **NOTE** If a new plugin will be Scala-based, a dedicated SBT plugin [sbt-idea-plugin](https://github.com/JetBrains/sbt-idea-plugin) is available.
|
> **NOTE** If a new plugin will be Scala-based, a dedicated SBT plugin [sbt-idea-plugin](https://github.com/JetBrains/sbt-idea-plugin) is available.
|
||||||
|
|
||||||
The gradle-intellij-plugin provides tasks to run the IDE with your plugin and to publish your plugin to the [JetBrains plugins repository](/plugin_repository/index.md).
|
The gradle-intellij-plugin provides tasks to run the IDE with your plugin and to publish your plugin to the [JetBrains plugins repository](https://plugins.jetbrains.com).
|
||||||
To make sure that your plugin is not affected by [API changes](/reference_guide/api_changes_list.md) which may happen between major releases of the platform, you can easily build your plugin against many versions of the base IDE.
|
To make sure that your plugin is not affected by [API changes](/reference_guide/api_changes_list.md) which may happen between major releases of the platform, you can easily build your plugin against many versions of the base IDE.
|
||||||
|
|
||||||
> **WARNING** When adding additional repositories to your Gradle build script, make sure to always use HTTPS protocol.
|
> **WARNING** When adding additional repositories to your Gradle build script, make sure to always use HTTPS protocol.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user