mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 02:07:50 +08:00
[site] deploy plugins
This commit is contained in:
parent
702d7f3c2b
commit
19253adf72
@ -11,6 +11,7 @@
|
||||
* [Creating a Plugin Project](basics/getting_started/creating_plugin_project.html)
|
||||
* [Build Number Ranges](basics/getting_started/build_number_ranges.html)
|
||||
* [Running and Debugging a Plugin](basics/getting_started/running_and_debugging_a_plugin.html)
|
||||
* [Deploying a Plugin](basics/getting_started/deploying_plugin.html)
|
||||
* [Plugin Compatibility with IntelliJ Platform Products](basics/getting_started/plugin_compatibility.html)
|
||||
* [Plugin Structure](basics/plugin_structure.html)
|
||||
* [Plugin Content](basics/plugin_structure/plugin_content.html)
|
||||
|
@ -21,6 +21,8 @@ To get more familiar with *IntelliJ IDEA* IDE refer to
|
||||
|
||||
* [Running and Debugging a Plugin](basics/getting_started/running_and_debugging_a_plugin.html)
|
||||
|
||||
* [Deploying a Plugin](basics/getting_started/deploying_plugin.html)
|
||||
|
||||
* [Plugin Compatibility with IntelliJ Platform Products](basics/getting_started/plugin_compatibility.html)
|
||||
|
||||
* [Plugin Structure](basics/plugin_structure.html)
|
||||
|
29
basics/getting_started/deploying_plugin.md
Normal file
29
basics/getting_started/deploying_plugin.md
Normal file
@ -0,0 +1,29 @@
|
||||
---
|
||||
title: Deploying a Plugin
|
||||
layout: editable
|
||||
---
|
||||
|
||||
To use your custom plugin, it must be built, installed, and then enabled using Plugin Manager.
|
||||
This section outlines steps to deploy your plugins.
|
||||
|
||||
To deploy a plugin:
|
||||
|
||||
* Make your project by invoking **Build \| Make Project**.
|
||||
|
||||
* Prepare your plugin for deployment.
|
||||
To do this, on the main menu, choose **Build \| Prepare Plugin Module \<module name\> for Deployment**.
|
||||
If the plugin module does not depend on libraries, the .jar archive will be created.
|
||||
Otherwise, a .zip archive will be created. It will include all the plugin libraries specified in the project settings.
|
||||
|
||||
* Copy the newly created archive file to the *.IntelliJIDEAx0\config\plugins* folder, and then restart Intellij IDEA for changes to take effect.
|
||||
|
||||
* On the main menu, choose **File \| Settings**.
|
||||
The Settings dialog box opens.
|
||||
|
||||
* In the Settings dialog box, under **IDE Settings**, click **Plugins**.
|
||||
|
||||
* In the Plugins area, open the **Installed** tab, and then select the check box next to your plugin name.
|
||||
|
||||
* When finished, click OK to close the Settings dialog box.
|
||||
|
||||
* For your changes to take effect, restart *Intellij IDEA*.
|
Loading…
x
Reference in New Issue
Block a user