diff --git a/basics/getting_started/deploying_plugin.md b/basics/getting_started/deploying_plugin.md index de73da1e1..20d63725a 100644 --- a/basics/getting_started/deploying_plugin.md +++ b/basics/getting_started/deploying_plugin.md @@ -12,11 +12,19 @@ To deploy a plugin: * Prepare your plugin for deployment. To do this, on the main menu, choose **Build \| Prepare Plugin Module \ 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. + + ![Prepare Plugin for Deployment](deploying_plugin/img/prepare_plugin_for_deployment.png) + +* 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. + + ![Jar Saved Notification](deploying_plugin/img/jar_saved_notification.png) * Copy the newly created archive file to the *.IntelliJIDEAx0\config\plugins* folder, and then restart Intellij IDEA for changes to take effect. + ![Jar File Location](deploying_plugin/img/jar_location.png) + * On the main menu, choose **File \| Settings**. The Settings dialog box opens. diff --git a/basics/getting_started/deploying_plugin/img/jar_location.png b/basics/getting_started/deploying_plugin/img/jar_location.png new file mode 100644 index 000000000..3ae856469 Binary files /dev/null and b/basics/getting_started/deploying_plugin/img/jar_location.png differ diff --git a/basics/getting_started/deploying_plugin/img/jar_saved_notification.png b/basics/getting_started/deploying_plugin/img/jar_saved_notification.png new file mode 100644 index 000000000..cb2bd1de9 Binary files /dev/null and b/basics/getting_started/deploying_plugin/img/jar_saved_notification.png differ diff --git a/basics/getting_started/deploying_plugin/img/prepare_plugin_for_deployment.png b/basics/getting_started/deploying_plugin/img/prepare_plugin_for_deployment.png new file mode 100644 index 000000000..abc3084f7 Binary files /dev/null and b/basics/getting_started/deploying_plugin/img/prepare_plugin_for_deployment.png differ