mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-29 17:57:53 +08:00
48 lines
1.7 KiB
Markdown
48 lines
1.7 KiB
Markdown
---
|
|
layout: editable
|
|
title: Setting Up Development Environment
|
|
---
|
|
|
|
|
|
In order to set up the plugin development environment, you should follow these steps:
|
|
|
|
* Check out the sources of IntelliJ IDEA Community Edition as described in
|
|
[Check Out And Build Community Edition](checkout_and_build_community.html)
|
|
|
|
* Create a new *IntelliJ IDEA SDK*
|
|
|
|

|
|
|
|
* Set *IDEA jdk* created in
|
|
[Check Out And Build Community Edition](checkout_and_build_community.html)
|
|
as a default Java SDK
|
|
|
|

|
|
|
|
* Specify your installation of *IntelliJ IDEA Community Edition* as the home path
|
|
|
|
**Note:**
|
|
You can use IDEA Ultimate as well, but debugging the core code will only work with the *Community Edition*
|
|
|
|
* In the Sourcepath tab of the SDK settings, press ```Add``` button
|
|
|
|

|
|
|
|
* Specify the directory into which you have checked out the sources of the *Community Edition*
|
|
|
|

|
|
|
|
* Go to **File \| New \| Module**
|
|
|
|
* Choose *IntelliJ Platform Plugin* module type
|
|
|
|

|
|
|
|
* Set desired plugin name
|
|
|
|
* Go to **File \| Project Structure**
|
|
|
|
* Select the newly created *IntelliJ Platform SDK* as a default SDK for the plugin module
|
|
|
|

|