[site] deploy plugins

This commit is contained in:
Anna Bulenkova 2015-05-26 18:17:47 +02:00
parent 702d7f3c2b
commit 19253adf72
3 changed files with 32 additions and 0 deletions

View File

@ -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)

View File

@ -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)

View 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*.