getting_started: devkit vs gradle clarifications

This commit is contained in:
Yann Cébron 2019-01-25 12:57:29 +01:00
parent 975f9c1bee
commit d3b2467e20
3 changed files with 9 additions and 5 deletions

View File

@ -4,14 +4,16 @@ title: Creating Your First Plugin
This documentation section will help you get started with developing plugins for the *IntelliJ Platform*. You can use either [IntelliJ IDEA Community Edition](https://www.jetbrains.com/idea/download/) or [IntelliJ IDEA Ultimate](https://www.jetbrains.com/idea/download/) as your IDE. Both include the complete set of plugin development tools. To become more familiar with *IntelliJ IDEA*, please refer to the [IntelliJ IDEA Web Help](https://www.jetbrains.com/idea/help/).
There are two possible workflows for building IntelliJ IDEA plugins. The recommended workflow for new projects is
to [use Gradle](/tutorials/build_system.md). For existing projects, the old workflow [using Plugin DevKit](getting_started/using_dev_kit.md) is still supported.
There are two possible workflows for building plugins. The recommended workflow for new projects is
to [use Gradle](#using-gradle). For existing projects, the old workflow [using Plugin DevKit](#using-devkit) is still supported.
In this section:
## Using Gradle
* [Developing plugins using Gradle](/tutorials/build_system.md)
* [Getting Started with Gradle](/tutorials/build_system/prerequisites.md)
* [Publishing Your Plugin](/tutorials/build_system/deployment.md)
## Using DevKit
* [Developing plugins using DevKit](getting_started/using_dev_kit.md)
* [Setting Up a Development Environment](getting_started/setting_up_environment.md)
* [Creating a Plugin Project](getting_started/creating_plugin_project.md)

View File

@ -2,6 +2,8 @@
title: Creating a Plugin Project
---
>> **NOTE** For new projects, it is recommend to use [Gradle](/tutorials/build_system.md).
This section explains how you can create a new plugin project from scratch using the New Project wizard. Optionally, you can import an existing project or import a project from external models. You can also add a new plugin module to an existing *IntelliJ Platform* project.
For more information, refer to the [IntelliJ IDEA Web Help](https://www.jetbrains.com/idea/help/new-project-wizard.html).

View File

@ -2,8 +2,8 @@
title: Using DevKit
---
Plugin DevKit is an IntelliJ plugin that provides support for developing IntelliJ plugins using IntelliJ IDEA's
own build system. It provides its own SDK type and a set of actions for building plugins within the IDE.
_Plugin DevKit_ is a bundled IntelliJ IDEA plugin for developing plugins for the IntelliJ Platform using IntelliJ IDEA's
own build system. It provides its custom SDK type and a set of actions for building plugins within the IDE.
In this section: